blob: ccad93d601f6d3db1054d696a389725ff45d6d84 [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_vrndz_ukernel__wasmsimd_native_x8(
size_t n,
const float* x,
float* y,
const union xnn_f32_rnd_params params[restrict XNN_MIN_ELEMENTS(1)]) XNN_OOB_READS
{
assert(n != 0);
assert(n % sizeof(float) == 0);
for (; n >= 8 * sizeof(float); n -= 8 * sizeof(float)) {
const v128_t vx0123 = wasm_v128_load(x); x += 4;
const v128_t vx4567 = wasm_v128_load(x); x += 4;
const v128_t vy0123 = wasm_f32x4_trunc(vx0123);
const v128_t vy4567 = wasm_f32x4_trunc(vx4567);
wasm_v128_store(y, vy0123); y += 4;
wasm_v128_store(y, vy4567); y += 4;
}
for (; n >= 4 * sizeof(float); n -= 4 * sizeof(float)) {
const v128_t vx = wasm_v128_load(x); x += 4;
const v128_t vy = wasm_f32x4_trunc(vx);
wasm_v128_store(y, vy); y += 4;
}
if XNN_UNLIKELY(n != 0) {
const v128_t vx = wasm_v128_load(x);
v128_t vy = wasm_f32x4_trunc(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);
}
}
}