Skip to content

Commit

Permalink
oopsie
Browse files Browse the repository at this point in the history
  • Loading branch information
orlp committed Oct 18, 2024
1 parent ff42f8f commit c743fcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-compute/src/filter/avx512.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use core::arch::x86_64::*;
// structured functions.
macro_rules! simd_filter {
($values: ident, $mask_bytes: ident, $out: ident, |$subchunk: ident, $m: ident: $MaskT: ty| $body:block) => {{
const MASK_BITS: usize = $MaskT::BITS as usize;
const MASK_BITS: usize = <$MaskT>::BITS as usize;

// Do a 64-element loop for sparse fast path.
let chunks = $values.chunks_exact(64);
Expand Down

0 comments on commit c743fcd

Please sign in to comment.