由于从 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 ==========
当我删除模板参数时,也会出现同样的错误。