MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / get_implementation

Function get_implementation

src/core/NEON/kernels/NERangeKernel.cpp:85–95  ·  view source on GitHub ↗

Micro-kernel selector * * @param[in] data Selection data passed to help pick the appropriate micro-kernel * * @return A matching micro-kernel else nullptr */

Source from the content-addressed store, hash-verified

83 * @return A matching micro-kernel else nullptr
84 */
85const 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
97Status validate_arguments(const ITensorInfo &output, const float start, const float end, const float step)
98{

Callers 2

validate_argumentsFunction · 0.70
runMethod · 0.70

Calls 1

is_selectedMethod · 0.80

Tested by

no test coverage detected