1 // 2 // Copyright (c) 2017, 2021 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/testHarness.h" 17 #include "harness/kernelHelpers.h" 18 #include "harness/errorHelpers.h" 19 #include "harness/typeWrappers.h" 20 #include "harness/conversions.h" 21 #include "harness/mt19937.h" 22 23 extern int create_program_and_kernel(const char *source, const char *kernel_name, cl_program *program_ret, cl_kernel *kernel_ret); 24 25 extern int test_work_group_all(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 26 extern int test_work_group_any(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 27 extern int test_work_group_broadcast_1D(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 28 extern int test_work_group_broadcast_2D(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 29 extern int test_work_group_broadcast_3D(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 30 extern int test_work_group_reduce_add(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 31 extern int test_work_group_reduce_min(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 32 extern int test_work_group_reduce_max(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 33 34 extern int test_work_group_scan_exclusive_add(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 35 extern int test_work_group_scan_exclusive_min(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 36 extern int test_work_group_scan_exclusive_max(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 37 extern int test_work_group_scan_inclusive_add(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 38 extern int test_work_group_scan_inclusive_min(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 39 extern int test_work_group_scan_inclusive_max(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 40 41 extern int test_work_group_suggested_local_size_1D(cl_device_id device, 42 cl_context context, 43 cl_command_queue queue, 44 int n_elems); 45 extern int test_work_group_suggested_local_size_2D(cl_device_id device, 46 cl_context context, 47 cl_command_queue queue, 48 int n_elems); 49 extern int test_work_group_suggested_local_size_3D(cl_device_id device, 50 cl_context context, 51 cl_command_queue queue, 52 int n_elems); 53