blob: 908949caebf73cdbd1474ddda3d07e298a0730b4 [file] [log] [blame]
Marat Dukhan0e97d6f2020-06-26 19:35:09 -07001// Auto-generated file. Do not edit!
2// Template: src/f32-vbinary/vopc-wasmsimd.c.in
3// Generator: tools/xngen
4//
5// Copyright 2020 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 <wasm_simd128.h>
13
14#include <xnnpack/common.h>
15#include <xnnpack/vbinary.h>
16
17
18void xnn_f32_vmaxc_ukernel__wasmsimd_arm_x4(
19 size_t n,
20 const float* a,
21 const float* b,
22 float* y,
23 const union xnn_f32_default_params params[restrict XNN_MIN_ELEMENTS(1)]) XNN_DISABLE_TSAN
24{
25 assert(n != 0);
26 assert(n % sizeof(float) == 0);
Frank Barchard0822dde2020-07-04 12:47:24 -070027 assert(a != NULL);
28 assert(b != NULL);
29 assert(y != NULL);
Marat Dukhan0e97d6f2020-06-26 19:35:09 -070030
Marat Dukhanee029b22021-06-30 12:47:02 -070031 const v128_t vb = wasm_v128_load32_splat(b);
Marat Dukhan0e97d6f2020-06-26 19:35:09 -070032 for (; n >= 4 * sizeof(float); n -= 4 * sizeof(float)) {
33 const v128_t va0123 = wasm_v128_load(a);
34 a += 4;
35
36 v128_t vy0123 = wasm_f32x4_max(va0123, vb);
37
38
39
40 wasm_v128_store(y, vy0123);
41 y += 4;
42 }
43 if XNN_UNLIKELY(n != 0) {
44 const v128_t va = wasm_v128_load(a);
45
46 v128_t vy = wasm_f32x4_max(va, vb);
47
48
49 if (n & (2 * sizeof(float))) {
50 *((double*) y) = wasm_f64x2_extract_lane(vy, 0);
51 vy = wasm_v32x4_shuffle(vy, vy, 2, 3, 2, 3);
52 y += 2;
53 }
54 if (n & (1 * sizeof(float))) {
55 *y = wasm_f32x4_extract_lane(vy, 0);
56 }
57 }
58}