| 167 | } |
| 168 | |
| 169 | TYPED_TEST(TopK, Max1D0) { |
| 170 | af_dtype t = (af_dtype)dtype_traits<TypeParam>::af_type; |
| 171 | dim_t dims[4] = {type_max(t), 1, 1, 1}; |
| 172 | topkTest<TypeParam>(1, dims, 5, 0, AF_TOPK_MAX); |
| 173 | } |
| 174 | |
| 175 | TYPED_TEST(TopK, Max2D0) { |
| 176 | af_dtype t = (af_dtype)dtype_traits<TypeParam>::af_type; |
nothing calls this directly
no test coverage detected