[libclc] r322897 - half_sin: Implement using sin
Jan Vesely via cfe-commits
cfe-commits at lists.llvm.org
Thu Jan 18 13:12:01 PST 2018
Author: jvesely
Date: Thu Jan 18 13:12:01 2018
New Revision: 322897
URL: http://llvm.org/viewvc/llvm-project?rev=322897&view=rev
Log:
half_sin: Implement using sin
Passes CTS on carrizo
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_sin.h
libclc/trunk/generic/lib/math/half_sin.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=322897&r1=322896&r2=322897&view=diff
==============================================================================
--- libclc/trunk/generic/include/clc/clc.h (original)
+++ libclc/trunk/generic/include/clc/clc.h Thu Jan 18 13:12:01 2018
@@ -79,6 +79,7 @@
#include <clc/math/half_log2.h>
#include <clc/math/half_recip.h>
#include <clc/math/half_rsqrt.h>
+#include <clc/math/half_sin.h>
#include <clc/math/half_sqrt.h>
#include <clc/math/hypot.h>
#include <clc/math/ilogb.h>
Added: libclc/trunk/generic/include/clc/math/half_sin.h
URL: http://llvm.org/viewvc/llvm-project/libclc/trunk/generic/include/clc/math/half_sin.h?rev=322897&view=auto
==============================================================================
--- libclc/trunk/generic/include/clc/math/half_sin.h (added)
+++ libclc/trunk/generic/include/clc/math/half_sin.h Thu Jan 18 13:12:01 2018
@@ -0,0 +1,9 @@
+#define __CLC_BODY <clc/math/unary_decl.inc>
+#define __CLC_FUNCTION half_sin
+#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=322897&r1=322896&r2=322897&view=diff
==============================================================================
--- libclc/trunk/generic/lib/SOURCES (original)
+++ libclc/trunk/generic/lib/SOURCES Thu Jan 18 13:12:01 2018
@@ -113,6 +113,7 @@ math/half_log10.cl
math/half_log2.cl
math/half_recip.cl
math/half_rsqrt.cl
+math/half_sin.cl
math/half_sqrt.cl
math/hypot.cl
math/ilogb.cl
Added: libclc/trunk/generic/lib/math/half_sin.cl
URL: http://llvm.org/viewvc/llvm-project/libclc/trunk/generic/lib/math/half_sin.cl?rev=322897&view=auto
==============================================================================
--- libclc/trunk/generic/lib/math/half_sin.cl (added)
+++ libclc/trunk/generic/lib/math/half_sin.cl Thu Jan 18 13:12:01 2018
@@ -0,0 +1,6 @@
+#include <clc/clc.h>
+
+#define __CLC_FUNC sin
+#define __CLC_BODY <half_unary.inc>
+#define __FLOAT_ONLY
+#include <clc/math/gentype.inc>
More information about the cfe-commits
mailing list