| 9 | namespace test { |
| 10 | |
| 11 | TEST_F(CPU, LOCAL) { |
| 12 | auto args = local::get_args(); |
| 13 | for (auto&& arg : args) { |
| 14 | Checker<Local> checker(handle()); |
| 15 | checker.set_param(arg.param).exec( |
| 16 | TensorShapeArray{arg.sshape(), arg.fshape(), arg.dshape()}); |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | #if MEGDNN_WITH_BENCHMARK |
| 21 | TEST_F(CPU, BENCHMARK_LOCAL) { |