(device, batch_size, use_input, otype, itype, inv_map)
| 231 | |
| 232 | def test_vs_cv(): |
| 233 | def impl(device, batch_size, use_input, otype, itype, inv_map): |
| 234 | cv_pipeline = CVPipeline(batch_size, otype, itype, use_input, inv_map=inv_map) |
| 235 | cpu_pipeline = WarpPipeline(device, batch_size, otype, itype, use_input, inv_map=inv_map) |
| 236 | compare(cv_pipeline, cpu_pipeline, 8) |
| 237 | |
| 238 | random.seed(1009) |
| 239 | for device in ["cpu", "gpu"]: |
no test coverage detected