summaryrefslogtreecommitdiff
path: root/src/cuda-sim/cuda-math.h
diff options
context:
space:
mode:
authorTor Aamodt <[email protected]>2018-03-28 14:37:43 -0700
committerTor Aamodt <[email protected]>2018-03-28 14:37:43 -0700
commit635366fe3e9b596318647b9c5bcdd546c522d52a (patch)
treeb64f6bc12df0785271f73ddc805c1e2b05db0f1c /src/cuda-sim/cuda-math.h
parent268614ac4ab6ec8aec2e8e9bcc6357550e4eb608 (diff)
fix compile errors on Ubuntu LTS 16.04
Diffstat (limited to 'src/cuda-sim/cuda-math.h')
-rw-r--r--src/cuda-sim/cuda-math.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cuda-sim/cuda-math.h b/src/cuda-sim/cuda-math.h
index 4721e8a..a3db0df 100644
--- a/src/cuda-sim/cuda-math.h
+++ b/src/cuda-sim/cuda-math.h
@@ -321,7 +321,7 @@ float __internal_accurate_fdividef(float a, float b)
float __saturatef(float a)
{
float b;
- if (isnan(a)) b = 0.0f;
+ if (std::isnan(a)) b = 0.0f;
else if (a >= 1.0f) b = 1.0f;
else if (a <= 0.0f) b = 0.0f;
else b = a;