Skip to content

Commit

Permalink
kram - fix simd
Browse files Browse the repository at this point in the history
  • Loading branch information
alecazam committed Sep 19, 2024
1 parent b995d93 commit 440eb53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libkram/kram/float4a.h
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ inline float4 max(const float4& lhs, const float4& rhs)
// do 4 of these at once
inline float4 recip(const float4& vv)
{
return floar4(1.0f/vv.reg); // _mm_rcphp_ps(vv.reg));
return float4(1.0f/vv.reg); // _mm_rcphp_ps(vv.reg));
}
inline float4 rsqrt(const float4& vv)
{
Expand Down

0 comments on commit 440eb53

Please sign in to comment.