summaryrefslogtreecommitdiff
path: root/tests/cl/program/execute/builtin/atomic/atomic_int32_or-global-return.cl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cl/program/execute/builtin/atomic/atomic_int32_or-global-return.cl')
-rw-r--r--tests/cl/program/execute/builtin/atomic/atomic_int32_or-global-return.cl65
1 files changed, 65 insertions, 0 deletions
diff --git a/tests/cl/program/execute/builtin/atomic/atomic_int32_or-global-return.cl b/tests/cl/program/execute/builtin/atomic/atomic_int32_or-global-return.cl
new file mode 100644
index 000000000..bfc19babd
--- /dev/null
+++ b/tests/cl/program/execute/builtin/atomic/atomic_int32_or-global-return.cl
@@ -0,0 +1,65 @@
+/*!
+[config]
+name: atom_int32_or global, with usage of return variable
+clc_version_min: 10
+require_device_extensions: cl_khr_global_int32_extended_atomics
+
+[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] -3 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] 14 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 3 2 6 4 3 0 6 2 7 2 14 8 15 8
+arg_in: 0 buffer int[18] 0 0 7 0 2 0 4 0 0 0 2 0 2 0 8 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 int[18] 7 0 7 7 3 2 6 4 3 0 6 2 7 2 14 8 15 8
+arg_in: 0 buffer int[18] 0 0 7 0 2 0 4 0 0 0 2 0 2 0 8 0 8 0
+
+!*/
+
+#define SIMPLE_TEST(TYPE) \
+kernel void simple_##TYPE(global TYPE *mem, TYPE value) { \
+ mem[1] = atom_or(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 = atom_or(mem, id); \
+ TYPE ret2 = atom_or(&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)