(batch_size, num_threads, shape)
| 30 | |
| 31 | |
| 32 | def check_deserialization(batch_size, num_threads, shape): |
| 33 | ref_pipe = TestPipeline(batch_size=batch_size, num_threads=num_threads, shape=shape) |
| 34 | serialized = ref_pipe.serialize() |
| 35 | test_pipe = Pipeline.deserialize(serialized) |
| 36 | test_utils.compare_pipelines(ref_pipe, test_pipe, batch_size=batch_size, N_iterations=3) |
| 37 | |
| 38 | |
| 39 | def check_deserialization_with_params(batch_size, num_threads, shape): |
nothing calls this directly
no test coverage detected