diff options
author | Aaron Watry <awatry@gmail.com> | 2014-10-07 12:36:38 -0500 |
---|---|---|
committer | Aaron Watry <awatry@gmail.com> | 2014-10-29 08:44:55 -0500 |
commit | 1af8d789891204e206e9bad9200c6d2e73c27f2b (patch) | |
tree | d274666b86aacd3364a98aa02aca4621f44edf29 | |
parent | 4b34b80aa32dcc20421dfd4d8c32efac1d2f3795 (diff) |
cl: Add atomic_max global tests
Tests both usage of return and no usage of return.
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_max-global-return.cl | 62 | ||||
-rw-r--r-- | tests/cl/program/execute/builtin/atomic/atomic_max-global.cl | 59 |
2 files changed, 121 insertions, 0 deletions
diff --git a/tests/cl/program/execute/builtin/atomic/atomic_max-global-return.cl b/tests/cl/program/execute/builtin/atomic/atomic_max-global-return.cl new file mode 100644 index 000000000..ff82e8997 --- /dev/null +++ b/tests/cl/program/execute/builtin/atomic/atomic_max-global-return.cl @@ -0,0 +1,62 @@ +/*! +[config] +name: atomic_max 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] 1 -5 +arg_in: 0 buffer int[2] -5 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 0 +arg_in: 0 buffer uint[2] 0 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] 7 0 1 1 1 0 2 1 3 2 4 3 5 4 6 5 7 6 +arg_in: 0 buffer int[18] 0 0 1 0 0 0 1 0 2 0 3 0 4 0 5 0 6 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] 7 0 1 1 1 0 2 1 3 2 4 3 5 4 6 5 7 6 +arg_in: 0 buffer uint[18] 0 0 1 0 0 0 1 0 2 0 3 0 4 0 5 0 6 0 + +!*/ + +#define SIMPLE_TEST(TYPE) \ +kernel void simple_##TYPE(global TYPE *mem) { \ + mem[1] = atomic_max(mem, 1); \ +} + +#define THREADS_TEST(TYPE) \ +kernel void threads_##TYPE(global TYPE *mem) { \ + TYPE mul = mem[1]; \ + TYPE id = get_global_id(0); \ + TYPE ret = atomic_max(mem, id); \ + TYPE ret2 = atomic_max(&mem[(id+1)*2], id+ret*mul); \ + 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_max-global.cl b/tests/cl/program/execute/builtin/atomic/atomic_max-global.cl new file mode 100644 index 000000000..e9526ac87 --- /dev/null +++ b/tests/cl/program/execute/builtin/atomic/atomic_max-global.cl @@ -0,0 +1,59 @@ +/*! +[config] +name: atomic_max 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] 1 +arg_in: 0 buffer int[1] -5 + +[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] 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[1] 7 +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] 7 +arg_in: 0 buffer uint[1] 0 + +!*/ + +#define SIMPLE_TEST(TYPE) \ +kernel void simple_##TYPE(global TYPE *mem) { \ + atomic_max(mem, 1); \ +} + +#define THREADS_TEST(TYPE) \ +kernel void threads_##TYPE(global TYPE *mem) { \ + TYPE id = get_global_id(0); \ + atomic_max(mem, id); \ +} + +SIMPLE_TEST(int) +SIMPLE_TEST(uint) + +THREADS_TEST(int) +THREADS_TEST(uint) |