// // 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" static int test_stepf_double(cl_device_id device, cl_context context, cl_command_queue queue, int n_elems); static const char *step_kernel_code = "__kernel void test_step(__global float *srcA, __global float *srcB, __global float *dst)\n" "{\n" " int tid = get_global_id(0);\n" "\n" " dst[tid] = step(srcA[tid], srcB[tid]);\n" "}\n"; static const char *step2_kernel_code = "__kernel void test_step2(__global float *srcA, __global float2 *srcB, __global float2 *dst)\n" "{\n" " int tid = get_global_id(0);\n" "\n" " dst[tid] = step(srcA[tid], srcB[tid]);\n" "}\n"; static const char *step4_kernel_code = "__kernel void test_step4(__global float *srcA, __global float4 *srcB, __global float4 *dst)\n" "{\n" " int tid = get_global_id(0);\n" "\n" " dst[tid] = step(srcA[tid], srcB[tid]);\n" "}\n"; static const char *step8_kernel_code = "__kernel void test_step8(__global float *srcA, __global float8 *srcB, __global float8 *dst)\n" "{\n" " int tid = get_global_id(0);\n" "\n" " dst[tid] = step(srcA[tid], srcB[tid]);\n" "}\n"; static const char *step16_kernel_code = "__kernel void test_step16(__global float *srcA, __global float16 *srcB, __global float16 *dst)\n" "{\n" " int tid = get_global_id(0);\n" "\n" " dst[tid] = step(srcA[tid], srcB[tid]);\n" "}\n"; static const char *step3_kernel_code = "__kernel void test_step3(__global float *srcA, __global float *srcB, __global float *dst)\n" "{\n" " int tid = get_global_id(0);\n" "\n" " vstore3(step(srcA[tid], vload3(tid,srcB)) ,tid,dst);\n" "}\n"; static int verify_step( cl_float *inptrA, cl_float *inptrB, cl_float *outptr, int n, int veclen) { float r; int i, j; for (i=0; i *%a vs %a\n", ii, j, inptrA[ii], inptrB[i], r, outptr[i] ); return -1; } } } return 0; } int test_stepf(cl_device_id device, cl_context context, cl_command_queue queue, int n_elems) { cl_mem streams[3]; cl_float *input_ptr[2], *output_ptr, *p; cl_program program[kTotalVecCount]; cl_kernel kernel[kTotalVecCount]; size_t threads[1]; int num_elements; int err; int i; MTdata d; num_elements = n_elems * 16; input_ptr[0] = (cl_float*)malloc(sizeof(cl_float) * num_elements); input_ptr[1] = (cl_float*)malloc(sizeof(cl_float) * num_elements); output_ptr = (cl_float*)malloc(sizeof(cl_float) * num_elements); streams[0] = clCreateBuffer(context, CL_MEM_READ_WRITE, sizeof(cl_float) * num_elements, NULL, NULL); if (!streams[0]) { log_error("clCreateBuffer failed\n"); return -1; } streams[1] = clCreateBuffer(context, CL_MEM_READ_WRITE, sizeof(cl_float) * num_elements, NULL, NULL); if (!streams[1]) { log_error("clCreateBuffer failed\n"); return -1; } streams[2] = clCreateBuffer(context, CL_MEM_READ_WRITE, sizeof(cl_float) * num_elements, NULL, NULL); if (!streams[2]) { log_error("clCreateBuffer failed\n"); return -1; } p = input_ptr[0]; d = init_genrand( gRandomSeed ); for (i=0; i *%a vs %a\n", ii, j, inptrA[ii], inptrB[i], r, outptr[i] ); return -1; } } } return 0; } int test_stepf_double(cl_device_id device, cl_context context, cl_command_queue queue, int n_elems) { cl_mem streams[3]; cl_double *input_ptr[2], *output_ptr, *p; cl_program program[kTotalVecCount]; cl_kernel kernel[kTotalVecCount]; size_t threads[1]; int num_elements; int err; int i; MTdata d; num_elements = n_elems * 16; input_ptr[0] = (cl_double*)malloc(sizeof(cl_double) * num_elements); input_ptr[1] = (cl_double*)malloc(sizeof(cl_double) * num_elements); output_ptr = (cl_double*)malloc(sizeof(cl_double) * num_elements); streams[0] = clCreateBuffer(context, CL_MEM_READ_WRITE, sizeof(cl_double) * num_elements, NULL, NULL); if (!streams[0]) { log_error("clCreateBuffer failed\n"); return -1; } streams[1] = clCreateBuffer(context, CL_MEM_READ_WRITE, sizeof(cl_double) * num_elements, NULL, NULL); if (!streams[1]) { log_error("clCreateBuffer failed\n"); return -1; } streams[2] = clCreateBuffer(context, CL_MEM_READ_WRITE, sizeof(cl_double) * num_elements, NULL, NULL); if (!streams[2]) { log_error("clCreateBuffer failed\n"); return -1; } p = input_ptr[0]; d = init_genrand( gRandomSeed ); for (i=0; i