| 170 | } |
| 171 | |
| 172 | Status |
| 173 | CpuTopKVKernel::validate(const ITensorInfo *predictions, const ITensorInfo *targets, const ITensorInfo *dst, uint32_t k) |
| 174 | { |
| 175 | ARM_COMPUTE_TRACE_EVENT(ARM_COMPUTE_PROF_CAT_CPU, ARM_COMPUTE_PROF_LVL_CPU, "CpuTopKVKernel::validate"); |
| 176 | ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(predictions, targets, dst); |
| 177 | |
| 178 | ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(*predictions, *targets, *dst, k)); |
| 179 | |
| 180 | return Status{}; |
| 181 | } |
| 182 | |
| 183 | void CpuTopKVKernel::run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info) |
| 184 | { |
nothing calls this directly
no test coverage detected