| 125 | } |
| 126 | |
| 127 | Status CPPTopKVKernel::validate(const ITensorInfo *predictions, |
| 128 | const ITensorInfo *targets, |
| 129 | ITensorInfo *output, |
| 130 | const unsigned int k) |
| 131 | { |
| 132 | ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(predictions, targets, output, k)); |
| 133 | return Status{}; |
| 134 | } |
| 135 | |
| 136 | bool CPPTopKVKernel::is_parallelisable() const |
| 137 | { |
nothing calls this directly
no test coverage detected