1

由于从 CUDA 示例中删除了 cutil.h 标头,因此引入了一些新的标头,例如 helper_cuda.h、helper_functions.h。

我使用的主要关键字之一是 CUDA_CHECK_ERROR,我认为它已被 checkCudaErrors 取代。

在我的大部分代码中,宏都可以编译并且运行良好。但是,当我在具有名为 check(..) 的函数的类中使用它时,checkCudaErrors 函数会给出编译错误。

这是一个例子:

#include <stdio.h>

#include <cuda_runtime.h>
#include <helper_cuda.h>
#include <helper_functions.h>

template<typename T>
class Trivial {

public:

    void check()
    {

    }

    void initialize() 
    {
        checkCudaErrors(cudaMalloc(NULL, 1));
    }

    T val;

};

int main(int argc, char **argv)
{

    Trivial<int> tt;

    tt.initialize();

    return 0;
}

以及编译结果:(使用 GCC 4.5 编译时也会出现同样的错误!)

1>------ Build started: Project: ZERO_CHECK, Configuration: Release x64 ------
2>------ Build started: Project: massivecc, Configuration: Release x64 ------
2>  trivial_main.cpp
2>..\src\trivial_main.cpp(19): error C2660: 'Trivial<T>::check' : function does not     take 4 arguments
2>          with
2>          [
2>              T=int
2>          ]
2>          ..\src\trivial_main.cpp(18) : while compiling class template member         function 'void Trivial<T>::initialize(void)'
2>          with
2>          [
2>              T=int
2>          ]
2>          ..\src\trivial_main.cpp(29) : see reference to class template         instantiation 'Trivial<T>' being compiled
2>          with
2>          [
2>              T=int
2>          ]
3>------ Skipped Build: Project: ALL_BUILD, Configuration: Release x64 ------
3>Project not selected to build for this solution configuration 
========== Build: 1 succeeded, 1 failed, 1 up-to-date, 1 skipped ==========

当我删除模板参数时,也会出现同样的错误。

4

2 回答 2

0

我必须将 check(..) 函数的定义从 helper_functions.h 复制到我的类的头文件中才能编译该类。

#include <stdio.h>    
#include <cuda_runtime.h>
#include <helper_cuda.h>
#include <helper_functions.h>    
class Trivial {    
public:    
    template< typename T >
    bool check(T result, char const *const func, const char *const file, int const line)
    {
        if (result) {
            fprintf(stderr, "CUDA error at %s:%d code=%d(%s) \"%s\" \n",
            file, line, static_cast<unsigned int>(result), _cudaGetErrorEnum(result), func);
            return true;
        } else {
            return false;
        }
    }

    void check() {  }

    void initialize() 
    {
        checkCudaErrors(cudaMalloc(NULL, 1));
    }
};

int main(int argc, char **argv)
{
    Trivial tt;
    tt.initialize();    
    return 0;
}

所以,这主要解决了我的问题,我的代码编译成功。

于 2013-01-14T08:30:03.107 回答
0

参考第 680 行 helper_cuda.h 中的源代码

https://github.com/pathscale/nvidia_sdk_samples/blob/master/vectorAdd/common/inc/helper_cuda.h

你会发现 checkCudaErrors 声明了一个 #define checkCudaErrors(val) check ( (val), #val, FILE , LINE ),它接受一个参数并使用基于 config 的 3 个其他参数调用 check。注意它也在第 680 行中定义

而在您的情况下,您定义了一个不带任何参数的检查。不同的声明和定义,多个定义的情况。

于 2015-08-09T21:17:24.307 回答