Skip to content

Commit

Permalink
fixed simd_ldexp test
Browse files Browse the repository at this point in the history
  • Loading branch information
Geolm committed Jan 15, 2024
1 parent 7323c27 commit 6bf93e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_simd.c
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ TEST test_ldexp(void)

simd_vector v_array = simd_load(array);

for(int i=-128; i<127; i+= simd_vector_width)
for(int i=-127; i<(128-simd_vector_width); i+= simd_vector_width)
{
for(int j=0; j<simd_vector_width; ++j)
{
Expand Down

0 comments on commit 6bf93e8

Please sign in to comment.