// Auto-generated file. Do not edit! // Template: src/f16-rminmax/scalar.c.in // Generator: tools/xngen // // Copyright 2023 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include #include "xnnpack/common.h" #include "xnnpack/math.h" #include "xnnpack/reduce.h" void xnn_f16_rmax_ukernel__scalar_u3_acc3( size_t batch, const xnn_float16* input, xnn_float16* output, const struct xnn_f16_default_params params[restrict XNN_MIN_ELEMENTS(1)]) { assert(batch != 0); assert(batch % sizeof(uint16_t) == 0); assert(input != NULL); assert(output != NULL); const uint16_t* i = (const uint16_t*) input; uint16_t* o = (uint16_t*) output; int16_t vt = math_signcomplement_f16(*i); int16_t vmax0 = vt; int16_t vmax1 = vt; int16_t vmax2 = vt; for (; batch >= 3 * sizeof(uint16_t); batch -= 3 * sizeof(uint16_t)) { const int16_t vt0 = math_signcomplement_f16(i[0]); const int16_t vt1 = math_signcomplement_f16(i[1]); const int16_t vt2 = math_signcomplement_f16(i[2]); i += 3; vmax0 = math_max_s16(vmax0, vt0); vmax1 = math_max_s16(vmax1, vt1); vmax2 = math_max_s16(vmax2, vt2); } vmax0 = math_max_s16(vmax0, vmax1); vmax0 = math_max_s16(vmax0, vmax2); if XNN_UNLIKELY(batch != 0) { do { vt = math_signcomplement_f16(*i++); vmax0 = math_max_s16(vmax0, vt); batch -= sizeof(uint16_t); } while (batch != 0); } o[0] = (uint16_t) math_signcomplement_f16((uint16_t) vmax0); }