()
| 107 | |
| 108 | @pipeline_def |
| 109 | def pipeline(): |
| 110 | sample, deflated, shape = fn.external_source(source=source, batch=True, num_outputs=3) |
| 111 | inflated = op(deflated.gpu(), shape=shape, dtype=dtype) |
| 112 | return inflated, sample |
| 113 | |
| 114 | with chck_ctx: |
| 115 | pipe = pipeline(batch_size=batch_size, num_threads=4, device_id=0) |
no test coverage detected