mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-04 08:16:49 +00:00
half_powr: Implement using powr
v2: Use full precision implementation Reviewer: Jeroen Ketema <j.ketema@xs4all.nl> Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu> llvm-svn: 323942
This commit is contained in:
parent
dece62a772
commit
3b8b4eb64d
@ -78,6 +78,7 @@
|
||||
#include <clc/math/half_log.h>
|
||||
#include <clc/math/half_log10.h>
|
||||
#include <clc/math/half_log2.h>
|
||||
#include <clc/math/half_powr.h>
|
||||
#include <clc/math/half_recip.h>
|
||||
#include <clc/math/half_rsqrt.h>
|
||||
#include <clc/math/half_sin.h>
|
||||
|
7
libclc/generic/include/clc/math/half_powr.h
Normal file
7
libclc/generic/include/clc/math/half_powr.h
Normal file
@ -0,0 +1,7 @@
|
||||
#define __CLC_BODY <clc/math/binary_decl_tt.inc>
|
||||
#define __CLC_FUNCTION half_powr
|
||||
|
||||
#include <clc/math/gentype.inc>
|
||||
|
||||
#undef __CLC_BODY
|
||||
#undef __CLC_FUNCTION
|
@ -112,6 +112,7 @@ math/half_exp2.cl
|
||||
math/half_log.cl
|
||||
math/half_log10.cl
|
||||
math/half_log2.cl
|
||||
math/half_powr.cl
|
||||
math/half_recip.cl
|
||||
math/half_rsqrt.cl
|
||||
math/half_sin.cl
|
||||
|
6
libclc/generic/lib/math/half_powr.cl
Normal file
6
libclc/generic/lib/math/half_powr.cl
Normal file
@ -0,0 +1,6 @@
|
||||
#include <clc/clc.h>
|
||||
|
||||
#define __CLC_FUNC powr
|
||||
#define __CLC_BODY <half_binary.inc>
|
||||
#define __FLOAT_ONLY
|
||||
#include <clc/math/gentype.inc>
|
Loading…
x
Reference in New Issue
Block a user