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
Compiling half v2.3.0
error[E0425]: cannot find function `_mm_cvtps_ph` in this scope
--> /root/.cargo/registry/src/index.crates.io-1cd66030c949c28d/half-2.3.0/src/binary16/arch/x86.rs:32:18
|
32 | let retval = _mm_cvtps_ph(vec.assume_init(), _MM_FROUND_TO_NEAREST_INT);
| ^^^^^^^^^^^^
--> /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/../../stdarch/crates/core_arch/src/x86/f16c.rs:33:1
|
= note: similarly named function `_mm_cvtph_ps` defined here
|
help: a function with a similar name exists
|
32 | let retval = _mm_cvtph_ps(vec.assume_init(), _MM_FROUND_TO_NEAREST_INT);
| ~~~~~~~~~~~~
help: consider importing this function
|
1 + use core::arch::x86::_mm_cvtps_ph;
|
error[E0425]: cannot find function `_mm_cvtps_ph` in this scope
--> /root/.cargo/registry/src/index.crates.io-1cd66030c949c28d/half-2.3.0/src/binary16/arch/x86.rs:50:18
|
50 | let retval = _mm_cvtps_ph(vec.assume_init(), _MM_FROUND_TO_NEAREST_INT);
| ^^^^^^^^^^^^
--> /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/../../stdarch/crates/core_arch/src/x86/f16c.rs:33:1
|
= note: similarly named function `_mm_cvtph_ps` defined here
|
help: a function with a similar name exists
|
50 | let retval = _mm_cvtph_ps(vec.assume_init(), _MM_FROUND_TO_NEAREST_INT);
| ~~~~~~~~~~~~
help: consider importing this function
|
1 + use core::arch::x86::_mm_cvtps_ph;
|
For more information about this error, try `rustc --explain E0425`.
Any idea if there is something I can do to fix this or do I need to wait until arrow fixes something on their end ? Or do you think this could be Github CI being slow at updating all of its dependencies ? (I suspect the latter is possible since another workflow seems to build).
Thanks
The text was updated successfully, but these errors were encountered:
This was a build failure on this crate side for i686 targets, that was accidentally dropped from CI. Released version 2.3.1 that fixes the issue and i686 targets are back in CI so it shouldn't happen again.
Hi there,
It seems that the
arrow
crate depends onhalf
.With the version 2.3.0, the CI on my project seems to break: https://github.com/nyx-space/nyx/actions/runs/5370402979/jobs/9742460842 .
Any idea if there is something I can do to fix this or do I need to wait until arrow fixes something on their end ? Or do you think this could be Github CI being slow at updating all of its dependencies ? (I suspect the latter is possible since another workflow seems to build).
Thanks
The text was updated successfully, but these errors were encountered: