Skip to content

Commit

Permalink
Typo on fma.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbikker committed Nov 20, 2024
1 parent 22cfd24 commit 3c4236e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion traverse.cl
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ inline uint __popc( const uint v ) // OpenCL alternative for CUDA's native __bfi

inline float _native_fma( const float a, const float b, const float c )
{
#ifdef _ISNVIDIA
#ifdef ISNVIDIA
float d;
asm volatile("fma.rz.f32 %0, %1, %2, %3;" : "=f"(d) : "f"(a), "f"(b), "f"(c));
return d;
Expand Down

0 comments on commit 3c4236e

Please sign in to comment.