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
Aarch64 simd intrinsics are stable as of Rust 1.59 (although due to a documentation bug are falsely still marked as unstable: rust-lang/stdarch#1268). This means we can now add proper SIMD acceleration for those platforms.
I don't currently have an aarch64 system to test on, so I won't attempt to implement myself. But if anyone would like to take a crack at it, it mostly just consists of making a new impl of the ByteChunk trait in src/byte_chunk.rs for the appropriate core::arch::aarch64 type. Although there may be some complexities with CPU features, etc.
The text was updated successfully, but these errors were encountered:
Aarch64 simd intrinsics are stable as of Rust 1.59 (although due to a documentation bug are falsely still marked as unstable: rust-lang/stdarch#1268). This means we can now add proper SIMD acceleration for those platforms.
I don't currently have an aarch64 system to test on, so I won't attempt to implement myself. But if anyone would like to take a crack at it, it mostly just consists of making a new impl of the
ByteChunk
trait insrc/byte_chunk.rs
for the appropriatecore::arch::aarch64
type. Although there may be some complexities with CPU features, etc.The text was updated successfully, but these errors were encountered: