| 607 | } |
| 608 | |
| 609 | std::string concat_dim4(dim4 d) { |
| 610 | std::stringstream ss; |
| 611 | ss << d; |
| 612 | std::string s = ss.str(); |
| 613 | replace_all(s, " ", "x"); |
| 614 | return s; |
| 615 | } |
| 616 | |
| 617 | string out_info(const ::testing::TestParamInfo<Gemm::ParamType> info) { |
| 618 | test_params params = info.param; |
no test coverage detected