1 #include "caffe2/perfkernels/cvtsh_ss_bugfix.h" 3 #include <c10/util/Half.h> 9 void TypedAxpyHalffloat__avx2_fma(
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 = _mm256_loadu_ps(y + current);
32 mmy = _mm256_fmadd_ps(mmx_32, mma, mmy);
33 _mm256_storeu_ps(y + current, mmy);
38 y[current] += _cvtsh_ss(x[current].x) * a;
44 void TypedAxpy_uint8_float__avx2_fma(
47 const std::uint8_t* x,
51 while ((reinterpret_cast<unsigned long>(x) % 16) && N) {
52 *(y++) += static_cast<float>(*(x++)) * a;
58 __m256 mma = _mm256_set1_ps(a);
60 const int bound = (N % 8) ? N - 8 : N;
62 for (; current < bound; current += 8) {
63 __m256i mmx_int32 = _mm256_cvtepi8_epi32(
64 _mm_loadu_si128(reinterpret_cast<const __m128i*>(x + current)));
65 __m256 mmx_fp32 = _mm256_cvtepi32_ps(mmx_int32);
67 __m256 mmy = _mm256_loadu_ps(y + current);
68 mmy = _mm256_fmadd_ps(mmx_fp32, mma, mmy);
69 _mm256_storeu_ps(y + current, mmy);
74 y[current] += (float)(x[current]) * a;
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...