1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2024 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
#include "../imf.h"
#pragma OPENCL FP_CONTRACT OFF
static __constant union {
unsigned int w;
float f;
int i;
} __sexp_ha_Shifter = {0x4ac000feu};
static __constant union {
unsigned int w;
float f;
int i;
} __sexp_ha_L2E = {0x3FB8AA3Bu};
// log(2) high, low
static __constant union {
unsigned int w;
float f;
int i;
} __sexp_ha_L2H = {0x3f317218u};
static __constant union {
unsigned int w;
float f;
int i;
} __sexp_ha_L2L = {0xb102E308u};
static __constant union {
unsigned int w;
float f;
int i;
} __sexp_ha_c5 = {0x3c08ba8bu};
static __constant union {
unsigned int w;
float f;
int i;
} __sexp_ha_c4 = {0x3d2aec4eu};
static __constant union {
unsigned int w;
float f;
int i;
} __sexp_ha_c3 = {0x3e2aaa9cu};
static __constant union {
unsigned int w;
float f;
int i;
} __sexp_ha_c2 = {0x3effffe8u};
static __constant union {
unsigned int w;
float f;
int i;
} __sexp_ha_c1 = {0x3f800000u};
__attribute__((always_inline)) inline int
__ocl_svml_internal_sexp_ha(float *a, float *r) {
int nRet = 0;
float x = *a;
union {
unsigned int w;
float f;
int i;
} S, Th, Tlr, Th2, xin, xa, res;
float N, R, poly;
int index_mask;
S.f = SPIRV_OCL_BUILTIN(fma, _f32_f32_f32, )(x, __sexp_ha_L2E.f,
__sexp_ha_Shifter.f);
N = S.f - __sexp_ha_Shifter.f;
R = SPIRV_OCL_BUILTIN(fma, _f32_f32_f32, )((-N), __sexp_ha_L2H.f, x);
R = SPIRV_OCL_BUILTIN(fma, _f32_f32_f32, )((-N), __sexp_ha_L2L.f, R);
// set exponent in place
Th.w = S.w << 22;
// index_mask is based on last bit of S.w
index_mask = 0 - (S.w & 1);
// set Th mantissa
Th.w ^= (index_mask & 0x7504F3u);
// set Tl/Th value
Tlr.w = index_mask & 0x329302AEu;
// polynomial
poly =
SPIRV_OCL_BUILTIN(fma, _f32_f32_f32, )(R, __sexp_ha_c5.f, __sexp_ha_c4.f);
poly = SPIRV_OCL_BUILTIN(fma, _f32_f32_f32, )(R, poly, __sexp_ha_c3.f);
poly = SPIRV_OCL_BUILTIN(fma, _f32_f32_f32, )(R, poly, __sexp_ha_c2.f);
poly = SPIRV_OCL_BUILTIN(fma, _f32_f32_f32, )(R, poly, __sexp_ha_c1.f);
poly = SPIRV_OCL_BUILTIN(fma, _f32_f32_f32, )(R, poly, Tlr.f);
xin.f = x;
xa.w = xin.w & 0x7fffffffu;
// redirect special cases
if (xa.w > 0x42AEAC4Fu)
goto EXPF_SPECIAL;
res.f = SPIRV_OCL_BUILTIN(fma, _f32_f32_f32, )(poly, Th.f, Th.f);
*r = res.f;
return nRet;
EXPF_SPECIAL:
if (xa.w > 0x432EAC4Fu) {
if (xa.w > 0x7f800000u) { // NaN?
*r = x + x;
return nRet;
}
if (x < 0) {
*r = 0.0f;
nRet = 4;
return nRet; // underflow to 0
}
// overflow
res.w = 0x7f800000;
*r = res.f;
nRet = 3;
return nRet;
}
S.w += 0xfe;
Th2.w = (S.w >> 2) & 0xff;
S.w -= (Th2.w << 1);
Th2.w <<= 23; // second exponent scale
Th.w = S.w << 22;
// set Th mantissa
Th.w ^= (index_mask & 0x7504F3u);
res.f = SPIRV_OCL_BUILTIN(fma, _f32_f32_f32, )(poly, Th.f, Th.f);
res.f *= Th2.f;
*r = res.f;
return nRet;
}
float __ocl_svml_expf_ha(float x) {
float r;
__ocl_svml_internal_sexp_ha(&x, &r);
return r;
}
|