在 Linux 上使用 CUDA 4.2 和驱动程序 295.41 时,我目睹了一个非常有趣的行为。代码本身无非就是找到一个随机矩阵的最大值并将位置标记为 1。
#include <stdio.h>
#include <stdlib.h>
const int MAX = 8;
static __global__ void position(int* d, int len) {
int idx = threadIdx.x + blockIdx.x*blockDim.x;
if (idx < len)
d[idx] = (d[idx] == MAX) ? 1 : 0;
}
int main(int argc, const char** argv) {
int colNum = 16*512, rowNum = 1024;
int len = rowNum * colNum;
int* h = (int*)malloc(len*sizeof(int));
int* d = NULL;
cudaMalloc((void**)&d, len*sizeof(int));
// get a random matrix
for (int i = 0; i < len; i++) {
h[i] = rand()%(MAX+1);
}
// launch kernel
int threads = 128;
cudaMemcpy(d, h, len*sizeof(int), cudaMemcpyHostToDevice);
position<<<(len-1)/threads+1, threads>>>(d, len);
cudaMemcpy(h, d, len*sizeof(int), cudaMemcpyDeviceToHost);
cudaFree(d);
free(h);
return 0;
}
当我设置 rowNum = 1024 时,代码根本不起作用,就好像内核从未启动过一样。如果 rowNum = 1023,一切正常。
并且这个 rowNum 值与块大小(在本例中为 128)以某种方式卷积,如果我将块大小更改为 512,则行为发生在 rowNum = 4095 和 4096 之间。
我不太确定这是一个错误还是我错过了什么?