// // Copyright (c) 2017 The Khronos Group Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #include "harness/compat.h" #include #include #include #include #include "procs.h" const char *wg_reduce_max_kernel_code_int = "__kernel void test_wg_reduce_max_int(global int *input, global int *output)\n" "{\n" " int tid = get_global_id(0);\n" "\n" " int result = work_group_reduce_max(input[tid]);\n" " output[tid] = result;\n" "}\n"; const char *wg_reduce_max_kernel_code_uint = "__kernel void test_wg_reduce_max_uint(global uint *input, global uint *output)\n" "{\n" " int tid = get_global_id(0);\n" "\n" " uint result = work_group_reduce_max(input[tid]);\n" " output[tid] = result;\n" "}\n"; const char *wg_reduce_max_kernel_code_long = "__kernel void test_wg_reduce_max_long(global long *input, global long *output)\n" "{\n" " int tid = get_global_id(0);\n" "\n" " long result = work_group_reduce_max(input[tid]);\n" " output[tid] = result;\n" "}\n"; const char *wg_reduce_max_kernel_code_ulong = "__kernel void test_wg_reduce_max_ulong(global ulong *input, global ulong *output)\n" "{\n" " int tid = get_global_id(0);\n" "\n" " ulong result = work_group_reduce_max(input[tid]);\n" " output[tid] = result;\n" "}\n"; static int verify_wg_reduce_max_int(int *inptr, int *outptr, size_t n, size_t wg_size) { size_t i, j; for (i=0; i wg_size ? wg_size : (n-i)); j++) max = (max > inptr[i+j]) ? max : inptr[i+j]; for (j=0; j<((n-i) > wg_size ? wg_size : (n-i)); j++) { if ( max != outptr[i+j] ) { log_info("work_group_reduce_max int: Error at %u: expected = %d, got = %d\n", i+j, max, outptr[i+j]); return -1; } } } return 0; } static int verify_wg_reduce_max_uint(unsigned int *inptr, unsigned int *outptr, size_t n, size_t wg_size) { size_t i, j; for (i=0; i wg_size ? wg_size : (n-i)); j++) max = (max > inptr[i+j]) ? max : inptr[i+j]; for (j=0; j<((n-i) > wg_size ? wg_size : (n-i)); j++) { if ( max != outptr[i+j] ) { log_info("work_group_reduce_max uint: Error at %u: expected = %d, got = %d\n", i+j, max, outptr[i+j]); return -1; } } } return 0; } static int verify_wg_reduce_max_long(cl_long *inptr, cl_long *outptr, size_t n, size_t wg_size) { size_t i, j; for (i=0; i wg_size ? wg_size : (n-i)); j++) max = (max > inptr[i+j]) ? max : inptr[i+j]; for (j=0; j<((n-i) > wg_size ? wg_size : (n-i)); j++) { if ( max != outptr[i+j] ) { log_info("work_group_reduce_max long: Error at %u: expected = %lld, got = %lld\n", i+j, max, outptr[i+j]); return -1; } } } return 0; } static int verify_wg_reduce_max_ulong(cl_ulong *inptr, cl_ulong *outptr, size_t n, size_t wg_size) { size_t i, j; for (i=0; i wg_size ? wg_size : (n-i)); j++) max = (max > inptr[i+j]) ? max : inptr[i+j]; for (j=0; j<((n-i) > wg_size ? wg_size : (n-i)); j++) { if ( max != outptr[i+j] ) { log_info("work_group_reduce_max ulong: Error at %u: expected = %llu, got = %llu\n", i+j, max, outptr[i+j]); return -1; } } } return 0; } int test_work_group_reduce_max_int(cl_device_id device, cl_context context, cl_command_queue queue, int n_elems) { cl_mem streams[2]; cl_int *input_ptr[1], *p; cl_int *output_ptr; cl_program program; cl_kernel kernel; void *values[2]; size_t threads[1]; size_t wg_size[1]; size_t wg_sizes_per_dimension[3]; size_t num_elements; int err; int i; MTdata d; err = create_single_kernel_helper(context, &program, &kernel, 1, &wg_reduce_max_kernel_code_int, "test_wg_reduce_max_int"); if (err) return -1; err = clGetKernelWorkGroupInfo( kernel, device, CL_KERNEL_WORK_GROUP_SIZE, sizeof(size_t), wg_size, NULL); if (err) return -1; err = clGetDeviceInfo(device, CL_DEVICE_MAX_WORK_ITEM_SIZES, sizeof(size_t) * 3, wg_sizes_per_dimension, NULL); if (err) return -1; if(wg_sizes_per_dimension[0] < wg_size[0]) { wg_size[0] = wg_sizes_per_dimension[0]; } num_elements = n_elems; input_ptr[0] = (cl_int*)malloc(sizeof(cl_int) * num_elements); output_ptr = (cl_int*)malloc(sizeof(cl_int) * num_elements); streams[0] = clCreateBuffer(context, CL_MEM_READ_WRITE, sizeof(cl_int) * num_elements, NULL, NULL); if (!streams[0]) { log_error("clCreateBuffer failed\n"); return -1; } streams[1] = clCreateBuffer(context, CL_MEM_READ_WRITE, sizeof(cl_int) * num_elements, NULL, NULL); if (!streams[1]) { log_error("clCreateBuffer failed\n"); return -1; } p = input_ptr[0]; d = init_genrand( gRandomSeed ); for (i=0; i