xref: /aosp_15_r20/external/OpenCL-CTS/test_conformance/atomics/procs.h (revision 6467f958c7de8070b317fc65bcb0f6472e388d82)
1 //
2 // Copyright (c) 2017 The Khronos Group Inc.
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //    http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16 #include "harness/errorHelpers.h"
17 #include "harness/kernelHelpers.h"
18 #include "harness/typeWrappers.h"
19 
20 extern int create_program_and_kernel(const char *source,
21                                      const char *kernel_name,
22                                      cl_program *program_ret,
23                                      cl_kernel *kernel_ret);
24 
25 extern int test_atomic_add(cl_device_id deviceID, cl_context context,
26                            cl_command_queue queue, int num_elements);
27 extern int test_atomic_sub(cl_device_id deviceID, cl_context context,
28                            cl_command_queue queue, int num_elements);
29 extern int test_atomic_xchg(cl_device_id deviceID, cl_context context,
30                             cl_command_queue queue, int num_elements);
31 extern int test_atomic_min(cl_device_id deviceID, cl_context context,
32                            cl_command_queue queue, int num_elements);
33 extern int test_atomic_max(cl_device_id deviceID, cl_context context,
34                            cl_command_queue queue, int num_elements);
35 extern int test_atomic_inc(cl_device_id deviceID, cl_context context,
36                            cl_command_queue queue, int num_elements);
37 extern int test_atomic_dec(cl_device_id deviceID, cl_context context,
38                            cl_command_queue queue, int num_elements);
39 extern int test_atomic_cmpxchg(cl_device_id deviceID, cl_context context,
40                                cl_command_queue queue, int num_elements);
41 extern int test_atomic_and(cl_device_id deviceID, cl_context context,
42                            cl_command_queue queue, int num_elements);
43 extern int test_atomic_or(cl_device_id deviceID, cl_context context,
44                           cl_command_queue queue, int num_elements);
45 extern int test_atomic_xor(cl_device_id deviceID, cl_context context,
46                            cl_command_queue queue, int num_elements);
47 
48 extern int test_atomic_add_index(cl_device_id deviceID, cl_context context,
49                                  cl_command_queue queue, int num_elements);
50 extern int test_atomic_add_index_bin(cl_device_id deviceID, cl_context context,
51                                      cl_command_queue queue, int num_elements);
52