fixed opencl benchmarks

This commit is contained in:
Blaise Tine
2020-03-09 09:55:16 -04:00
parent 857bb54f3f
commit 717a75ade8
64 changed files with 235418 additions and 1511751 deletions

View File

@@ -153,7 +153,7 @@ int main(int argc, char **argv) {
}
cl_event kernel_completion;
size_t global_work_size[1] = {NUM_DATA/2,NUM_DATA/2};
size_t global_work_size[] = {NUM_DATA/2,NUM_DATA/2};
printf("attempting to enqueue kernel\n");
fflush(stdout);
CL_CHECK(clEnqueueNDRangeKernel(queue, kernel, 1, NULL, global_work_size,