1 // Auto-generated file. Do not edit!
2 // Template: src/f32-vbinary/vop-scalar.c.in
3 // Generator: tools/xngen
4 //
5 // Copyright 2019 Google LLC
6 //
7 // This source code is licensed under the BSD-style license found in the
8 // LICENSE file in the root directory of this source tree.
9
10 #include <assert.h>
11
12 #include <xnnpack/common.h>
13 #include <xnnpack/math.h>
14 #include <xnnpack/vbinary.h>
15
16
xnn_f32_vmax_ukernel__scalar_x1(size_t n,const float * a,const float * b,float * y,const union xnn_f32_output_params params[restrict static1])17 void xnn_f32_vmax_ukernel__scalar_x1(
18 size_t n,
19 const float* a,
20 const float* b,
21 float* y,
22 const union xnn_f32_output_params params[restrict static 1])
23 {
24 assert(n != 0);
25 assert(n % sizeof(float) == 0);
26
27 const float vy_min = params->scalar.min;
28 const float vy_max = params->scalar.max;
29
30 for (; n >= sizeof(float); n -= sizeof(float)) {
31 const float va = *a++;
32 const float vb = *b++;
33 float vy = math_max_f32(va, vb);
34 vy = math_max_f32(vy, vy_min);
35 vy = math_min_f32(vy, vy_max);
36 *y++ = vy;
37 }
38 }
39