Caffe2 - C++ API
A deep learning, cross platform ML framework
typed_axpy_avx.cc
1 #include "caffe2/perfkernels/cvtsh_ss_bugfix.h"
2 
3 #include <c10/util/Half.h>
4 #include <emmintrin.h>
5 #include <immintrin.h>
6 
7 namespace caffe2 {
8 
9 void TypedAxpyHalffloat__avx_f16c(
10  int N,
11  const float a,
12  const at::Half* x,
13  float* y) {
14  // if x does not start at the 16 byte boundary, we will process the first few.
15  // before we get to a real one.
16  while ((reinterpret_cast<unsigned long>(x) % 16) && N) {
17  *(y++) += _cvtsh_ss((*(x++)).x) * a;
18  --N;
19  }
20 
21  // From now on we can do vectorized additions using __m256, which is 8 floats,
22  // so we will vectorize every 8 element and then resort to cvtsh_ss.
23  __m256 mma = _mm256_set1_ps(a);
24  int current = 0;
25  const int bound = (N % 8) ? N - 8 : N;
26 
27  for (; current < bound; current += 8) {
28  __m128i mmx_16 =
29  _mm_loadu_si128(reinterpret_cast<const __m128i*>(x + current));
30  __m256 mmx_32 = _mm256_cvtph_ps(mmx_16);
31  __m256 mmy_in = _mm256_loadu_ps(y + current);
32  __m256 mmmul = _mm256_mul_ps(mmx_32, mma);
33  __m256 mmy_out = _mm256_add_ps(mmmul, mmy_in);
34  _mm256_storeu_ps(y + current, mmy_out);
35  }
36 
37  if (bound != N) {
38  while (current < N) {
39  y[current] += _cvtsh_ss(x[current].x) * a;
40  ++current;
41  }
42  }
43 }
44 
45 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13