| 497 | } |
| 498 | |
| 499 | Status CpuScaleKernel::validate(const ITensorInfo *input, |
| 500 | const ITensorInfo *dx, |
| 501 | const ITensorInfo *dy, |
| 502 | const ITensorInfo *offsets, |
| 503 | ITensorInfo *output, |
| 504 | const ScaleKernelInfo &info) |
| 505 | { |
| 506 | ARM_COMPUTE_TRACE_EVENT(ARM_COMPUTE_PROF_CAT_CPU, ARM_COMPUTE_PROF_LVL_CPU, "CpuScaleKernel::validate"); |
| 507 | ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, dx, dy, offsets, output, info)); |
| 508 | return Status{}; |
| 509 | } |
| 510 | |
| 511 | void CpuScaleKernel::run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info) |
| 512 | { |
nothing calls this directly
no test coverage detected