| 81 | /** Zero padding test */ |
| 82 | template <typename FunctionType> |
| 83 | bool validate_zero_padding(unsigned int dim0_value, unsigned int dim1_value) |
| 84 | { |
| 85 | const TensorShape in_shape(dim0_value, dim1_value); |
| 86 | TensorInfo in(in_shape, 1, DataType::U32); |
| 87 | TensorInfo dst; |
| 88 | |
| 89 | ARM_COMPUTE_EXPECT(in.is_resizable(), framework::LogLevel::ERRORS); |
| 90 | |
| 91 | // Validate zero-padding |
| 92 | FunctionType func; |
| 93 | |
| 94 | func.configure(&in, &dst); |
| 95 | |
| 96 | return in.padding().empty(); |
| 97 | } |
| 98 | |
| 99 | /* Zero padding test for GEMM kernels */ |
| 100 | bool validate_gemm_zero_padding(const TensorShape shape0, const TensorShape shape1) |
nothing calls this directly
no test coverage detected