| 291 | } |
| 292 | |
| 293 | Status ClMulKernel::validate(const ITensorInfo *src1, |
| 294 | const ITensorInfo *src2, |
| 295 | const ITensorInfo *dst, |
| 296 | float scale, |
| 297 | ConvertPolicy overflow_policy, |
| 298 | RoundingPolicy rounding_policy, |
| 299 | const ActivationLayerInfo &act_info) |
| 300 | { |
| 301 | ARM_COMPUTE_ERROR_ON_NULLPTR(src1, src2, dst); |
| 302 | ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src1, src2, dst, scale, overflow_policy, rounding_policy, act_info)); |
| 303 | |
| 304 | return Status{}; |
| 305 | } |
| 306 | |
| 307 | void ClMulKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue) |
| 308 | { |
nothing calls this directly
no test coverage detected