在OpenCL中获取文件输入?

时间:2015-07-21 21:16:06

标签: c opencl dot-product

我是OpenCL的新手,我很好奇如何读取数据输入以执行简单操作(例如交叉/点积)。

对于一个特定的例子,我已经编译并尝试运行这个简单的示例代码来计算向量中的3D点积:https://github.com/mattscar/opencl_dot_product

但是,我不确定如何格式化代码的输入。在以下代码段中:

/* Create program from file */
program = clCreateProgramWithSource(ctx, 1, 
  (const char**)&program_buffer, &program_size, &err);
 if(err < 0) {
  perror("Couldn't create the program");
  exit(1);
}

clCreateProgramWithSource似乎在上下文ctx上运行,但我不知道如何将上下文分配给我的硬盘驱动器上的文件来读取测试向量数据。我是以正确的方式来做这件事吗?

1 个答案:

答案 0 :(得分:1)

一种解决方法如下:

#include <stdio.h>
#include <stdlib.h>
#ifdef __APPLE__
#include <OpenCL/opencl.h>
#else
#include <CL/cl.h>
#endif

int main() {

    cl_platform_id platform;
    cl_device_id device;
    cl_context context;
    cl_program program;

    FILE* programHandle;
    size_t programSize, kernelSourceSize;
    char *programBuffer, *kernelSource;

    // get first available platform and gpu and create context
    clGetPlatformIDs(1, &platform, NULL);
    clGetDeviceIDs(platform, CL_DEVICE_TYPE_GPU, 1, &device, NULL);
    context = clCreateContext(NULL, 1, &device, NULL, NULL, NULL);

    // get size of kernel source
    programHandle = fopen("kernel.cl", "r");
    fseek(programHandle, 0, SEEK_END);
    programSize = ftell(programHandle);
    rewind(programHandle);

    // read kernel source into buffer
    programBuffer = (char*) malloc(programSize + 1);
    programBuffer[programSize] = '\0';
    fread(programBuffer, sizeof(char), programSize, programHandle);
    fclose(programHandle);

    // create program from buffer
    program = clCreateProgramWithSource(context, 1,
            (const char**) &programBuffer, &programSize, NULL);
    free(programBuffer);

    // read kernel source back in from program to check
    clGetProgramInfo(program, CL_PROGRAM_SOURCE, 0, NULL, &kernelSourceSize);
    kernelSource = (char*) malloc(kernelSourceSize);
    clGetProgramInfo(program, CL_PROGRAM_SOURCE, kernelSourceSize, kernelSource, NULL);
    printf("nKernel source:nn%sn", kernelSource);
    free(kernelSource);

    clReleaseContext(context);
    return 0;

}

http://dhruba.name/2012/08/16/opencl-cookbook-creating-programs-and-reading-kernels-from-a-file/提供

特别是这部分:

 // get size of kernel source
        programHandle = fopen("kernel.cl", "r");
        fseek(programHandle, 0, SEEK_END);
        programSize = ftell(programHandle);
        rewind(programHandle);

        // read kernel source into buffer
        programBuffer = (char*) malloc(programSize + 1);
        programBuffer[programSize] = '\0';
        fread(programBuffer, sizeof(char), programSize, programHandle);
        fclose(programHandle);

        // create program from buffer
        program = clCreateProgramWithSource(context, 1,
                (const char**) &programBuffer, &programSize, NULL);
        free(programBuffer);

你需要知道你正在阅读的内容的大小,所以寻求结束

fseek(programHandle, 0, SEEK_END);

然后获得该职位

programSize = ftell(programHandle);

应该是大小。

然后你倒带以重置文件位置。

rewind(programHandle);

分配足够的内存来存储您必须自己添加的整个程序+空终结符非常重要。

将文件读入已分配的空间,然后将其最后一个索引设置为null。

programBuffer = (char*) malloc(programSize + 1);
programBuffer[programSize] = '\0';

读入您的代码,然后关闭您的文件。

fread(programBuffer, sizeof(char), programSize, programHandle);
fclose(programHandle);

现在你有1行代码,所以那就算了,你知道那一行的大小,所以这就是长度。并指示null表示它已终止。完成。

program = clCreateProgramWithSource(context, 1, (const char**) &programBuffer, &programSize, NULL);
free(programBuffer);

完成后不要忘记释放你的程序缓冲区。