| 148 | namespace cpu |
| 149 | { |
| 150 | void 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 | |
| 174 | void s16_sve_scale(const ITensor *src, |
| 175 | ITensor *dst, |
nothing calls this directly
no test coverage detected