diff options
author | Aaron Watry <awatry@gmail.com> | 2014-10-03 09:27:21 -0500 |
---|---|---|
committer | Aaron Watry <awatry@gmail.com> | 2014-10-29 08:44:55 -0500 |
commit | aa8d35a7a95944caabb11032c9afb22a41ac2fe7 (patch) | |
tree | 3d4af382e4c9fc153639404f6ce7a0485c0fc48e | |
parent | 341352a033eea52645cd14538e0f9cc7ec118f6e (diff) |
cl: Add atomic_dec global tests
Tests both usage and non-usage of return value.
Signed-off-by: Aaron Watry <awatry@gmail.com>
Reviewed-by: Jan Vesely <jan.vesely@rutgers.edu>
-rw-r--r-- | tests/cl/program/execute/builtin/atomic/atomic_dec-global-return.cl | 62 | ||||
-rw-r--r-- | tests/cl/program/execute/builtin/atomic/atomic_dec-global.cl | 58 |
2 files changed, 120 insertions, 0 deletions
diff --git a/tests/cl/program/execute/builtin/atomic/atomic_dec-global-return.cl b/tests/cl/program/execute/builtin/atomic/atomic_dec-global-return.cl new file mode 100644 index 000000000..fc250b80c --- /dev/null +++ b/tests/cl/program/execute/builtin/atomic/atomic_dec-global-return.cl @@ -0,0 +1,62 @@ +/*! +[config] +name: atomic_dec global, with usage of return variable +clc_version_min: 11 + +[test] +name: simple int +kernel_name: simple_int +dimensions: 1 +global_size: 1 0 0 +local_size: 1 0 0 +arg_out: 0 buffer int[2] -5 -4 +arg_in: 0 buffer int[2] -4 0 + +[test] +name: simple uint +kernel_name: simple_uint +dimensions: 1 +global_size: 1 0 0 +local_size: 1 0 0 +arg_out: 0 buffer uint[2] 1 2 +arg_in: 0 buffer uint[2] 2 0 + +[test] +name: threads int +kernel_name: threads_int +dimensions: 1 +global_size: 8 0 0 +local_size: 8 0 0 +arg_out: 0 buffer int[18] -9 0 -1 0 1 2 2 3 3 4 4 5 5 6 6 7 7 8 +arg_in: 0 buffer int[18] -1 0 0 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 + +[test] +name: threads uint +kernel_name: threads_uint +dimensions: 1 +global_size: 8 0 0 +local_size: 8 0 0 +arg_out: 0 buffer uint[18] 0 0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 +arg_in: 0 buffer uint[18] 8 0 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 + +!*/ + +#define SIMPLE_TEST(TYPE) \ +kernel void simple_##TYPE(global TYPE *mem) { \ + mem[1] = atomic_dec(mem); \ +} + +#define THREADS_TEST(TYPE) \ +kernel void threads_##TYPE(global TYPE *mem) { \ + TYPE mul = mem[1]; \ + TYPE id = get_global_id(0); \ + TYPE ret = atomic_dec(mem); \ + TYPE ret2 = atomic_dec(&mem[(id+1)*2]); \ + mem[(id+1)*2+1] = ret2; \ +} + +SIMPLE_TEST(int) +SIMPLE_TEST(uint) + +THREADS_TEST(int) +THREADS_TEST(uint) diff --git a/tests/cl/program/execute/builtin/atomic/atomic_dec-global.cl b/tests/cl/program/execute/builtin/atomic/atomic_dec-global.cl new file mode 100644 index 000000000..c0570d580 --- /dev/null +++ b/tests/cl/program/execute/builtin/atomic/atomic_dec-global.cl @@ -0,0 +1,58 @@ +/*! +[config] +name: atomic_dec global, no usage of return variable +clc_version_min: 11 + +[test] +name: simple int +kernel_name: simple_int +dimensions: 1 +global_size: 1 0 0 +local_size: 1 0 0 +arg_out: 0 buffer int[1] -5 +arg_in: 0 buffer int[1] -4 + +[test] +name: simple uint +kernel_name: simple_uint +dimensions: 1 +global_size: 1 0 0 +local_size: 1 0 0 +arg_out: 0 buffer uint[1] 1 +arg_in: 0 buffer uint[1] 2 + +[test] +name: threads int +kernel_name: threads_int +dimensions: 1 +global_size: 8 0 0 +local_size: 8 0 0 +arg_out: 0 buffer int[1] -8 +arg_in: 0 buffer int[1] 0 + +[test] +name: threads uint +kernel_name: threads_uint +dimensions: 1 +global_size: 8 0 0 +local_size: 8 0 0 +arg_out: 0 buffer uint[1] 1 +arg_in: 0 buffer uint[1] 9 + +!*/ + +#define SIMPLE_TEST(TYPE) \ +kernel void simple_##TYPE(global TYPE *mem) { \ + atomic_dec(mem); \ +} + +#define THREADS_TEST(TYPE) \ +kernel void threads_##TYPE(global TYPE *mem) { \ + atomic_dec(mem); \ +} + +SIMPLE_TEST(int) +SIMPLE_TEST(uint) + +THREADS_TEST(int) +THREADS_TEST(uint) |