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
{{ message }}
This repository was archived by the owner on Sep 16, 2026. It is now read-only.
218 | platform_intrinsics,
| ^^^^^^^^^^^^^^^^^^^ feature has been removed
|
= note: SIMD intrinsics use the regular intrinsics ABI now
-->
#![feature(portable_simd)]use std::simd::f32x4;fnmain(){let a = f32x4::splat(10.0);let b = f32x4::from_array([1.0,2.0,3.0,4.0]);println!("{:?}", a + b);}
218 | platform_intrinsics,
| ^^^^^^^^^^^^^^^^^^^ feature has been removed
|
= note: SIMD intrinsics use the regular intrinsics ABI now
-->
I expected to see this happen: explanation
Instead, this happened: explanation
Meta
rustc --version --verbose:crate version in Cargo.toml:Backtrace