| 128 | } |
| 129 | |
| 130 | Status ClPermuteKernel::validate(const ITensorInfo *src, const ITensorInfo *dst, const PermutationVector &perm) |
| 131 | { |
| 132 | ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src, dst); |
| 133 | ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, dst, perm)); |
| 134 | |
| 135 | return Status{}; |
| 136 | } |
| 137 | |
| 138 | void ClPermuteKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue) |
| 139 | { |
nothing calls this directly
no test coverage detected