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

Function u8_sve_scale

src/cpu/kernels/scale/sve/integer.cpp:150–172  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

148namespace cpu
149{
150void u8_sve_scale(const ITensor *src,
151 ITensor *dst,
152 const ITensor *offsets,
153 const ITensor *dx,
154 const ITensor *dy,
155 InterpolationPolicy policy,
156 BorderMode border_mode,
157 PixelValue constant_border_value,
158 float sampling_offset,
159 bool align_corners,
160 const Window &window)
161{
162 ARM_COMPUTE_TRACE_EVENT(ARM_COMPUTE_PROF_CAT_CPU, ARM_COMPUTE_PROF_LVL_CPU, "u8_sve_scale");
163 ARM_COMPUTE_UNUSED(dx, dy, border_mode, constant_border_value);
164 if (policy == InterpolationPolicy::NEAREST_NEIGHBOR)
165 {
166 u8_sve_scale_nearest(src, dst, offsets, sampling_offset, align_corners, window);
167 }
168 else
169 {
170 ARM_COMPUTE_ERROR("Not Implemented");
171 }
172}
173
174void s16_sve_scale(const ITensor *src,
175 ITensor *dst,

Callers

nothing calls this directly

Calls 1

u8_sve_scale_nearestFunction · 0.85

Tested by

no test coverage detected