native_sin: Switch implementation to llvm intrinsic

Reviewer: Jeroen Ketema
Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu>
llvm-svn: 317939
This commit is contained in:
Jan Vesely 2017-11-10 22:16:36 +00:00
parent 0750b7df51
commit 1f34c851e0
3 changed files with 17 additions and 1 deletions

View File

@ -1 +1,9 @@
#define native_sin sin
#define __CLC_BODY <clc/math/unary_decl.inc>
#define __CLC_FUNCTION native_sin
#define __FLOAT_ONLY
#include <clc/math/gentype.inc>
#undef __FLOAT_ONLY
#undef __CLC_BODY
#undef __CLC_FUNCTION

View File

@ -125,6 +125,7 @@ math/native_exp2.cl
math/native_log.cl
math/native_log10.cl
math/native_log2.cl
math/native_sin.cl
math/tables.cl
math/clc_nextafter.cl
math/nextafter.cl

View File

@ -0,0 +1,7 @@
#include <clc/clc.h>
#define __CLC_NATIVE_INTRINSIC sin
#define __CLC_BODY <native_unary_intrinsic.inc>
#define __FLOAT_ONLY
#include <clc/math/gentype.inc>