| 514 | return s; |
| 515 | } |
| 516 | std::string tile_info(const ::testing::TestParamInfo<JIT::ParamType> info) { |
| 517 | std::stringstream ss; |
| 518 | ss << "in_" << concat_dim4(info.param.in_dim) << "_tile_" |
| 519 | << concat_dim4(info.param.tile); |
| 520 | return ss.str(); |
| 521 | } |
| 522 | |
| 523 | // clang-format off |
| 524 | INSTANTIATE_TEST_SUITE_P( |
nothing calls this directly
no test coverage detected