Visual Studio 2010 + CUDA 4:尝试使用NPP分配内存时出现无法识别的令牌错误

Visual Studio 2010 + CUDA 4: Unrecognized token error when attempting to allocate memory using NPP

本文关键字:内存 错误 令牌 识别 分配 NPP CUDA 2010 Studio Visual      更新时间:2023-10-16

我有以下相同名称的类的源文件(CUDA_Integral_Image.cu):

#include "cuda_runtime.h"
#include "npp.h"
#include "CUDA_Integral_Image.h"
#include <stdlib.h>
#include <time.h>
...
// allocated device source image
int step = width;
Npp8u* pSI = nppiMalloc_8u_C1(width, height, &step);
// copy test image up to device
cudaMemcpy2D(pSI, width, pHI, width, width, height, cudaMemcpyHostToDevice);
// allocate device result images
Npp32s* pDi = nppiMalloc_32s_C1(width,height,width*sizeof(int)); // LINE 30

尝试编译这段代码会导致:

.../CUDA_Integral_Image.cu(30): error : unrecognized token
1>  
.../CUDA_Integral_Image.cu(30): error : expected an identifier
1>  
.../CUDA_Integral_Image.cu(30): error : unrecognized token
1>  
.../CUDA_Integral_Image.cu(30): error : expected an expression

CUDA_Integral_Image.h中没有其他头文件。所有NPP依赖项(.h和lib)的添加似乎都没有问题。此外,可以很好地识别Npp8u*和nppiMalloc_8u_C1。我完全不知道是什么原因导致这个错误。

. .如果我将代码改为:

Npp32s* pDi; // LINE 30
pDi = nppiMalloc_32s_C1(width,height,width*sizeof(int));

我得到错误:

.../CUDA_Integral_Image.cu(30): error : unrecognized token
1>  
.../CUDA_Integral_Image.cu(30): error : expected an identifier
1>  
.../CUDA_Integral_Image.cu(31): error : identifier "pDi" is undefined
1>  
.../CUDA_Integral_Image.cu(31): error : unrecognized token
1>  
.../CUDA_Integral_Image.cu(31): error : expected an expression

不知道是什么原因导致的,感谢任何建议!

nppiMalloc_32s_C1的最后一个参数不正确。它应该始终是指向整型变量的指针。例程在内部计算分配的正确大小(包括对齐),并将大小返回给调用者。