Browse Source

Merge pull request #4859 from martin-frbg/cooper_sb

Address clang array overflow warning in the SBGEMV microkernel for Cooper Lake
tags/v0.3.29
Martin Kroeker GitHub 1 year ago
parent
commit
35dd625adf
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      kernel/x86_64/sbgemv_t_microk_cooperlake_template.c

+ 1
- 1
kernel/x86_64/sbgemv_t_microk_cooperlake_template.c View File

@@ -2680,7 +2680,7 @@ static int sbgemv_kernel_1x128_lda_direct(BLASLONG m, BLASLONG n, float alpha, b
BLASLONG tag_n_32x = n & (~31);
BLASLONG tag_n_128x = n & (~127);

__m512 accum512_bridge[8];
__m512 accum512_bridge[16];
__m512 accum512_t_0, accum512_t_1, accum512_t_2, accum512_t_3;
__m256 accum256_0;
__m128 accum128;


Loading…
Cancel
Save