2011-12-18 176 views
2

我不断地收到一个访问冲突错误,我试图建立我的所有内核。我从书中拿的其他内核似乎工作正常。OpenCL enqueueNDRangeKernel导致访问冲突错误

https://github.com/ssarangi/VideoCL - 这是代码的地方。

东西似乎缺少在这。有人可以帮我解决这个问题。

非常感谢。

[James] - 感谢您的建议,并且您是对的。我在Win 7上使用AMD Redwood卡做这件事。我有AMD APP SDK 2.5的Catalyst 11.7驱动程序。我张贴下面的代码。

#include <iostream> 
#include "bmpfuncs.h" 

#include "CLManager.h" 

void main() 
{ 
    float theta = 3.14159f/6.0f; 
    int W ; 
    int H ; 

    const char* inputFile = "input.bmp"; 
    const char* outputFile = "output.bmp"; 

    float* ip = readImage(inputFile, &W, &H); 
    float *op = new float[W*H]; 

    //We assume that the input image is the array “ip” 
    //and the angle of rotation is theta 
    float cos_theta = cos(theta); 
    float sin_theta = sin(theta); 

    try 
    { 
     CLManager* clMgr = new CLManager(); 

     // Build the Source 
     unsigned int pgmID = clMgr->buildSource("rotation.cl"); 

     // Create the kernel 
     cl::Kernel* kernel = clMgr->makeKernel(pgmID, "img_rotate"); 

     // Create the memory Buffers 
     cl::Buffer* clIp = clMgr->createBuffer(CL_MEM_READ_ONLY, W*H*sizeof(float)); 
     cl::Buffer* clOp = clMgr->createBuffer(CL_MEM_READ_WRITE, W*H*sizeof(float)); 

     // Get the command Queue 
     cl::CommandQueue* queue = clMgr->getCmdQueue(); 
     queue->enqueueWriteBuffer(*clIp, CL_TRUE, 0, W*H*sizeof(float), ip); 

     // Set the arguments to the kernel 
     kernel->setArg(0, clOp); 
     kernel->setArg(1, clIp); 
     kernel->setArg(2, W); 
     kernel->setArg(3, H); 
     kernel->setArg(4, sin_theta); 
     kernel->setArg(5, cos_theta); 

     // Run the kernel on specific NDRange 
     cl::NDRange globalws(W, H); 


     queue->enqueueNDRangeKernel(*kernel, cl::NullRange, globalws, cl::NullRange); 

     queue->enqueueReadBuffer(*clOp, CL_TRUE, 0, W*H*sizeof(float), op); 

     storeImage(op, outputFile, H, W, inputFile); 
    } 
    catch(cl::Error error) 
    { 
     std::cout << error.what() << "(" << error.err() << ")" << std::endl; 
    } 
} 

我得到的错误在queue-> enqueueNDRangeKernel行。 我有队列和内核存储在一个类中。

CLManager::CLManager() 
    : m_programIDs(-1) 
{ 
    // Initialize the Platform 
    cl::Platform::get(&m_platforms); 

    // Create a Context 
    cl_context_properties cps[3] = { 
     CL_CONTEXT_PLATFORM, 
     (cl_context_properties)(m_platforms[0])(), 
     0 
    }; 

    m_context = cl::Context(CL_DEVICE_TYPE_GPU, cps); 

    // Get a list of devices on this platform 
    m_devices = m_context.getInfo<CL_CONTEXT_DEVICES>(); 

    cl_int err; 

    m_queue = new cl::CommandQueue(m_context, m_devices[0], 0, &err); 
} 


cl::Kernel* CLManager::makeKernel(unsigned int programID, std::string kernelName) 
{ 
    cl::CommandQueue queue = cl::CommandQueue(m_context, m_devices[0]); 

    cl::Kernel* kernel = new cl::Kernel(*(m_programs[programID]), kernelName.c_str()); 

    m_kernels.push_back(kernel); 

    return kernel; 
} 
+0

嗨,ssarangi。你没有提到足以在这里得到认真的帮助。你应该告诉我们你的平台和CL的实现,并发布有问题的代码,包括你已经做了什么来让你自己的工作。链接到外部存储库是一个不好的主意,因为该链接可能无法在路上有效。 – James 2011-12-19 01:06:10

回答

4

我检查了你的代码。尽管我在Linux上。在运行时,我得到错误-38,这意味着CL_INVALID_MEM_OBJECT。所以我去检查你的缓冲区。

cl::Buffer* clIp = clMgr->createBuffer(CL_MEM_READ_ONLY, W*H*sizeof(float)); 
cl::Buffer* clOp = clMgr->createBuffer(CL_MEM_READ_WRITE, W*H*sizeof(float)); 

然后,你将缓冲区的指针:

kernel->setArg(0, clOp); 
kernel->setArg(1, clIp); 

setArg期待值,因此缓冲区指针应解除引用:

kernel->setArg(0, *clOp); 
kernel->setArg(1, *clIp); 

这些变化后猫旋转;)

+0

数组的添加可能与所显示的代码一致,因为您将数组作为内核参数传递给数组(实际上是指向第一个值的指针)。 – rdoubleui 2011-12-19 12:45:54

+0

非常感谢。我忽略这一点是愚蠢的。这实际上确实解决了这个问题。再次感谢。 – ssarangi 2011-12-19 13:24:50