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
impl<T,constN:usize>Simd<[T;N]>whereSimd<[T;N]>:Mask{/// Writes the lanes of `value` for which `self` is `true` to /// adjacent memory locations at `ptr`.unsafefnwrite_compressed<U>(self,value:Simd<[U;N]>,ptr:*mutU);/// Reads adjacent `U` values at `ptr` into the result's vector /// lanes for which `self` is `true`, using the values of `defaults` /// otherwise.unsafefnread_expanded<U>(self,defaults:Simd<[U;N]>,ptr:*constU) -> Simd<[U;N]>;}
The text was updated successfully, but these errors were encountered:
There is an LLVM patch under review (https://reviews.llvm.org/D59180) that adds portable support for masked compressed loads and masked expand stores via
llvm.masked.compressstore
andllvm.masked.expandload
.We should add two APIs to vector masks:
The text was updated successfully, but these errors were encountered: