Arithmetic operators (min, max, squared_diff) */
| 335 | |
| 336 | /** Arithmetic operators (min, max, squared_diff) */ |
| 337 | void CpuArithmeticKernel::configure(ArithmeticOperation op, |
| 338 | const ITensorInfo *src0, |
| 339 | const ITensorInfo *src1, |
| 340 | ITensorInfo *dst) |
| 341 | { |
| 342 | ARM_COMPUTE_TRACE_EVENT(ARM_COMPUTE_PROF_CAT_CPU, ARM_COMPUTE_PROF_LVL_CPU, "CpuArithmeticKernel::configure"); |
| 343 | ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(*src0, *src1, *dst)); |
| 344 | _op = op; |
| 345 | CpuArithmeticKernel::configure_common(src0, src1, dst); |
| 346 | } |
| 347 | |
| 348 | Status CpuArithmeticKernel::validate_arguments(const ITensorInfo &src0, const ITensorInfo &src1, const ITensorInfo &dst) |
| 349 | { |
nothing calls this directly
no test coverage detected