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:
Jan Vesely 2018-02-01 03:00:35 +00:00
parent dece62a772
commit 3b8b4eb64d
4 changed files with 15 additions and 0 deletions

View File

@ -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>

View 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

View File

@ -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

View 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>