Uh oh!
There was an error while loading. Please reload this page.
ARROW-11387: [Rust] fix build for conditional compilation of features 'simd + avx512' - #9337
ARROW-11387: [Rust] fix build for conditional compilation of features 'simd + avx512'#9337ritchie46 wants to merge 1 commit into
Conversation
Thanks for opening a pull request! Could you open an issue for this pull request on JIRA? Then could you also rename pull request title in the following format? See also: |
codecov-io
commented
Jan 27, 2021
Codecov Report
@@ Coverage Diff @@## master #9337 +/- ##
=======================================
Coverage 81.89% 81.89% =======================================
Files 215 215 Lines 52988 52988 =======================================
Hits 43392 43392 Misses 9596 9596
Continue to review full report at Codecov.
|
ChristianBeilschmidt
commented
Jan 28, 2021
@ritchie46 I guess you need to prepend your Jira Issue to your PR-title: So, I guess And thank you for the PR! |
There was a problem hiding this comment.
It looks good to me. Thanks @ritchie46
FYI @vertexclique
alamb
commented
Jan 28, 2021
On my machine, specifically, I tested in this manner: |
vertexclique
commented
Jan 28, 2021
I think we've talked about this mutual exclusivity of features here: #8665 (comment)
|
ChristianBeilschmidt
commented
Jan 29, 2021
Will this be published as a patch version to 3.0.0? |
alamb
commented
Jan 29, 2021
@ChristianBeilschmidt -- I do not know what the plans are for a 3.0.0 patch. @andygrove do you know of how/if we do such a thing? |
andygrove
commented
Jan 29, 2021
For any JIRA issues that we want to include in a patch release, we should update the release version to include both |
jorgecarleitao
commented
Jan 30, 2021
I assigned both |
This fixes conditional compilation for
simdandavx512. Currently compilation for both fails:This PR is tested on:
$ cargo c --features "simd"$ cargo c --features "simd avx512"$ cargo c --features "avx512"Maybe a check like used in cargo hack can be added to the CI pipeline? This checks compilation for multiple feature combinations.