// Auto-generated file. Do not edit! // Template: src/f32-clamp/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 #include void xnn_f32_clamp_ukernel__wasmsimd_arm_x8( size_t n, const float* x, float* y, const union xnn_f32_minmax_params params[restrict XNN_MIN_ELEMENTS(1)]) XNN_DISABLE_TSAN { assert(n != 0); assert(n % sizeof(float) == 0); assert(x != NULL); assert(y != NULL); const v128_t vy_min = wasm_v32x4_load_splat(¶ms->scalar.min); const v128_t vy_max = wasm_v32x4_load_splat(¶ms->scalar.max); for (; n >= 8 * sizeof(float); n -= 8 * sizeof(float)) { v128_t vacc0123 = wasm_v128_load(x); v128_t vacc4567 = wasm_v128_load(x + 4); x += 8; vacc0123 = wasm_f32x4_max(vacc0123, vy_min); vacc4567 = wasm_f32x4_max(vacc4567, vy_min); vacc0123 = wasm_f32x4_min(vacc0123, vy_max); vacc4567 = wasm_f32x4_min(vacc4567, vy_max); wasm_v128_store(y, vacc0123); wasm_v128_store(y + 4, vacc4567); y += 8; } for (; n >= 4 * sizeof(float); n -= 4 * sizeof(float)) { v128_t vacc = wasm_v128_load(x); x += 4; vacc = wasm_f32x4_max(vacc, vy_min); vacc = wasm_f32x4_min(vacc, vy_max); wasm_v128_store(y, vacc); y += 4; } if XNN_UNLIKELY(n != 0) { v128_t vacc = wasm_v128_load(x); vacc = wasm_f32x4_max(vacc, vy_min); vacc = wasm_f32x4_min(vacc, vy_max); if (n & (2 * sizeof(float))) { *((double*) y) = wasm_f64x2_extract_lane(vacc, 0); vacc = wasm_v32x4_shuffle(vacc, vacc, 2, 3, 2, 3); y += 2; } if (n & (1 * sizeof(float))) { *y = wasm_f32x4_extract_lane(vacc, 0); } } }