()
| 1151 | |
| 1152 | |
| 1153 | def test_no_parallel_no_shm(): |
| 1154 | shapes = [(4, 1024, 1024)] |
| 1155 | pipe = per_iter_shape_pipeline(shapes, parallel=False) |
| 1156 | for _ in range(5): |
| 1157 | pipe.run() |
| 1158 | assert pipe.external_source_shm_statistics()["capacities"] == [] |
| 1159 | |
| 1160 | |
| 1161 | def test_default_shm_size(): |
nothing calls this directly
no test coverage detected