| 358 | } |
| 359 | |
| 360 | Status CpuArithmeticKernel::validate(ArithmeticOperation op, |
| 361 | const ITensorInfo *src0, |
| 362 | const ITensorInfo *src1, |
| 363 | const ITensorInfo *dst) |
| 364 | { |
| 365 | ARM_COMPUTE_TRACE_EVENT(ARM_COMPUTE_PROF_CAT_CPU, ARM_COMPUTE_PROF_LVL_CPU, "CpuArithmeticKernel::validate"); |
| 366 | ARM_COMPUTE_UNUSED(op); |
| 367 | ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(src0, src1, dst); |
| 368 | ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(*src0, *src1, *dst)); |
| 369 | return Status{}; |
| 370 | } |
| 371 | |
| 372 | size_t CpuArithmeticKernel::get_mws(const CPUInfo &platform, size_t thread_count) const |
| 373 | { |
nothing calls this directly
no test coverage detected