Closed
Description
First, is this project still active and relevant? Or is rust taking a different direction with SIMD?
second:
#[inline(always)]
#[target_feature = "+sse"]
pub fn _mm_sqrt_ps(a: f32x4) -> f32x4 {
unsafe { sqrtps(a) }
}
I assume this exposes a function with the usual intel intrinsic name and signature, then the sqrtps
is some built in llvm function name? Which somehow is exposed via the target_feature
attribute?
Assuming this is still active and relevant I could contribute, just need to know where/how to look up the llvm function names.
Metadata
Metadata
Assignees
Labels
No labels