// 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_rmin_ukernel__scalar_u1( 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 vmin0 = vt; do { vt = math_signcomplement_f16(*i++); vmin0 = math_min_s16(vmin0, vt); batch -= sizeof(uint16_t); } while (batch != 0); o[0] = (uint16_t) math_signcomplement_f16((uint16_t) vmin0); }