【发布时间】:2015-11-23 00:51:12
【问题描述】:
我正在尝试在 OpenCL 中运行我的第一个代码。为了创建子缓冲区,我从“OpenCL in Action”一书中获得了以下代码。该代码给了我创建子缓冲区失败的错误。我的电脑有一个 Intel CPU 和 NVIDIA GPU。但是,当我在另一台具有 AMD CPU 和 GPU 的计算机上运行代码时,它工作正常。知道为什么这段代码不能在非 AMD 平台上运行吗? 这是错误:
这是代码:
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#ifdef MAC
#include <OpenCL/cl.h>
#else
#include <CL/cl.h>
#endif
/* Find a GPU or CPU associated with the first available platform */
cl_device_id create_device() {
cl_platform_id platform;
cl_device_id dev;
int err;
/* Identify a platform */
err = clGetPlatformIDs(1, &platform, NULL);
if (err < 0) {
perror("Couldn't identify a platform");
exit(1);
}
/* Access a device */
err = clGetDeviceIDs(platform, CL_DEVICE_TYPE_GPU, 1, &dev, NULL);
if (err == CL_DEVICE_NOT_FOUND) {
err = clGetDeviceIDs(platform, CL_DEVICE_TYPE_CPU, 1, &dev, NULL);
}
if (err < 0) {
perror("Couldn't access any devices");
exit(1);
}
return dev;
}
int main() {
/* Host/device data structures */
cl_device_id device;
cl_context context;
cl_int err;
/* Data and buffers */
float main_data[100] = {};
cl_mem main_buffer, sub_buffer;
void *main_buffer_mem = NULL, *sub_buffer_mem = NULL;
size_t main_buffer_size, sub_buffer_size;
cl_buffer_region region;
/* Create device and context */
device = create_device();
context = clCreateContext(NULL, 1, &device, NULL, NULL, &err);
if (err < 0) {
perror("Couldn't create a context");
exit(1);
}
/* Create a buffer to hold 100 floating-point values */
main_buffer = clCreateBuffer(context, CL_MEM_READ_ONLY |
CL_MEM_COPY_HOST_PTR, sizeof(main_data), main_data, &err);
if (err < 0) {
perror("Couldn't create a buffer");
exit(1);
}
/* Create a sub-buffer */
/* Modified on 2/12/2014 to account for unaligned memory error */
region.origin = 0 * sizeof(float);
region.size = 20 * sizeof(float);
sub_buffer = clCreateSubBuffer(main_buffer, CL_MEM_READ_ONLY |
CL_MEM_COPY_HOST_PTR, CL_BUFFER_CREATE_TYPE_REGION, ®ion, &err);
if (err < 0) {
perror("Couldn't create a sub-buffer.");
exit(1);
}
/* Obtain size information about the buffers */
clGetMemObjectInfo(main_buffer, CL_MEM_SIZE,
sizeof(main_buffer_size), &main_buffer_size, NULL);
clGetMemObjectInfo(sub_buffer, CL_MEM_SIZE,
sizeof(sub_buffer_size), &sub_buffer_size, NULL);
printf("Main buffer size: %lu\n", main_buffer_size);
printf("Sub-buffer size: %lu\n", sub_buffer_size);
/* Obtain the host pointers */
clGetMemObjectInfo(main_buffer, CL_MEM_HOST_PTR, sizeof(main_buffer_mem),
&main_buffer_mem, NULL);
clGetMemObjectInfo(sub_buffer, CL_MEM_HOST_PTR, sizeof(sub_buffer_mem),
&sub_buffer_mem, NULL);
printf("Main buffer memory address: %p\n", main_buffer_mem);
printf("Sub-buffer memory address: %p\n", sub_buffer_mem);
/* Print the address of the main data */
printf("Main array address: %p\n", main_data);
/* Deallocate resources */
clReleaseMemObject(main_buffer);
clReleaseMemObject(sub_buffer);
clReleaseContext(context);
return 0;
}
【问题讨论】:
标签: opencl