Skip to content

Commit

Permalink
Fix issue #22796 - a typo: (__GNUC__ > 9) -> (__GNUC__ > 10) (#22807)
Browse files Browse the repository at this point in the history
### Description
fix #22796 
Signed-off-by: liqunfu <[email protected]>
  • Loading branch information
liqunfu authored Nov 13, 2024
1 parent 69a36eb commit bc2b1b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ accumulate_blklen64_r1c1blk1_avx2(
__m256 scale_b_8_ps = _mm256_broadcast_ss(scale_b);

acc0 = _mm256_fmadd_ps(sum_ps, _mm256_mul_ps(scale_a_8_ps, scale_b_8_ps), acc0);
#if !defined(__GNUC__) || (__GNUC__ > 9)
#if !defined(__GNUC__) || (__GNUC__ > 10)
}
#endif
}
Expand Down

0 comments on commit bc2b1b5

Please sign in to comment.