1 // Auto-generated file. Do not edit!
2 // Template: src/f16-vsqrt/f16c-sqrt.c.in
3 // Generator: tools/xngen
4 //
5 // Copyright 2022 Google LLC
6 //
7 // This source code is licensed under the BSD-style license found in the
8 // LICENSE file in the root directory of this source tree.
9
10 #include <assert.h>
11
12 #include <immintrin.h>
13
14 #include <xnnpack/common.h>
15 #include <xnnpack/intrinsics-polyfill.h>
16 #include <xnnpack/vunary.h>
17
18
xnn_f16_vsqrt_ukernel__f16c_sqrt_x8(size_t n,const void * input,void * output,const union xnn_f16_sqrt_params params[restrict XNN_MIN_ELEMENTS (1)])19 void xnn_f16_vsqrt_ukernel__f16c_sqrt_x8(
20 size_t n,
21 const void* input,
22 void* output,
23 const union xnn_f16_sqrt_params params[restrict XNN_MIN_ELEMENTS(1)]) XNN_OOB_READS
24 {
25 assert(n != 0);
26 assert(n % sizeof(uint16_t) == 0);
27 assert(input != NULL);
28 assert(output != NULL);
29
30 const uint16_t* i = (const uint16_t*) input;
31 uint16_t* o = (uint16_t*) output;
32 for (; n >= 8 * sizeof(uint16_t); n -= 8 * sizeof(uint16_t)) {
33 __m256 vacc = _mm256_cvtph_ps(_mm_loadu_si128((const __m128i*) i));
34 i += 8;
35 vacc = _mm256_sqrt_ps(vacc);
36 _mm_storeu_si128((__m128i*) o, _mm256_cvtps_ph(vacc, _MM_FROUND_NO_EXC));
37 o += 8;
38 }
39 if XNN_UNLIKELY(n != 0) {
40 __m256 vacc = _mm256_cvtph_ps(_mm_loadu_si128((const __m128i*) i));
41 vacc = _mm256_sqrt_ps(vacc);
42 __m128i vh = _mm256_cvtps_ph(vacc, _MM_FROUND_NO_EXC);
43 if (n & (4 * sizeof(uint16_t))) {
44 _mm_storel_epi64((__m128i*) o, vh);
45 o += 4;
46 vh = _mm_unpackhi_epi64(vh, vh);
47 }
48 if (n & (2 * sizeof(uint16_t))) {
49 _mm_storeu_si32(o, vh);
50 o += 2;
51 vh = _mm_srli_epi64(vh, 32);
52 }
53 if (n & (1 * sizeof(uint16_t))) {
54 *o = (uint16_t) _mm_extract_epi16(vh, 0);
55 }
56 }
57 }
58