Marat Dukhan | 77ca630 | 2019-12-06 12:48:15 -0800 | [diff] [blame] | 1 | // Auto-generated file. Do not edit! |
| 2 | // Template: src/f32-vbinary/vopc-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 | |
Marat Dukhan | 91cd2b7 | 2020-04-09 23:57:31 -0700 | [diff] [blame] | 17 | void xnn_f32_vdivc_minmax_ukernel__wasm_x1( |
Marat Dukhan | 77ca630 | 2019-12-06 12:48:15 -0800 | [diff] [blame] | 18 | size_t n, |
| 19 | const float* a, |
| 20 | const float* b, |
| 21 | float* y, |
Marat Dukhan | f196d01 | 2020-04-15 11:50:03 -0700 | [diff] [blame] | 22 | const union xnn_f32_minmax_params params[restrict XNN_MIN_ELEMENTS(1)]) |
Marat Dukhan | 77ca630 | 2019-12-06 12:48:15 -0800 | [diff] [blame] | 23 | { |
| 24 | assert(n != 0); |
| 25 | assert(n % sizeof(float) == 0); |
Frank Barchard | 0822dde | 2020-07-04 12:47:24 -0700 | [diff] [blame^] | 26 | assert(a != NULL); |
| 27 | assert(b != NULL); |
| 28 | assert(y != NULL); |
Marat Dukhan | 77ca630 | 2019-12-06 12:48:15 -0800 | [diff] [blame] | 29 | |
| 30 | const float vy_min = params->scalar.min; |
| 31 | const float vy_max = params->scalar.max; |
| 32 | |
| 33 | const float vb = *b; |
| 34 | for (; n >= sizeof(float); n -= sizeof(float)) { |
| 35 | const float va = *a++; |
| 36 | float vy = va / vb; |
| 37 | vy = __builtin_wasm_max_f32(vy, vy_min); |
| 38 | vy = __builtin_wasm_min_f32(vy, vy_max); |
| 39 | *y++ = vy; |
| 40 | } |
| 41 | } |