Skip to content

Commit

Permalink
Merge pull request #4859 from martin-frbg/cooper_sb
Browse files Browse the repository at this point in the history
Address clang array overflow warning in the SBGEMV microkernel for Cooper Lake
  • Loading branch information
martin-frbg authored Aug 12, 2024
2 parents a87c4d2 + 7ca835a commit 35dd625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/x86_64/sbgemv_t_microk_cooperlake_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 35dd625

Please sign in to comment.