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

Function get_implementation

src/core/NEON/kernels/NECropKernel.cpp:88–99  ·  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

86 * @return A matching micro-kernel else nullptr
87 */
88const CropUKernel *get_implementation(const CropSelectorData &data)
89{
90 for (const auto &uk : available_kernels)
91 {
92 if (uk.is_selected(data))
93 {
94 return &uk;
95 }
96 }
97
98 return nullptr;
99}
100
101inline void out_of_bounds_crop_window(const ITensor *output,
102 float *output_ptr,

Callers 15

validateMethod · 0.70
runMethod · 0.70
validate_argumentsFunction · 0.50
configureMethod · 0.50
configure_commonMethod · 0.50
validate_argumentsFunction · 0.50
configureMethod · 0.50
configureMethod · 0.50
run_opMethod · 0.50
configureMethod · 0.50
configureMethod · 0.50
run_opMethod · 0.50

Calls 1

is_selectedMethod · 0.80

Tested by

no test coverage detected