blob: 9a924c9d60642d42f5d8b3454df681dbd10c72ae [file] [log] [blame]
// Auto-generated file. Do not edit!
// Template: src/f32-vrnd/wasmsimd-native.c.in
// Generator: tools/xngen
//
// Copyright 2021 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 <assert.h>
#include <wasm_simd128.h>
#include <xnnpack/common.h>
#include <xnnpack/math.h>
#include <xnnpack/vunary.h>
void xnn_f32_vrndne_ukernel__wasmsimd_native_x4(
size_t n,
const float* x,
float* y,
const union xnn_f32_rnd_params params[restrict XNN_MIN_ELEMENTS(1)]) XNN_DISABLE_TSAN
{
assert(n != 0);
assert(n % sizeof(float) == 0);
for (; n >= 4 * sizeof(float); n -= 4 * sizeof(float)) {
const v128_t vx0123 = wasm_v128_load(x); x += 4;
const v128_t vy0123 = wasm_f32x4_nearest(vx0123);
wasm_v128_store(y, vy0123); y += 4;
}
if XNN_UNLIKELY(n != 0) {
const v128_t vx = wasm_v128_load(x);
v128_t vy = wasm_f32x4_nearest(vx);
if (n & (2 * sizeof(float))) {
*((double*) y) = wasm_f64x2_extract_lane(vy, 0);
vy = wasm_v32x4_shuffle(vy, vy, 2, 3, 2, 3);
y += 2;
}
if (n & (1 * sizeof(float))) {
*y = wasm_f32x4_extract_lane(vy, 0);
}
}
}