native_sqrt: Switch implementation to llvm intrinsic
authorJan Vesely <jan.vesely@rutgers.edu>
Fri, 10 Nov 2017 22:16:39 +0000 (22:16 +0000)
committerJan Vesely <jan.vesely@rutgers.edu>
Fri, 10 Nov 2017 22:16:39 +0000 (22:16 +0000)
Reviewer: Jeroen Ketema
Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu>
llvm-svn: 317940

libclc/generic/include/clc/math/native_sqrt.h
libclc/generic/lib/SOURCES
libclc/generic/lib/math/native_sqrt.cl [new file with mode: 0644]

index a9525fc..cdfc976 100644 (file)
@@ -1 +1,9 @@
-#define native_sqrt sqrt
+#define __CLC_BODY <clc/math/unary_decl.inc>
+#define __CLC_FUNCTION native_sqrt
+#define __FLOAT_ONLY
+
+#include <clc/math/gentype.inc>
+
+#undef __FLOAT_ONLY
+#undef __CLC_BODY
+#undef __CLC_FUNCTION
index d29390d..a230d38 100644 (file)
@@ -126,6 +126,7 @@ math/native_log.cl
 math/native_log10.cl
 math/native_log2.cl
 math/native_sin.cl
+math/native_sqrt.cl
 math/tables.cl
 math/clc_nextafter.cl
 math/nextafter.cl
diff --git a/libclc/generic/lib/math/native_sqrt.cl b/libclc/generic/lib/math/native_sqrt.cl
new file mode 100644 (file)
index 0000000..92a2e1b
--- /dev/null
@@ -0,0 +1,7 @@
+#include <clc/clc.h>
+
+#define __CLC_NATIVE_INTRINSIC sqrt
+
+#define __CLC_BODY <native_unary_intrinsic.inc>
+#define __FLOAT_ONLY
+#include <clc/math/gentype.inc>