summaryrefslogtreecommitdiff
path: root/kernels/compiler_math.cl
diff options
context:
space:
mode:
authorHomer Hsing <homer.xing@intel.com>2013-05-16 10:54:16 +0800
committerZhigang Gong <zhigang.gong@linux.intel.com>2013-05-17 14:18:04 +0800
commit4c4700fadcb80f94e680cfd6de617aae47ca41e8 (patch)
tree591d875f9b228aa74f3a11f2102ca7199bd04bbd /kernels/compiler_math.cl
parent54e1fece08d482bb38b99134f8d6156f786a5338 (diff)
Test new math built-in functions
Use random test data. Test 1000 times. Signed-off-by: Homer Hsing <homer.xing@intel.com> Reviewed-by: Feng, Boqun <boqun.feng@intel.com>
Diffstat (limited to 'kernels/compiler_math.cl')
-rw-r--r--kernels/compiler_math.cl46
1 files changed, 36 insertions, 10 deletions
diff --git a/kernels/compiler_math.cl b/kernels/compiler_math.cl
index 06598404..695fc2ce 100644
--- a/kernels/compiler_math.cl
+++ b/kernels/compiler_math.cl
@@ -1,14 +1,40 @@
__kernel void compiler_math(__global float *dst, __global float *src) {
- const float x = src[get_global_id(0)];
- switch (get_global_id(0)) {
- case 0: dst[get_global_id(0)] = native_cos(x); break;
- case 1: dst[get_global_id(0)] = native_sin(x); break;
- case 2: dst[get_global_id(0)] = native_log2(x); break;
- case 3: dst[get_global_id(0)] = native_sqrt(x); break;
- case 4: dst[get_global_id(0)] = native_rsqrt(x); break;
- case 5: dst[get_global_id(0)] = native_recip(x); break;
- case 6: dst[get_global_id(0)] = native_tan(x); break;
- default: dst[get_global_id(0)] = 1.f; break;
+ int i = get_global_id(0);
+ const float x = src[i];
+ switch (i) {
+ case 0: dst[i] = cos(x); break;
+ case 1: dst[i] = sin(x); break;
+ case 2: dst[i] = log2(x); break;
+ case 3: dst[i] = sqrt(x); break;
+ case 4: dst[i] = rsqrt(x); break;
+ case 5: dst[i] = native_recip(x); break;
+ case 6: dst[i] = tan(x); break;
+ case 7: dst[i] = cbrt(x); break;
+ case 8: dst[i] = ceil(x); break;
+ case 9: dst[i] = cospi(x); break;
+ case 10: dst[i] = exp2(x); break;
+ case 11: dst[i] = exp10(x); break;
+ case 12: dst[i] = expm1(x); break;
+ case 13: dst[i] = log1p(x); break;
+ case 14: dst[i] = logb(x); break;
+ case 15: dst[i] = sinpi(x); break;
+ case 16: dst[i] = tanpi(x); break;
+ case 17: dst[i] = rint(x); break;
+ case 18: dst[i] = sinh(x); break;
+ case 19: dst[i] = cosh(x); break;
+ case 20: dst[i] = tanh(x); break;
+ case 21: dst[i] = asinh(x); break;
+ case 22: dst[i] = acosh(x); break;
+ case 23: dst[i] = atanh(x); break;
+ case 24: dst[i] = asin(x); break;
+ case 25: dst[i] = acos(x); break;
+ case 26: dst[i] = atan(x); break;
+ case 27: dst[i] = asinpi(x); break;
+ case 28: dst[i] = acospi(x); break;
+ case 29: dst[i] = atanpi(x); break;
+ case 30: dst[i] = erf(x); break;
+ case 31: dst[i] = nan((uint)x); break;
+ default: dst[i] = 1.f; break;
};
}