そのため、カーネルを呼び出すと、奇妙なエラーが発生し続けます。記載されている最大カーネル ワーク グループ サイズは 1 ですが、私のデバイス (私の Macbook) のワーク グループ サイズは明らかにそれより大きくなっています。カーネルがコードを 1 つのワーク グループに制限している原因として、どのようなことが考えられますか? これが私のカーネルの1つです:
__kernel
void termination_kernel(const int Elements,
__global float* c_I,
__global float* c_Ihat,
__global float* c_rI,
__local float* s_a)
{
const int bdim = 128;
int n = get_global_id(0);
const int tx = get_local_id(0); // thread index in thread-block (0-indexed)
const int bx = get_group_id(0); // block index (0-indexed)
const int gx = get_num_groups(0);
// is thread in range for the addition
float d = 0.f;
while(n < Elements){
d += pow(c_I[n] - c_Ihat[n], 2);
n += gx * bdim;
}
// assume bx power of 2
int alive = bdim / 2;
s_a[tx] = d;
barrier(CLK_LOCAL_MEM_FENCE);
while(alive > 1){
if(tx < alive)
s_a[tx] += s_a[tx + alive];
alive /= 2;
barrier(CLK_LOCAL_MEM_FENCE);
}
if(tx == 0)
c_rI[bx] = s_a[0] + s_a[1];
}
返されるエラーは
OpenCL Error (via pfn_notify): [CL_INVALID_WORK_GROUP_SIZE] : OpenCL Error : clEnqueueNDRangeKernel
failed: total work group size (128) is greater than the device can support (1)
OpenCL Error: 'clEnqueueNDRangeKernel(queue, kernel_N, dim, NULL, global_N, local_N, 0, NULL, NULL)'
制限がデバイスにあると言っているのは知っていますが、デバッグはそれを示しています
CL_DEVICE_MAX_WORK_GROUP_SIZE = 1024
と
CL_KERNEL_WORK_GROUP_SIZE = 1
カーネル構築は、によって呼び出されます
char *KernelSource_T = readSource("Includes/termination_kernel.cl");
cl_program program_T = clCreateProgramWithSource(context, 1, (const char **) &KernelSource_T, NULL, &err);
clBuildProgram(program_T, 1, &device, flags, NULL, NULL);
cl_kernel kernel_T = clCreateKernel(program_T, "termination_kernel", &err);
呼び出し関数を含めますが、それが関連しているかどうかはわかりません。私の直感では、制限を強制しているのはカーネル コード内の何かであるということです。何か案は?助けてくれてありがとう!