Skip to content

Commit

Permalink
Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Jun 28, 2024
1 parent 1aa5931 commit 1acfbed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/Sieve.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class Sieve
}

__mmask8 mask = (__mmask8) _bzhi_u64(0xff, stop_idx - i);
__m512i vec = _mm512_maskz_loadu_epi64(mask , &sieve64[i]);
__m512i vec = _mm512_maskz_loadu_epi64(mask, &sieve64[i]);
vec = _mm512_popcnt_epi64(vec);
vcnt = _mm512_add_epi64(vcnt, vec);

Expand Down

0 comments on commit 1acfbed

Please sign in to comment.