1 #include "caffe2/perfkernels/cvtsh_ss_bugfix.h" 3 #include <c10/util/Half.h> 9 void TypedAxpyHalffloat__avx_f16c(
16 while ((reinterpret_cast<unsigned long>(x) % 16) && N) {
17 *(y++) += _cvtsh_ss((*(x++)).x) * a;
23 __m256 mma = _mm256_set1_ps(a);
25 const int bound = (N % 8) ? N - 8 : N;
27 for (; current < bound; current += 8) {
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);
39 y[current] += _cvtsh_ss(x[current].x) * a;
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...