[Piglit] [PATCH 2/2] cl: Add tests for additional atomic functions

Aaron Watry awatry at gmail.com
Tue Sep 9 15:11:57 PDT 2014


Signed-off-by: Aaron Watry <awatry at gmail.com>
---
 .../execute/builtin/atomic/atomic_and-local.cl     | 70 ++++++++++++++++
 .../execute/builtin/atomic/atomic_cmpxchg-local.cl | 81 ++++++++++++++++++
 .../execute/builtin/atomic/atomic_min-local.cl     | 81 ++++++++++++++++++
 .../execute/builtin/atomic/atomic_or-local.cl      | 70 ++++++++++++++++
 .../execute/builtin/atomic/atomic_xchg-local.cl    | 97 ++++++++++++++++++++++
 .../execute/builtin/atomic/atomic_xor-local.cl     | 71 ++++++++++++++++
 6 files changed, 470 insertions(+)
 create mode 100644 tests/cl/program/execute/builtin/atomic/atomic_and-local.cl
 create mode 100644 tests/cl/program/execute/builtin/atomic/atomic_cmpxchg-local.cl
 create mode 100644 tests/cl/program/execute/builtin/atomic/atomic_min-local.cl
 create mode 100644 tests/cl/program/execute/builtin/atomic/atomic_or-local.cl
 create mode 100644 tests/cl/program/execute/builtin/atomic/atomic_xchg-local.cl
 create mode 100644 tests/cl/program/execute/builtin/atomic/atomic_xor-local.cl

