| 328 | } |
| 329 | |
| 330 | Status ClPool2dKernel::validate(const ITensorInfo *src, |
| 331 | const ITensorInfo *dst, |
| 332 | const PoolingLayerInfo &pool_info, |
| 333 | const ITensorInfo *indices) |
| 334 | { |
| 335 | ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, dst, pool_info, indices)); |
| 336 | return Status{}; |
| 337 | } |
| 338 | |
| 339 | void ClPool2dKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue) |
| 340 | { |
nothing calls this directly
no test coverage detected