Micro-kernel selector * * @param[in] data Selection data passed to help pick the appropriate micro-kernel * * @return A matching micro-kernel else nullptr */
| 83 | * @return A matching micro-kernel else nullptr |
| 84 | */ |
| 85 | const RangeUKernel *get_implementation(const RangeSelectorData &data) |
| 86 | { |
| 87 | for (const auto &uk : available_kernels) |
| 88 | { |
| 89 | if (uk.is_selected(data)) |
| 90 | { |
| 91 | return &uk; |
| 92 | } |
| 93 | } |
| 94 | return nullptr; |
| 95 | } |
| 96 | |
| 97 | Status validate_arguments(const ITensorInfo &output, const float start, const float end, const float step) |
| 98 | { |
no test coverage detected