Skip to content

Commit

Permalink
address clang array overflow warning
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-frbg committed Aug 10, 2024
1 parent a87c4d2 commit 7ca835a
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 7ca835a

Please sign in to comment.