在 OpenCL 内核中使用 printf 的问题

Problem with using printf in OpenCL kernel

我在 AMD 上使用 OpenCL 2.0。代码非常简单。如果我使用 1 printf,效果很好。但是,如果我添加第二个 printf,那么就会出现歪曲的数据。 我在主机 C++ 中的代码:

cl_int errcode;
// Get available platforms
vector<Platform> platforms;
Platform::get(&platforms);
// Select the default platform and create a context using this platform and the GPU
cl_context_properties cps[3] = {
    CL_CONTEXT_PLATFORM,
    (cl_context_properties)(platforms[0])(),
    0
};
Context context(CL_DEVICE_TYPE_GPU, cps);


vector<Device> devices = context.getInfo<CL_CONTEXT_DEVICES>();

CommandQueue queue = CommandQueue(context, devices[0]);

// Read source file
string name;
name += "CalcN.cl";
std::ifstream sourceFile(name);
std::string sourceCode(
    std::istreambuf_iterator<char>(sourceFile),
    (std::istreambuf_iterator<char>()));
Program::Sources source(1, std::make_pair(sourceCode.c_str(), sourceCode.length() + 1));


Program program = Program(context, source);

errcode = program.build(devices);
if (errcode != CL_SUCCESS)
{
    cout << "There were error during build kernel code. Please, check program code. Errcode = " << errcode << "\n";
    cout << "BUILD LOG: " + program.getBuildInfo<CL_PROGRAM_BUILD_LOG>(devices[0]) + "\n";
    getchar();
}


// Make kernel
Kernel kernel(program, "Optimization");

NDRange global(1);
queue.enqueueNDRangeKernel(kernel, 0, global);

我的内核代码:

__kernel void Optimization() 
{
   for(int i = 0;i<100;i++)
   {
       printf("%d",i);
       printf("%d",i);
   }
}

控制台与一个 printf

控制台有两个 printf:

这个问题我问过不止一次了,没人知道

您的输出在每个 printf 之后打印新行,而您的代码中没有 \n。我的系统不会那样做;它会在一行中打印 112233...。 你可以试试 printf("%i\n",i);.

问题出在视频卡驱动程序上。今天他们发布了修复此错误的更新。

只需使用setbuf(stdout,NULL);。写在声明下面。