1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
/* run_kernel - a generic launcher for a kernel without inputs and outputs
Copyright (c) 2012 Pekka Jääskeläinen / TUT
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <CL/opencl.h>
#include "poclu.h"
#ifdef _MSC_VER
# include "vccompat.hpp"
#endif
/**
* The test kernels are assumed to:
*
* 1) called 'test_kernel'
* 2) no inputs or outputs, only work item id printfs to verify the correct
* workgroup transformations
* 3) executable with any local and global dimensions and sizes
*
* Usage:
*
* ./run_kernel somekernel.cl 2 2 3 4
*
* Where the first integer is the number of work groups to execute and the
* rest are the local dimensions.
*/
int
main (int argc, char **argv)
{
FILE *source_file;
char *source;
int source_size;
cl_context context;
size_t cb;
cl_device_id *devices;
cl_command_queue cmd_queue;
cl_program program;
cl_int err;
cl_kernel kernel;
size_t global_work_size[3];
size_t local_work_size[3];
char kernel_path[2048];
snprintf (kernel_path, 2048, "%s/%s", SRCDIR, argv[1]);
source_file = fopen(kernel_path, "r");
assert(source_file != NULL && "Kernel .cl not found.");
fseek (source_file, 0, SEEK_END);
source_size = ftell (source_file);
fseek (source_file, 0, SEEK_SET);
source = (char *) malloc (source_size + 1);
assert (source != NULL);
fread (source, source_size, 1, source_file);
source[source_size] = '\0';
fclose(source_file);
local_work_size[0] = atoi(argv[3]);
local_work_size[1] = atoi(argv[4]);
local_work_size[2] = atoi(argv[5]);
global_work_size[0] = local_work_size[0] * atoi(argv[2]);
global_work_size[1] = local_work_size[1];
global_work_size[2] = local_work_size[2];
context = poclu_create_any_context();
if (context == (cl_context)0)
return -1;
clGetContextInfo(context, CL_CONTEXT_DEVICES, 0, NULL, &cb);
devices = (cl_device_id *) malloc(cb);
clGetContextInfo(context, CL_CONTEXT_DEVICES, cb, devices, NULL);
cmd_queue = clCreateCommandQueue(context, devices[0], 0, NULL);
if (cmd_queue == (cl_command_queue)0)
{
clReleaseContext(context);
free(devices);
return -1;
}
free(devices);
program = clCreateProgramWithSource(context,
1, (const char**)&source, NULL, NULL);
if (program == (cl_program)0)
{
clReleaseCommandQueue(cmd_queue);
clReleaseContext(context);
return -1;
}
err = clBuildProgram(program, 0, NULL, NULL, NULL, NULL);
if (err != CL_SUCCESS)
{
clReleaseProgram(program);
clReleaseCommandQueue(cmd_queue);
clReleaseContext(context);
return -1;
}
kernel = clCreateKernel(program, "test_kernel", NULL);
if (kernel == (cl_kernel)0)
{
clReleaseProgram(program);
clReleaseCommandQueue(cmd_queue);
clReleaseContext(context);
return -1;
}
err = clEnqueueNDRangeKernel(cmd_queue, kernel, 3, NULL,
global_work_size, local_work_size,
0, NULL, NULL);
if(err != CL_SUCCESS)
{
clReleaseKernel(kernel);
clReleaseProgram(program);
clReleaseCommandQueue(cmd_queue);
clReleaseContext(context);
return -1;
}
clFinish(cmd_queue);
clReleaseKernel(kernel);
clReleaseProgram(program);
clReleaseCommandQueue(cmd_queue);
clReleaseContext(context);
return 0;
}
|