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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <CL/opencl.h>
#include "poclu.h"
#ifdef _MSC_VER
# include "vccompat.hpp"
#endif
#ifndef SRCDIR
# define SRCDIR="."
#endif
int call_test(const char *name)
{
size_t global_work_size[1] = { 1 }, local_work_size[1]= { 1 };
size_t srcdir_length, name_length, filename_size;
size_t source_size, source_read;
char const *sources[1];
char *filename = NULL;
char *source = NULL;
FILE *source_file = NULL;
cl_device_id devices[1];
cl_context context = NULL;
cl_command_queue queue = NULL;
cl_program program = NULL;
cl_kernel kernel = NULL;
cl_int result;
int retval = -1;
assert(name);
/* determine file name of kernel source to load */
srcdir_length = strlen(SRCDIR);
name_length = strlen(name);
filename_size = srcdir_length + name_length + 16;
filename = (char *)malloc(filename_size + 1);
if (!filename) {
puts("out of memory");
goto error;
}
snprintf(filename, filename_size, "%s/%s.cl", SRCDIR, name);
/* read source code */
source_file = fopen(filename, "r");
if (!source_file) {
puts("source file not found\n");
goto error;
}
fseek(source_file, 0, SEEK_END);
source_size = ftell(source_file);
fseek(source_file, 0, SEEK_SET);
source = (char *)malloc(source_size + 1);
if (!source) {
puts("out of memory\n");
goto error;
}
source_read = fread(source, 1, source_size, source_file);
if (source_read != source_size) {
puts("error reading from file\n");
goto error;
}
source[source_size] = '\0';
fclose(source_file);
source_file = NULL;
/* setup an OpenCL context and command queue using default device */
context = poclu_create_any_context();
if (!context) {
puts("clCreateContextFromType call failed\n");
goto error;
}
result = clGetContextInfo(context, CL_CONTEXT_DEVICES,
sizeof(cl_device_id), devices, NULL);
if (result != CL_SUCCESS) {
puts("clGetContextInfo call failed\n");
goto error;
}
queue = clCreateCommandQueue(context, devices[0], 0, NULL);
if (!queue) {
puts("clCreateCommandQueue call failed\n");
goto error;
}
/* create and build program */
sources[0] = source;
program = clCreateProgramWithSource(context, 1, sources, NULL, NULL);
if (!program) {
puts("clCreateProgramWithSource call failed\n");
goto error;
}
result = clBuildProgram(program, 0, NULL, NULL, NULL, NULL);
if (result != CL_SUCCESS) {
puts("clBuildProgram call failed\n");
goto error;
}
/* execute the kernel with give name */
kernel = clCreateKernel(program, name, NULL);
if (!kernel) {
puts("clCreateKernel call failed\n");
goto error;
}
result = clEnqueueNDRangeKernel(queue, kernel, 1, NULL,
global_work_size, local_work_size, 0, NULL, NULL);
if (result != CL_SUCCESS) {
puts("clEnqueueNDRangeKernel call failed\n");
goto error;
}
result = clFinish(queue);
if (result == CL_SUCCESS)
retval = 0;
error:
if (kernel) {
clReleaseKernel(kernel);
}
if (program) {
clReleaseProgram(program);
}
if (queue) {
clReleaseCommandQueue(queue);
}
if (context) {
clReleaseContext(context);
}
if (source_file) {
fclose(source_file);
}
if (source) {
free(source);
}
if (filename) {
free(filename);
}
return retval;
}
const char * const all_tests[] = {
"test_sizeof",
"test_as_type",
"test_convert_type",
"test_bitselect",
"test_fabs",
"test_hadd",
"test_rotate",
"test_block",
};
const int num_all_tests = (int)(sizeof(all_tests) / sizeof(all_tests[0]));
int main(int argc, char **argv)
{
int i, retval;
if (argc < 2) {
/* Run all tests */
for (i = 0; i < num_all_tests; ++i) {
printf("Running test #%d %s...\n", i, all_tests[i]);
retval = call_test(all_tests[i]);
if (retval) {
printf("FAIL\n");
return 1;
}
}
} else {
/* Run one test */
printf("Running test %s...\n", argv[1]);
retval = call_test(argv[1]);
if (retval) {
printf("FAIL\n");
return 1;
}
}
printf("OK\n");
return 0;
}
|