mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-17 16:31:02 +00:00
half_exp2: Implement using exp2
Passes CTS on carrizo v2: Use full precision implementation Reviewer: Jeroen Ketema <j.ketema@xs4all.nl> Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu> llvm-svn: 322891
This commit is contained in:
parent
caa9000b1c
commit
3c0e19b61a
@ -72,6 +72,7 @@
|
||||
#include <clc/math/frexp.h>
|
||||
#include <clc/math/half_cos.h>
|
||||
#include <clc/math/half_exp.h>
|
||||
#include <clc/math/half_exp2.h>
|
||||
#include <clc/math/half_rsqrt.h>
|
||||
#include <clc/math/half_sqrt.h>
|
||||
#include <clc/math/hypot.h>
|
||||
|
9
libclc/generic/include/clc/math/half_exp2.h
Normal file
9
libclc/generic/include/clc/math/half_exp2.h
Normal file
@ -0,0 +1,9 @@
|
||||
#define __CLC_BODY <clc/math/unary_decl.inc>
|
||||
#define __CLC_FUNCTION half_exp2
|
||||
#define __FLOAT_ONLY
|
||||
|
||||
#include <clc/math/gentype.inc>
|
||||
|
||||
#undef __FLOAT_ONLY
|
||||
#undef __CLC_BODY
|
||||
#undef __CLC_FUNCTION
|
@ -106,6 +106,7 @@ math/fract.cl
|
||||
math/frexp.cl
|
||||
math/half_cos.cl
|
||||
math/half_exp.cl
|
||||
math/half_exp2.cl
|
||||
math/half_rsqrt.cl
|
||||
math/half_sqrt.cl
|
||||
math/hypot.cl
|
||||
|
6
libclc/generic/lib/math/half_exp2.cl
Normal file
6
libclc/generic/lib/math/half_exp2.cl
Normal file
@ -0,0 +1,6 @@
|
||||
#include <clc/clc.h>
|
||||
|
||||
#define __CLC_FUNC exp2
|
||||
#define __CLC_BODY <half_unary.inc>
|
||||
#define __FLOAT_ONLY
|
||||
#include <clc/math/gentype.inc>
|
Loading…
x
Reference in New Issue
Block a user