[libclc] r322898 - half_tan: Implement using tan
Jan Vesely via cfe-commits
cfe-commits at lists.llvm.org
Thu Jan 18 13:12:04 PST 2018
Author: jvesely
Date: Thu Jan 18 13:12:04 2018
New Revision: 322898
URL: http://llvm.org/viewvc/llvm-project?rev=322898&view=rev
Log:
half_tan: Implement using tan
v2: Use full precision implementation
Reviewer: Jeroen Ketema <j.ketema at xs4all.nl>
Signed-off-by: Jan Vesely <jan.vesely at rutgers.edu>
Added:
libclc/trunk/generic/include/clc/math/half_tan.h
libclc/trunk/generic/lib/math/half_tan.cl
Modified:
libclc/trunk/generic/include/clc/clc.h
libclc/trunk/generic/lib/SOURCES
Modified: libclc/trunk/generic/include/clc/clc.h
URL: http://llvm.org/viewvc/llvm-project/libclc/trunk/generic/include/clc/clc.h?rev=322898&r1=322897&r2=322898&view=diff
==============================================================================
--- libclc/trunk/generic/include/clc/clc.h (original)
+++ libclc/trunk/generic/include/clc/clc.h Thu Jan 18 13:12:04 2018
@@ -81,6 +81,7 @@
#include <clc/math/half_rsqrt.h>
#include <clc/math/half_sin.h>
#include <clc/math/half_sqrt.h>
+#include <clc/math/half_tan.h>
#include <clc/math/hypot.h>
#include <clc/math/ilogb.h>
#include <clc/math/ldexp.h>
Added: libclc/trunk/generic/include/clc/math/half_tan.h
URL: http://llvm.org/viewvc/llvm-project/libclc/trunk/generic/include/clc/math/half_tan.h?rev=322898&view=auto
==============================================================================
--- libclc/trunk/generic/include/clc/math/half_tan.h (added)
+++ libclc/trunk/generic/include/clc/math/half_tan.h Thu Jan 18 13:12:04 2018
@@ -0,0 +1,9 @@
+#define __CLC_BODY <clc/math/unary_decl.inc>
+#define __CLC_FUNCTION half_tan
+#define __FLOAT_ONLY
+
+#include <clc/math/gentype.inc>
+
+#undef __FLOAT_ONLY
+#undef __CLC_BODY
+#undef __CLC_FUNCTION
Modified: libclc/trunk/generic/lib/SOURCES
URL: http://llvm.org/viewvc/llvm-project/libclc/trunk/generic/lib/SOURCES?rev=322898&r1=322897&r2=322898&view=diff
==============================================================================
--- libclc/trunk/generic/lib/SOURCES (original)
+++ libclc/trunk/generic/lib/SOURCES Thu Jan 18 13:12:04 2018
@@ -115,6 +115,7 @@ math/half_recip.cl
math/half_rsqrt.cl
math/half_sin.cl
math/half_sqrt.cl
+math/half_tan.cl
math/hypot.cl
math/ilogb.cl
math/clc_ldexp.cl
Added: libclc/trunk/generic/lib/math/half_tan.cl
URL: http://llvm.org/viewvc/llvm-project/libclc/trunk/generic/lib/math/half_tan.cl?rev=322898&view=auto
==============================================================================
--- libclc/trunk/generic/lib/math/half_tan.cl (added)
+++ libclc/trunk/generic/lib/math/half_tan.cl Thu Jan 18 13:12:04 2018
@@ -0,0 +1,6 @@
+#include <clc/clc.h>
+
+#define __CLC_FUNC tan
+#define __CLC_BODY <half_unary.inc>
+#define __FLOAT_ONLY
+#include <clc/math/gentype.inc>
More information about the cfe-commits
mailing list