当用 C 告诉我的电脑时
printf("%d",(int)-1);
我确实期望并且通常也会得到“-1”响应。然而,在我的 Tesla M2090 Nvidia Card 上,我的基于 Ubuntu 的 Cuda 5.0 与这个无辜的演示程序通话
/** cheese.cu */
#include <iostream>
#include <cuda.h>
#include <cstdio>
using namespace std;
template<typename T> struct SpacePtr
{ size_t size; T* ptr; };
__global__ void f(SpacePtr<int>* sp)
{
printf("This _is_ a 'minus one' or ain't it: %d\n",(int)-1);
// Note: All appears to work fine with %lu instead of %zd
// Still: How does the size value affect the -1?
printf("On DEV: Size: %zd, Minus One: %d\n",sp->size,(int)-1);
}
int main()
{
SpacePtr<int> data; data.ptr = 0; data.size = 168;
SpacePtr<int>* devPtr = 0;
cudaMalloc(&devPtr,1);
cudaMemcpy(devPtr,&data,sizeof(SpacePtr<int>),cudaMemcpyHostToDevice);
f<<<1,1,0,0>>>(devPtr);
cudaError_t err = cudaGetLastError();
cout << "The last error code was " << err << " (" <<
cudaGetErrorString(err) << ")" << endl;
cudaDeviceSynchronize();
}
通过编译和调用
nvcc -arch=sm_20 cheese.cu && ./a.out
产生输出:
The last error code was 0 (no error)
This _is_ a 'minus one' or ain't it: -1
On DEV: Size: 168, Minus One: 10005640
最后一个数字实际上是某种随机数(两个后续调用返回不同的结果),就好像内存分配有问题一样。-1 之前的 (int) 已经是反复试验。原始程序没有它。
这里有一个问题:有人知道为什么没有写-1,如果是这样,你能告诉我为什么吗?非常感谢,马库斯。