summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Watry <awatry@gmail.com>2014-10-07 15:25:47 -0500
committerAaron Watry <awatry@gmail.com>2014-10-29 08:44:55 -0500
commit373faf328ec9b5af83bc5f790198c5b1365153d7 (patch)
tree58c5096f225cbf0f30fafbe7f37356c46ce90f4a
parent8c076ef2c10991d01eb36142888c14dd07f4c6fb (diff)
cl: Add atomix_xor 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_xor-global-return.cl64
-rw-r--r--tests/cl/program/execute/builtin/atomic/atomic_xor-global.cl61
2 files changed, 125 insertions, 0 deletions
diff --git a/tests/cl/program/execute/builtin/atomic/atomic_xor-global-return.cl b/tests/cl/program/execute/builtin/atomic/atomic_xor-global-return.cl
new file mode 100644
index 000000000..5121b91df
--- /dev/null
+++ b/tests/cl/program/execute/builtin/atomic/atomic_xor-global-return.cl
@@ -0,0 +1,64 @@
+/*!
+[config]
+name: atomic_xor 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] -7 5
+arg_in: 0 buffer int[2] 5 0
+arg_in: 1 int -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[2] 12 6
+arg_in: 0 buffer uint[2] 6 0
+arg_in: 1 uint 10
+
+[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 7 7 6 7 5 7 4 7 3 7 2 7 1 7 0 7
+arg_in: 0 buffer int[18] 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 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 int[18] 7 0 7 7 6 7 5 7 4 7 3 7 2 7 1 7 0 7
+arg_in: 0 buffer int[18] 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0 7 0
+
+!*/
+
+#define SIMPLE_TEST(TYPE) \
+kernel void simple_##TYPE(global TYPE *mem, TYPE value) { \
+ mem[1] = atomic_xor(mem, value); \
+}
+
+#define THREADS_TEST(TYPE) \
+kernel void threads_##TYPE(global TYPE *mem) { \
+ TYPE mul = mem[1]; \
+ TYPE id = get_global_id(0); \
+ TYPE ret = atomic_xor(mem, id); \
+ TYPE ret2 = atomic_xor(&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_xor-global.cl b/tests/cl/program/execute/builtin/atomic/atomic_xor-global.cl
new file mode 100644
index 000000000..3db934432
--- /dev/null
+++ b/tests/cl/program/execute/builtin/atomic/atomic_xor-global.cl
@@ -0,0 +1,61 @@
+/*!
+[config]
+name: atomic_xor 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] -7
+arg_in: 0 buffer int[1] 5
+arg_in: 1 int -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] 12
+arg_in: 0 buffer uint[1] 6
+arg_in: 1 uint 10
+
+[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] -7
+
+[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] 7
+
+!*/
+
+#define SIMPLE_TEST(TYPE) \
+kernel void simple_##TYPE(global TYPE *mem, TYPE value) { \
+ atomic_xor(mem, value); \
+}
+
+#define THREADS_TEST(TYPE) \
+kernel void threads_##TYPE(global TYPE *mem) { \
+ TYPE id = get_global_id(0); \
+ atomic_xor(mem, id); \
+}
+
+SIMPLE_TEST(int)
+SIMPLE_TEST(uint)
+
+THREADS_TEST(int)
+THREADS_TEST(uint)