• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2021 Google LLC
2 //
3 // This source code is licensed under the BSD-style license found in the
4 // LICENSE file in the root directory of this source tree.
5 
6 #include <assert.h>
7 #include <stddef.h>
8 #include <stdint.h>
9 
10 #include <wasm_simd128.h>
11 
12 #include <xnnpack/math-stubs.h>
13 
14 
xnn_math_f16_f32_cvt__wasmsimd_int32(size_t n,const void * input,float * output)15 void xnn_math_f16_f32_cvt__wasmsimd_int32(
16     size_t n,
17     const void* input,
18     float* output)
19 {
20   assert(n % (8 * sizeof(float)) == 0);
21 
22   const v128_t vsign_mask = wasm_i32x4_const_splat(0x80000000);
23   const v128_t vexp_offset = wasm_i32x4_const_splat(0x70000000);
24   const v128_t vexp_scale = wasm_f32x4_const_splat(0x1.0p-112f);
25   const v128_t vmagic_mask = wasm_i32x4_const_splat(0x3F000000);
26   const v128_t vmagic_bias = wasm_f32x4_const_splat(0.5f);
27   const v128_t vdenorm_cutoff = wasm_i32x4_const_splat(0x04000000);
28 
29   const uint16_t* i = (const uint16_t*) input;
30   for (; n != 0; n -= 8 * sizeof(float)) {
31     const v128_t vh = wasm_v128_load(i);
32     i += 8;
33 
34     const v128_t vzero = wasm_i16x8_const_splat(0);
35     const v128_t vw_lo = wasm_v16x8_shuffle(vzero, vh, 0,  8, 1,  9, 2, 10, 3, 11);
36     const v128_t vw_hi = wasm_v16x8_shuffle(vzero, vh, 4, 12, 5, 13, 6, 14, 7, 15);
37 
38     const v128_t vsign_lo = wasm_v128_and(vw_lo, vsign_mask);
39     const v128_t vsign_hi = wasm_v128_and(vw_hi, vsign_mask);
40 
41     const v128_t vnonsign_lo = wasm_v128_xor(vw_lo, vsign_lo);
42     const v128_t vnonsign_hi = wasm_v128_xor(vw_hi, vsign_hi);
43 
44     const v128_t vnorm_lo = wasm_f32x4_mul(wasm_i32x4_add(wasm_u32x4_shr(vnonsign_lo, 3), vexp_offset), vexp_scale);
45     const v128_t vnorm_hi = wasm_f32x4_mul(wasm_i32x4_add(wasm_u32x4_shr(vnonsign_hi, 3), vexp_offset), vexp_scale);
46 
47     const v128_t vdenorm_lo = wasm_f32x4_sub(wasm_v128_or(wasm_u32x4_shr(vnonsign_lo, 16), vmagic_mask), vmagic_bias);
48     const v128_t vdenorm_hi = wasm_f32x4_sub(wasm_v128_or(wasm_u32x4_shr(vnonsign_hi, 16), vmagic_mask), vmagic_bias);
49 
50     const v128_t vmask_lo = wasm_i32x4_gt(vnonsign_lo, vdenorm_cutoff);
51     const v128_t vmask_hi = wasm_i32x4_gt(vnonsign_hi, vdenorm_cutoff);
52 
53     const v128_t vf_lo = wasm_v128_or(vsign_lo, wasm_v128_bitselect(vnorm_lo, vdenorm_lo, vmask_lo));
54     const v128_t vf_hi = wasm_v128_or(vsign_hi, wasm_v128_bitselect(vnorm_hi, vdenorm_hi, vmask_hi));
55 
56     wasm_v128_store(output, vf_lo);
57     wasm_v128_store(output + 4, vf_hi);
58     output += 8;
59   }
60 }
61