我有一个缓冲区创建设备端,我想初始化此缓冲区内的值。 OpenCL 1.2为此类操作提供了函数clEnqueueFillBuffer(http://www.khronos.org/registry/cl/sdk/1.2/docs/man/xhtml/clEnqueueFillBuffer.html)。
调用此函数无法正确初始化我的内存,但未返回任何错误代码以表明函数失败。
以下是我使用的代码:
int initGridSize = 64*64*64; // initial 3D volume size
cl_uint initVoxelValue = 255; // initial value of each voxel in the volume
// create the buffer on the device
cl_mem buff = clCreateBuffer(context, CL_MEM_READ_ONLY, initGridSize*sizeof(cl_uint), NULL, &err);
if(err < 0) {
perror("Couldn't create a buffer object");
exit(1);
}
// Fill the buffer with the initial value
err = clEnqueueFillBuffer(queue, buff, &initVoxelValue, sizeof(cl_uint), 0, initGridSize*sizeof(cl_uint), 0, NULL, NULL);
if(err != CL_SUCCESS) {
perror("Couldn't fill a buffer object");
exit(1);
}
clFinish(queue);
// create a host side buffer and read the device side buffer into the host buffer
cl_uint *grid = new cl_uint [ initGridSize ];
err = clEnqueueReadBuffer(queue, buff, CL_TRUE, 0, initGridSize*sizeof(cl_int), &grid[0], 0, NULL, NULL);
if (err != CL_SUCCESS)
{
perror("Couldn't read a buffer object");
exit(1);
}
// print the first 11 values in the buffer
cl_uint *g = grid;
for( int i=0; i<11; i++, g++ )
{
printf("Voxel %i, %u\n", i, *g );
}
delete [] grid;
输出是这样的:
Voxel 0, 0
Voxel 1, 0
Voxel 2, 0
Voxel 3, 0
Voxel 4, 0
Voxel 5, 0
Voxel 6, 0
Voxel 7, 0
Voxel 8, 0
Voxel 9, 0
Voxel 10, 0
编写一个内核来填充缓冲区会很简单,但理想情况下我想让它工作。
任何人都可以看到我出错的地方,或者这是一个驱动程序错误?
答案 0 :(得分:0)
您已使用 CL_MEM_READ_ONLY 标志设置缓冲区。将其设置为 CL_MEM_READ_WRITE ,以便您可以在其中写入值。