| 157 | } |
| 158 | |
| 159 | Status ClCol2ImKernel::validate(const ITensorInfo *src, |
| 160 | const ITensorInfo *dst, |
| 161 | const Size2D &convolved_dims, |
| 162 | unsigned int num_groups) |
| 163 | { |
| 164 | ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst); |
| 165 | ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, dst, convolved_dims, num_groups)); |
| 166 | ARM_COMPUTE_RETURN_ON_ERROR( |
| 167 | validate_and_configure_window(src->clone().get(), dst->clone().get(), convolved_dims, num_groups).first); |
| 168 | return Status{}; |
| 169 | } |
| 170 | |
| 171 | void ClCol2ImKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue) |
| 172 | { |
nothing calls this directly
no test coverage detected