You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The test_unaligned_bit_chunk_iterator() test fails to run on aarch64 because of an assertion assert!(ALIGNMENT > 64). There are several platforms that support 64-bit or lower alignment, and this assertion will also fail on them.
To Reproduce
Steps to reproduce the behavior:
Run arrow tests with arm, aarch64 or other platform with a lower alignment than the assertion
Expected behavior
A clear and concise description of what you expected to happen.
Not sure of what the implication of > 64 alignment is, as I haven't been following the codebase
Additional context
Add any other context about the problem here.
Describe the bug
The
test_unaligned_bit_chunk_iterator()
test fails to run on aarch64 because of an assertionassert!(ALIGNMENT > 64)
. There are several platforms that support 64-bit or lower alignment, and this assertion will also fail on them.To Reproduce
Steps to reproduce the behavior:
Run arrow tests with arm, aarch64 or other platform with a lower alignment than the assertion
Expected behavior
A clear and concise description of what you expected to happen.
Not sure of what the implication of > 64 alignment is, as I haven't been following the codebase
Additional context
Add any other context about the problem here.
Here's the alignment for aarch64 https://github.com/apache/arrow-rs/blob/master/arrow/src/alloc/alignment.rs#L119. CC @tustvold from #1228
The text was updated successfully, but these errors were encountered: