Luna::Simd::sqrt_f4
float4 sqrt_f4(float4 a)
Computes the square root of packed single-precision (32-bit) floating-point elements in a
, and stores the results in dst
.
` dst.x = SQRT(a.x) dst.y = SQRT(a.y) dst.z = SQRT(a.z) dst.w = SQRT(a.w) ``