summaryrefslogtreecommitdiffstats
path: root/libclc/generic/lib/common/sign.cl
diff options
context:
space:
mode:
Diffstat (limited to 'libclc/generic/lib/common/sign.cl')
-rw-r--r--libclc/generic/lib/common/sign.cl27
1 files changed, 27 insertions, 0 deletions
diff --git a/libclc/generic/lib/common/sign.cl b/libclc/generic/lib/common/sign.cl
new file mode 100644
index 00000000000..070abd55db6
--- /dev/null
+++ b/libclc/generic/lib/common/sign.cl
@@ -0,0 +1,27 @@
+#include <clc/clc.h>
+
+#define SIGN(TYPE, F) \
+_CLC_DEF _CLC_OVERLOAD TYPE sign(TYPE x) { \
+ if (isnan(x)) { \
+ return 0.0F; \
+ } \
+ if (x > 0.0F) { \
+ return 1.0F; \
+ } \
+ if (x < 0.0F) { \
+ return -1.0F; \
+ } \
+ return x; /* -0.0 or +0.0 */ \
+}
+
+SIGN(float, f)
+_CLC_UNARY_VECTORIZE(_CLC_OVERLOAD _CLC_DEF, float, sign, float)
+
+#ifdef cl_khr_fp64
+
+#pragma OPENCL EXTENSION cl_khr_fp64 : enable
+
+SIGN(double, )
+_CLC_UNARY_VECTORIZE(_CLC_OVERLOAD _CLC_DEF, double, sign, double)
+
+#endif
OpenPOWER on IntegriCloud