Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MINOR: [C++] Remove wrong comment in swiss join avx2 #45107

Merged
merged 1 commit into from
Dec 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions cpp/src/arrow/acero/swiss_join_avx2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,6 @@ int RowArrayAccessor::Visit_avx2(const RowTableImpl& rows, int column_id, int nu
__m256i row_offset_lo =
_mm256_i32gather_epi64(row_offsets_i64, _mm256_castsi256_si128(row_id),
sizeof(RowTableImpl::offset_type));
// Gather the lower/higher 4 32-bit field lengths based on the lower/higher 4
// 64-bit row offsets.
__m256i row_offset_hi =
_mm256_i32gather_epi64(row_offsets_i64, _mm256_extracti128_si256(row_id, 1),
sizeof(RowTableImpl::offset_type));
Expand Down
Loading