// Auto-generated file. Do not edit! // Template: src/f32-vhswish/wasmsimd.c.in // Generator: tools/xngen // // Copyright 2020 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 #include #include "xnnpack/common.h" #include "xnnpack/vunary.h" void xnn_f32_vhswish_ukernel__wasmsimd_u4( size_t batch, const float* input, float* output, const struct xnn_f32_default_params params[restrict XNN_MIN_ELEMENTS(1)]) XNN_OOB_READS { assert(batch != 0); assert(batch % sizeof(float) == 0); assert(input != NULL); assert(output != NULL); const v128_t vsixth = wasm_f32x4_const_splat(0x1.555556p-3f); const v128_t vthree = wasm_f32x4_const_splat(3.0f); const v128_t vsix = wasm_f32x4_const_splat(6.0f); const v128_t vzero = wasm_i32x4_const_splat(0); XNN_FORCE_REALIZATION(vsixth); XNN_FORCE_REALIZATION(vthree); XNN_FORCE_REALIZATION(vsix); // XNN_FORCE_REALIZATION(vzero); for (; batch >= 4 * sizeof(float); batch -= 4 * sizeof(float)) { v128_t vx = wasm_v128_load(input); input += 4; v128_t vacc = wasm_f32x4_add(vx, vthree); vx = wasm_f32x4_mul(vx, vsixth); vacc = wasm_i32x4_max(vacc, vzero); vacc = wasm_i32x4_min(vacc, vsix); vacc = wasm_f32x4_mul(vacc, vx); wasm_v128_store(output, vacc); output += 4; } if XNN_UNLIKELY(batch != 0) { v128_t vx = wasm_v128_load(input); v128_t vacc = wasm_f32x4_add(vx, vthree); vx = wasm_f32x4_mul(vx, vsixth); vacc = wasm_i32x4_max(vacc, vzero); vacc = wasm_i32x4_min(vacc, vsix); vacc = wasm_f32x4_mul(vacc, vx); if (batch & (2 * sizeof(float))) { wasm_v128_store64_lane(output, vacc, 0); vacc = wasm_v64x2_shuffle(vacc, vacc, 1, 1); output += 2; } if (batch & (1 * sizeof(float))) { wasm_v128_store32_lane(output, vacc, 0); } } }