Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zanmato1984 committed Aug 26, 2024
1 parent e51cf4a commit e2af277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/arrow/acero/swiss_join_avx2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ inline void Decode8FixedLength0_avx2(uint8_t* output, const uint8_t* row_ptr_bas
// Keep the first 8 bits in each 64-bit row.
row_lo_64 = _mm256_and_si256(row_lo_64, _mm256_set1_epi64x(0xFF));
row_hi_64 = _mm256_and_si256(row_hi_64, _mm256_set1_epi64x(0xFF));
// If the 64-bit is zero, then we get 64 st bits.
// If the 64-bit is zero, then we get 64 set bits.
__m256i is_zero_lo_64 = _mm256_cmpeq_epi64(row_lo_64, _mm256_setzero_si256());
__m256i is_zero_hi_64 = _mm256_cmpeq_epi64(row_hi_64, _mm256_setzero_si256());
// 64 set bits to 8 set bits.
Expand Down

0 comments on commit e2af277

Please sign in to comment.