| 23 | } |
| 24 | |
| 25 | TEST_F(ARM_COMMON, RESIZE_CV) { |
| 26 | std::vector<TestArg> args = get_cv_args(); |
| 27 | Checker<Resize> checker(handle()); |
| 28 | |
| 29 | for (auto&& arg : args) { |
| 30 | checker.set_param(arg.param) |
| 31 | .set_epsilon(1 + 1e-3) |
| 32 | .set_dtype(0, dtype::Uint8()) |
| 33 | .set_dtype(1, dtype::Uint8()) |
| 34 | .execs({arg.src, arg.dst}); |
| 35 | } |
| 36 | |
| 37 | for (auto&& arg : args) { |
| 38 | checker.set_param(arg.param) |
| 39 | .set_dtype(0, dtype::Float32()) |
| 40 | .set_dtype(1, dtype::Float32()) |
| 41 | .execs({arg.src, arg.dst}); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | TEST_F(ARM_COMMON, RESIZE_CV_RECORD) { |
| 46 | std::vector<TestArg> args = get_cv_args(); |
nothing calls this directly
no test coverage detected