address clang array overflow warning

This commit is contained in:
Martin Kroeker 2024-08-10 13:44:56 +02:00 committed by GitHub
parent a87c4d26dd
commit 7ca835a82c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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_32x = n & (~31);
BLASLONG tag_n_128x = n & (~127); 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; __m512 accum512_t_0, accum512_t_1, accum512_t_2, accum512_t_3;
__m256 accum256_0; __m256 accum256_0;
__m128 accum128; __m128 accum128;