// Auto-generated file. Do not edit! // Template: src/f32-gemm/avx512-broadcast.c.in // Generator: tools/xngen // // Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include #include #include "xnnpack/gemm.h" #include "xnnpack/intrinsics-polyfill.h" void xnn_f32_gemm_minmax_ukernel_5x16__avx512f_broadcast( size_t mr, size_t nc, size_t kc, const float* restrict a, size_t a_stride, const float* restrict w, float* restrict c, size_t cm_stride, size_t cn_stride, const union xnn_f32_minmax_params params[restrict XNN_MIN_ELEMENTS(1)]) { assert(mr != 0); assert(mr <= 5); assert(nc != 0); assert(kc != 0); assert(kc % sizeof(float) == 0); assert(a != NULL); assert(w != NULL); assert(c != NULL); const float* a0 = a; float* c0 = c; const float* a1 = (const float*) ((uintptr_t) a0 + a_stride); float* c1 = (float*) ((uintptr_t) c0 + cm_stride); if XNN_UNPREDICTABLE(mr < 2) { a1 = a0; c1 = c0; } const float* a2 = (const float*) ((uintptr_t) a1 + a_stride); float* c2 = (float*) ((uintptr_t) c1 + cm_stride); if XNN_UNPREDICTABLE(mr <= 2) { a2 = a1; c2 = c1; } const float* a3 = (const float*) ((uintptr_t) a2 + a_stride); float* c3 = (float*) ((uintptr_t) c2 + cm_stride); if XNN_UNPREDICTABLE(mr < 4) { a3 = a2; c3 = c2; } const float* a4 = (const float*) ((uintptr_t) a3 + a_stride); float* c4 = (float*) ((uintptr_t) c3 + cm_stride); if XNN_UNPREDICTABLE(mr <= 4) { a4 = a3; c4 = c3; } do { __m512 vacc0x0 = _mm512_load_ps(w); __m512 vacc1x0 = vacc0x0; __m512 vacc2x0 = vacc0x0; __m512 vacc3x0 = vacc0x0; __m512 vacc4x0 = vacc0x0; w += 16; size_t k = kc; do { const __m512 vb0 = _mm512_load_ps(w); w += 16; const __m512 va0 = _mm512_set1_ps(*a0); vacc0x0 = _mm512_fmadd_ps(va0, vb0, vacc0x0); const __m512 va1 = _mm512_set1_ps(*a1); vacc1x0 = _mm512_fmadd_ps(va1, vb0, vacc1x0); const __m512 va2 = _mm512_set1_ps(*a2); vacc2x0 = _mm512_fmadd_ps(va2, vb0, vacc2x0); const __m512 va3 = _mm512_set1_ps(*a3); vacc3x0 = _mm512_fmadd_ps(va3, vb0, vacc3x0); const __m512 va4 = _mm512_set1_ps(*a4); vacc4x0 = _mm512_fmadd_ps(va4, vb0, vacc4x0); a0 += 1; a1 += 1; a2 += 1; a3 += 1; a4 += 1; k -= sizeof(float); } while (k != 0); const __m512 vmin = _mm512_set1_ps(params->scalar.min); vacc0x0 = _mm512_max_ps(vmin, vacc0x0); vacc1x0 = _mm512_max_ps(vmin, vacc1x0); vacc2x0 = _mm512_max_ps(vmin, vacc2x0); vacc3x0 = _mm512_max_ps(vmin, vacc3x0); vacc4x0 = _mm512_max_ps(vmin, vacc4x0); const __m512 vmax = _mm512_set1_ps(params->scalar.max); vacc0x0 = _mm512_min_ps(vmax, vacc0x0); vacc1x0 = _mm512_min_ps(vmax, vacc1x0); vacc2x0 = _mm512_min_ps(vmax, vacc2x0); vacc3x0 = _mm512_min_ps(vmax, vacc3x0); vacc4x0 = _mm512_min_ps(vmax, vacc4x0); if XNN_LIKELY(nc >= 16) { _mm512_storeu_ps(c0, vacc0x0); c0 = (float*) ((uintptr_t) c0 + cn_stride); _mm512_storeu_ps(c1, vacc1x0); c1 = (float*) ((uintptr_t) c1 + cn_stride); _mm512_storeu_ps(c2, vacc2x0); c2 = (float*) ((uintptr_t) c2 + cn_stride); _mm512_storeu_ps(c3, vacc3x0); c3 = (float*) ((uintptr_t) c3 + cn_stride); _mm512_storeu_ps(c4, vacc4x0); c4 = (float*) ((uintptr_t) c4 + cn_stride); a0 = (const float*) ((uintptr_t) a0 - kc); a1 = (const float*) ((uintptr_t) a1 - kc); a2 = (const float*) ((uintptr_t) a2 - kc); a3 = (const float*) ((uintptr_t) a3 - kc); a4 = (const float*) ((uintptr_t) a4 - kc); nc -= 16; } else { // NC remainder (1..15) assert(nc >= 1); assert(nc <= 15); // Prepare mask for valid 32-bit elements (depends on nc). const __mmask16 vmask0 = _cvtu32_mask16((uint32_t) (((UINT64_C(1) << nc) - 1) >> 0)); _mm512_mask_storeu_ps(c0 + 0, vmask0, vacc0x0); _mm512_mask_storeu_ps(c1 + 0, vmask0, vacc1x0); _mm512_mask_storeu_ps(c2 + 0, vmask0, vacc2x0); _mm512_mask_storeu_ps(c3 + 0, vmask0, vacc3x0); _mm512_mask_storeu_ps(c4 + 0, vmask0, vacc4x0); nc = 0; } } while (nc != 0); }