diff --git a/tests/cl/program/execute/builtin/atomic/atomic_and-local.cl b/tests/cl/program/execute/builtin/atomic/atomic_and-local.cl
new file mode 100644
index 0000000..dc5f835
--- /dev/null
+++ b/tests/cl/program/execute/builtin/atomic/atomic_and-local.cl
@@ -0,0 +1,70 @@
+/*!
+[config]
+name: atomic_and local
+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] -4 4
+arg_in:  1 buffer int[1] NULL
+arg_in:  2 int           -4
+arg_in:  3 int           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[2] 4 4
+arg_in:  1 buffer uint[1] NULL
+arg_in:  2 uint           4
+arg_in:  3 uint           5
+
+[test]
+name: threads
+kernel_name: threads_int
+dimensions: 1
+global_size: 8 0 0
+local_size:  8 0 0
+arg_out: 0 buffer int[1] 0
+arg_in:  1 buffer int[1] NULL
+
+[test]
+name: threads
+kernel_name: threads_uint
+dimensions: 1
+global_size: 8 0 0
+local_size:  8 0 0
+arg_out: 0 buffer uint[1] 0
+arg_in:  1 buffer uint[1] NULL
+
+!*/
+
+#define SIMPLE_TEST(TYPE) \
+kernel void simple_##TYPE(global TYPE *out, local TYPE *mem, TYPE initial, TYPE value) { \
+	*mem = initial; \
+	TYPE a = atomic_and(mem, value); \
+	out[0] = a; \
+	out[1] = *mem; \
+}
+
+#define THREADS_TEST(TYPE) \
+kernel void threads_##TYPE(global TYPE *out, local TYPE *mem) { \
+	*mem = 7; \
+	barrier(CLK_LOCAL_MEM_FENCE); \
+	TYPE id = get_local_id(0); \
+	atomic_and(mem, id); \
+	barrier(CLK_LOCAL_MEM_FENCE); \
+	*out = *mem; \
+}
+
+SIMPLE_TEST(int)
+SIMPLE_TEST(uint)
+
+THREADS_TEST(int)
+THREADS_TEST(uint)
diff --git a/tests/cl/program/execute/builtin/atomic/atomic_cmpxchg-local.cl b/tests/cl/program/execute/builtin/atomic/atomic_cmpxchg-local.cl
new file mode 100644
index 0000000..4519b9f
--- /dev/null
+++ b/tests/cl/program/execute/builtin/atomic/atomic_cmpxchg-local.cl
@@ -0,0 +1,81 @@
+/*!
+[config]
+name: atomic_cmpxchg local
+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[4] -4 5 -4 -4
+arg_in:  1 buffer int[2] NULL
+arg_in:  2 buffer int[2] -4 -4
+arg_in:  3 buffer int[2] -4 3
+arg_in:  4 buffer int[2]  5 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[4] 4 5 4 4
+arg_in:  1 buffer uint[2] NULL
+arg_in:  2 buffer uint[2] 4 4
+arg_in:  3 buffer uint[2] 4 3
+arg_in:  4 buffer uint[2] 5 5
+
+[test]
+name: threads
+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:  1 buffer int[1] NULL
+
+[test]
+name: threads
+kernel_name: threads_uint
+dimensions: 1
+global_size: 8 0 0
+local_size:  8 0 0
+arg_out: 0 buffer uint[1] 8
+arg_in:  1 buffer uint[1] NULL
+
+!*/
+
+#define SIMPLE_TEST(TYPE) \
+kernel void simple_##TYPE(global TYPE *out, local TYPE *mem, global TYPE *initial, global TYPE *compare, global TYPE *value) { \
+	mem[0] = initial[0]; \
+	mem[1] = initial[1]; \
+	TYPE a = atomic_cmpxchg(mem, compare[0], value[0]); \
+	out[0] = a; \
+	out[1] = *mem; \
+	a = atomic_cmpxchg(mem+1, compare[1], value[1]); \
+	out[2] = a; \
+	out[3] = mem[1]; \
+}
+
+#define THREADS_TEST(TYPE) \
+kernel void threads_##TYPE(global TYPE *out, local TYPE *mem) { \
+	int i; \
+	*mem = 0; \
+	barrier(CLK_LOCAL_MEM_FENCE); \
+	TYPE id = get_local_id(0); \
+	for(i = 0; i < get_local_size(0); i++){ \
+		if (i == id){ \
+			atomic_cmpxchg(mem, id, id+1); \
+		} \
+		barrier(CLK_LOCAL_MEM_FENCE); \
+	} \
+	*out = *mem; \
+}
+
+SIMPLE_TEST(int)
+SIMPLE_TEST(uint)
+
+THREADS_TEST(int)
+THREADS_TEST(uint)
diff --git a/tests/cl/program/execute/builtin/atomic/atomic_min-local.cl b/tests/cl/program/execute/builtin/atomic/atomic_min-local.cl
new file mode 100644
index 0000000..2d0a536
--- /dev/null
+++ b/tests/cl/program/execute/builtin/atomic/atomic_min-local.cl
@@ -0,0 +1,81 @@
+/*!
+[config]
+name: atomic_min local
+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 -2
+arg_in:  1 buffer int[1] NULL
+arg_in:  2 int           1
+arg_in:  3 int           -2
+
+[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] 3 2
+arg_in:  1 buffer uint[1] NULL
+arg_in:  2 uint           3
+arg_in:  3 uint           2
+
+[test]
+name: simple uint 2
+kernel_name: simple_uint
+dimensions: 1
+global_size: 1 0 0
+local_size:  1 0 0
+arg_out: 0 buffer uint[2] 4294967295 3
+arg_in:  1 buffer uint[1] NULL
+arg_in:  2 uint           4294967295
+arg_in:  3 uint           3
+
+
+[test]
+name: threads
+kernel_name: threads_int
+dimensions: 1
+global_size: 8 0 0
+local_size:  8 0 0
+arg_out: 0 buffer int[1] 0
+arg_in:  1 buffer int[1] NULL
+
+[test]
+name: threads
+kernel_name: threads_uint
+dimensions: 1
+global_size: 8 0 0
+local_size:  8 0 0
+arg_out: 0 buffer uint[1] 0
+arg_in:  1 buffer uint[1] NULL
+
+!*/
+
+#define SIMPLE_TEST(TYPE) \
+kernel void simple_##TYPE(global TYPE *out, local TYPE *mem, TYPE initial, TYPE other) { \
+	*mem = initial; \
+	TYPE a = atomic_min(mem, other); \
+	out[0] = a; \
+	out[1] = *mem; \
+}
+
+#define THREADS_TEST(TYPE) \
+kernel void threads_##TYPE(global TYPE *out, local TYPE *mem) { \
+	*mem = 8; \
+	barrier(CLK_LOCAL_MEM_FENCE); \
+	atomic_min(mem, get_global_id(0)); \
+	barrier(CLK_LOCAL_MEM_FENCE); \
+	*out = *mem; \
+}
+
+SIMPLE_TEST(int)
+SIMPLE_TEST(uint)
+
+THREADS_TEST(int)
+THREADS_TEST(uint)
diff --git a/tests/cl/program/execute/builtin/atomic/atomic_or-local.cl b/tests/cl/program/execute/builtin/atomic/atomic_or-local.cl
new file mode 100644
index 0000000..c46a289
--- /dev/null
+++ b/tests/cl/program/execute/builtin/atomic/atomic_or-local.cl
@@ -0,0 +1,70 @@
+/*!
+[config]
+name: atomic_or local
+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] -4 -3
+arg_in:  1 buffer int[1] NULL
+arg_in:  2 int           -4
+arg_in:  3 int           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[2] 4 5
+arg_in:  1 buffer uint[1] NULL
+arg_in:  2 uint           4
+arg_in:  3 uint           5
+
+[test]
+name: threads
+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:  1 buffer int[1] NULL
+
+[test]
+name: threads
+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:  1 buffer uint[1] NULL
+
+!*/
+
+#define SIMPLE_TEST(TYPE) \
+kernel void simple_##TYPE(global TYPE *out, local TYPE *mem, TYPE initial, TYPE value) { \
+	*mem = initial; \
+	TYPE a = atomic_or(mem, value); \
+	out[0] = a; \
+	out[1] = *mem; \
+}
+
+#define THREADS_TEST(TYPE) \
+kernel void threads_##TYPE(global TYPE *out, local TYPE *mem) { \
+	*mem = 0; \
+	barrier(CLK_LOCAL_MEM_FENCE); \
+	TYPE id = get_local_id(0); \
+	atomic_or(mem, id); \
+	barrier(CLK_LOCAL_MEM_FENCE); \
+	*out = *mem; \
+}
+
+SIMPLE_TEST(int)
+SIMPLE_TEST(uint)
+
+THREADS_TEST(int)
+THREADS_TEST(uint)
diff --git a/tests/cl/program/execute/builtin/atomic/atomic_xchg-local.cl b/tests/cl/program/execute/builtin/atomic/atomic_xchg-local.cl
new file mode 100644
index 0000000..d751f4a
--- /dev/null
+++ b/tests/cl/program/execute/builtin/atomic/atomic_xchg-local.cl
@@ -0,0 +1,97 @@
+/*!
+[config]
+name: atomic_xchg local
+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] -4 5
+arg_in:  1 buffer int[1] NULL
+arg_in:  2 int           -4
+arg_in:  3 int           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[2] 4 5
+arg_in:  1 buffer uint[1] NULL
+arg_in:  2 uint           4
+arg_in:  3 uint           5
+
+[test]
+name: simple float
+kernel_name: simple_float
+dimensions: 1
+global_size: 1 0 0
+local_size:  1 0 0
+arg_out: 0 buffer float[2] 4.0 5.0
+arg_in:  1 buffer float[1] NULL
+arg_in:  2 float           4.0
+arg_in:  3 float           5.0
+
+[test]
+name: threads
+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:  1 buffer int[1] NULL
+
+[test]
+name: threads
+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:  1 buffer uint[1] NULL
+
+[test]
+name: threads
+kernel_name: threads_float
+dimensions: 1
+global_size: 8 0 0
+local_size:  8 0 0
+arg_out: 0 buffer float[1] 7.0
+arg_in:  1 buffer float[1] NULL
+
+!*/
+
+#define SIMPLE_TEST(TYPE) \
+kernel void simple_##TYPE(global TYPE *out, local TYPE *mem, TYPE initial, TYPE value) { \
+	*mem = initial; \
+	TYPE a = atomic_xchg(mem, value); \
+	out[0] = a; \
+	out[1] = *mem; \
+}
+
+#define THREADS_TEST(TYPE) \
+kernel void threads_##TYPE(global TYPE *out, local TYPE *mem) { \
+	int i; \
+	*mem = 0; \
+	barrier(CLK_LOCAL_MEM_FENCE); \
+	TYPE id = get_local_id(0); \
+	for(i = 0; i < get_local_size(0); i++){ \
+		if (i == id){ \
+			atomic_xchg(mem, (TYPE)id); \
+		} \
+		barrier(CLK_LOCAL_MEM_FENCE); \
+	} \
+	*out = *mem; \
+}
+
+SIMPLE_TEST(int)
+SIMPLE_TEST(uint)
+SIMPLE_TEST(float)
+
+THREADS_TEST(int)
+THREADS_TEST(uint)
+THREADS_TEST(float)
diff --git a/tests/cl/program/execute/builtin/atomic/atomic_xor-local.cl b/tests/cl/program/execute/builtin/atomic/atomic_xor-local.cl
new file mode 100644
index 0000000..dcf0377
--- /dev/null
+++ b/tests/cl/program/execute/builtin/atomic/atomic_xor-local.cl
@@ -0,0 +1,71 @@
+/*!
+[config]
+name: atomic_xor local
+clc_version_min: 11
+
+[test]
+name: simple int
+kernel_name: simple_int
+dimensions: 1
+global_size: 1 0 0
+local_size:  1 0 0
+#-4 = 1...11111100, 5 = 0...00000101, -4^5 = 11111001
+arg_out: 0 buffer int[2] -4 0xfffffff9
+arg_in:  1 buffer int[1] NULL
+arg_in:  2 int           -4
+arg_in:  3 int           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[2] 4 1
+arg_in:  1 buffer uint[1] NULL
+arg_in:  2 uint           4
+arg_in:  3 uint           5
+
+[test]
+name: threads
+kernel_name: threads_int
+dimensions: 1
+global_size: 8 0 0
+local_size:  8 0 0
+arg_out: 0 buffer int[1] 0
+arg_in:  1 buffer int[1] NULL
+
+[test]
+name: threads
+kernel_name: threads_uint
+dimensions: 1
+global_size: 8 0 0
+local_size:  8 0 0
+arg_out: 0 buffer uint[1] 0
+arg_in:  1 buffer uint[1] NULL
+
+!*/
+
+#define SIMPLE_TEST(TYPE) \
+kernel void simple_##TYPE(global TYPE *out, local TYPE *mem, TYPE initial, TYPE value) { \
+	*mem = initial; \
+	TYPE a = atomic_xor(mem, value); \
+	out[0] = a; \
+	out[1] = *mem; \
+}
+
+#define THREADS_TEST(TYPE) \
+kernel void threads_##TYPE(global TYPE *out, local TYPE *mem) { \
+	*mem = 0; \
+	barrier(CLK_LOCAL_MEM_FENCE); \
+	TYPE id = get_local_id(0); \
+	atomic_xor(mem, id); \
+	barrier(CLK_LOCAL_MEM_FENCE); \
+	*out = *mem; \
+}
+
+SIMPLE_TEST(int)
+SIMPLE_TEST(uint)
+
+THREADS_TEST(int)
+THREADS_TEST(uint)
-- 
1.9.1



More information about the Piglit mailing list