You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/01/18 13:38:02 UTC

[GitHub] [arrow-rs] alamb opened a new issue #1198: Broken CI SIMD and wasm checks on master

alamb opened a new issue #1198:
URL: https://github.com/apache/arrow-rs/issues/1198


   The CI wasm and SIMD tests are now failing on master:
   
   https://github.com/apache/arrow-rs/runs/4852992130?check_suite_focus=true
   https://github.com/apache/arrow-rs/runs/4852992553?check_suite_focus=true
   
   complaining about missing llvm_asm, which appears to relate to https://github.com/rust-lang/packed_simd/issues/340 as pointed out by @gangliao on #1195
   
   _Originally posted by @tustvold in https://github.com/apache/arrow-rs/issues/1189#issuecomment-1015258084_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-rs] alamb commented on issue #1198: Broken CI SIMD and wasm checks on master

Posted by GitBox <gi...@apache.org>.
alamb commented on issue #1198:
URL: https://github.com/apache/arrow-rs/issues/1198#issuecomment-1015939294


   We can always follow the lead of arrow2 here if no one is willing to publish a new fix for `packed_simd` and switch to `stdsimd` --  https://github.com/jorgecarleitao/arrow2/pull/747
   
   I suppose "code that compiles but is slower" is better than "code that doesn't compile"


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-rs] alamb commented on issue #1198: Broken CI SIMD and wasm checks on master

Posted by GitBox <gi...@apache.org>.
alamb commented on issue #1198:
URL: https://github.com/apache/arrow-rs/issues/1198#issuecomment-1015945674


   Datapoints: 
   
   Works:
   ```
   cargo +nightly-2021-12-08-x86_64-apple-darwin test -p arrow --features=simd
   cargo +nightly-2022-01-14-x86_64-apple-darwin test -p arrow --features=simd
   cargo +nightly-2022-01-15-x86_64-apple-darwin test -p arrow --features=simd
   cargo +nightly-2022-01-16-x86_64-apple-darwin test -p arrow --features=simd
   cargo +nightly-2022-01-17-x86_64-apple-darwin test -p arrow --features=simd
   ```
   
   Doesn't work:
   ```
   cargo +nightly test -p arrow --features=simd
   ```
   
   (aka I think it was the nightly version that was released today -- `2022-01-18`)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-rs] jorgecarleitao commented on issue #1198: Broken CI SIMD and wasm checks on master

Posted by GitBox <gi...@apache.org>.
jorgecarleitao commented on issue #1198:
URL: https://github.com/apache/arrow-rs/issues/1198#issuecomment-1015577728


   We are observing the same on arrow2. This seems to be upstream :(


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-rs] alamb commented on issue #1198: Broken CI SIMD and wasm checks on master

Posted by GitBox <gi...@apache.org>.
alamb commented on issue #1198:
URL: https://github.com/apache/arrow-rs/issues/1198#issuecomment-1015461773


   Reverting #1189  did not appear to fix the issue. Perhaps another crate accidentally released a breaking change


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-rs] alamb closed issue #1198: Broken CI SIMD and wasm checks on master: unknown feature `llvm_asm`

Posted by GitBox <gi...@apache.org>.
alamb closed issue #1198:
URL: https://github.com/apache/arrow-rs/issues/1198


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-rs] alamb commented on issue #1198: Broken CI SIMD and wasm checks on master

Posted by GitBox <gi...@apache.org>.
alamb commented on issue #1198:
URL: https://github.com/apache/arrow-rs/issues/1198#issuecomment-1015935322


   I am pretty confident that this is an issue in `packed_simd` -- in the sense that the library depends on some feature in rust nightly which has since been removed. Here is a PR that should fix it:
   
   https://github.com/rust-lang/packed_simd/pull/341
   
   In theory if we can get the maintainers to release an updated version this will be fixed for us


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-rs] tustvold commented on issue #1198: Broken CI SIMD and wasm checks on master: unknown feature `llvm_asm`

Posted by GitBox <gi...@apache.org>.
tustvold commented on issue #1198:
URL: https://github.com/apache/arrow-rs/issues/1198#issuecomment-1030413000


   I think this can be closed now


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-rs] alamb commented on issue #1198: Broken CI SIMD and wasm checks on master

Posted by GitBox <gi...@apache.org>.
alamb commented on issue #1198:
URL: https://github.com/apache/arrow-rs/issues/1198#issuecomment-1015872696


   I plan to look into this more carefully tomorrow morning (US eastern time)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org