大于 16 位的线程块的配置参数无效

Posted

技术标签:

【中文标题】大于 16 位的线程块的配置参数无效【英文标题】:Invalid configuration argument for thread block greater than 16bit 【发布时间】:2017-07-12 18:52:13 【问题描述】:

这段代码运行良好:

#include <stdio.h>
#define N 1000 // <-- Works for values < 2^16

__global__
void add(int *a, int *b) 
    int i = blockIdx.x;
    if (i<N) 
        b[i] = 2*a[i];
    

int main() 
    int max_value[2];
    int ha[N], hb[N];
    int *da, *db;
    cudaMalloc((void **)&da, N*sizeof(int));
    cudaMalloc((void **)&db, N*sizeof(int));
    for (int i = 0; i<N; ++i) 
        ha[i] = i;
    
    cudaMemcpy(da, ha, N*sizeof(int), cudaMemcpyHostToDevice);
    add<<<N, 1>>>(da, db);
    cudaMemcpy(hb, db, N*sizeof(int), cudaMemcpyDeviceToHost);
    max_value[0] = hb[0];
    int i;
    for (i = 0; i < N; i++) 
        if (hb[i] > max_value[0]) 
            max_value[0] = hb[i];
            max_value[1] = i;
        
    
    cudaFree(da);
    cudaFree(db);
    printf("Max number %d, from value:%d \n", max_value[0], max_value[1]);
    getchar();
    return 0;

但是当我将数字 N(数组中的项目)从 1000 更改为 >(216)-1 时,程序崩溃了。

我以为是主机溢出,所以将hahb的数组声明移到BSS segment,并将N改为100万。

#include <stdio.h>
#define N 1000000 // <----

__global__
void add(int *a, int *b) 
    int i = blockIdx.x;
    if (i<N) 
        b[i] = 2*a[i];
    

static int ha[N]; // <----
static int hb[N]; // <----
int main() 
    int max_value[2];
    // int ha[N], hb[N];
    int *da, *db;
    cudaMalloc((void **)&da, N*sizeof(int));
    cudaMalloc((void **)&db, N*sizeof(int));
    for (int i = 0; i<N; ++i) 
        ha[i] = i;
    
    cudaMemcpy(da, ha, N*sizeof(int), cudaMemcpyHostToDevice);
    add<<<N, 1>>>(da, db);
    cudaMemcpy(hb, db, N*sizeof(int), cudaMemcpyDeviceToHost);
    max_value[0] = hb[0];
    int i;
    for (i = 0; i < N; i++) 
        if (hb[i] > max_value[0]) 
            max_value[0] = hb[i];
            max_value[1] = i;
        
    
    cudaFree(da);
    cudaFree(db);
    printf("Max number %d, from value:%d \n", max_value[0], max_value[1]);
    getchar();
    return 0;

现在我没有收到错误,但 hb 数组为空。 我的代码有什么问题? 如何将大数组分配给设备并获得有效结果?

更新:我已经插入了错误检查代码,我得到的错误是 -> “无效的配置参数”。 更新后的代码是:

#include <stdio.h>
#include <time.h>
#include <math.h>
#include <thrust/system_error.h>
#include <thrust/system/cuda/error.h>
#include <sstream>
const int N = 70000;

#define checkCudaErrors(error) \
    if (error != cudaSuccess) \
        printf("CUDA Error - %s:%d: '%s'\n",__FILE__,__LINE__,cudaGetErrorString(error));\
        exit(1);\
        \
\

__global__
void add(int *a, int *b) 
    int i = blockIdx.x;
    if (i<N) 
        b[i] = 2*a[i];
    

static int ha[N];
static int hb[N];
int main() 
    // int ha[N], hb[N];
    int max_value[2];

    int deviceCount = 0;
    cudaGetDeviceCount(&deviceCount);
    cudaError_t err=cudaDeviceReset();
    if(err!=cudaSuccess)printf("%s in %s at line %d\n",cudaGetErrorString(err),__FILE__,__LINE__);
    printf("Device count: %d \n", deviceCount);

    for (int i = 0; i<N; ++i)  ha[i] = i; 
    int *da, *db;
    checkCudaErrors(cudaMalloc((void **)&da, N*sizeof(int)));
    checkCudaErrors(cudaMalloc((void **)&db, N*sizeof(int)));
    checkCudaErrors(cudaMemcpy(da, ha, N*sizeof(int), cudaMemcpyHostToDevice));
    add<<<N, 1>>>(da, db);  // <--- Invalid configuration error
    checkCudaErrors(cudaMemcpy(hb, db, N*sizeof(int), cudaMemcpyDeviceToHost));
    max_value[0] = hb[0];
    int i;
    for (i = 0; i < N; i++) 
        if (hb[i] > max_value[0]) 
            max_value[0] = hb[i];
            max_value[1] = i;
        
    
    cudaError_t error = cudaGetLastError();     
    if(error != cudaSuccess) 
        printf("CUDA error: %s\n", cudaGetErrorString(error));
        getchar();
        exit(-1);
    
    getchar();
    return 0;

该设备是 GeForce GTX 470,我正在使用 nvcc -o foo new.cu

进行编译

【问题讨论】:

cudaMalloccudaMemcpy 都返回 cudaError_t 类型的值 - 可能值得先检查这些。 谢谢@iehrlich 我会检查这个 还可以看看this,总体而言this 可能会给你一些提示。祝你好运! 任何时候您在使用 CUDA 代码时遇到问题,强烈建议您使用proper CUDA error checking 并使用cuda-memcheck 运行您的代码。根据您编译此代码的方式 (??),选择 N=1000000 可能会导致内核启动 add&lt;&lt;&lt;N, 1&gt;&gt;&gt;(da, db); 失败。 (这几乎可以肯定是这里正在发生的事情。)正确的错误检查可能会将您的注意力集中在错误上。另外,您在哪个 GPU 上运行? 【参考方案1】:

您的设备 (GTX 470) 是 cc2.0 设备(计算能力)。

无效配置参数错误是由于对于 cc2.0 设备,一维网格的块数限制为 65535。此信息可在 programming guide(“最大 x 维线程块网格”)或通过运行deviceQuery CUDA 示例代码。所以你在这里选择的N 太大了:

add<<<N, 1>>>(da, db);
      ^

对于 cc2.0 设备,通常的解决方法是创建一个多维的线程块网格,这允许更多数量的线程块。内核启动参数实际上可以是dim3 变量,允许指定多维网格(线程块)或多维线程块(线程)。

要正确执行此操作,您还需要更改内核代码,以根据您可用的多维变量创建正确的全局唯一线程 ID。

以下工作示例提供了一组可能的最小更改来演示该概念,并且对我来说似乎可以正确运行:

$ cat t363.cu
#include <stdio.h>
#include <time.h>
#include <math.h>
#include <thrust/system_error.h>
#include <thrust/system/cuda/error.h>
#include <sstream>
const int N = 70000;

#define checkCudaErrors(error) \
    if (error != cudaSuccess) \
        printf("CUDA Error - %s:%d: '%s'\n",__FILE__,__LINE__,cudaGetErrorString(error));\
        exit(1);\
        \
\

__global__
void add(int *a, int *b) 
    int i = blockIdx.x + blockIdx.y*gridDim.x;
    if (i<N) 
        b[i] = 2*a[i];
    

static int ha[N];
static int hb[N];
int main() 
    int max_value[2];

    int deviceCount = 0;
    cudaGetDeviceCount(&deviceCount);
    cudaError_t err=cudaDeviceReset();
    if(err!=cudaSuccess)printf("%s in %s at line %d\n",cudaGetErrorString(err),__FILE__,__LINE__);
    printf("Device count: %d \n", deviceCount);

    for (int i = 0; i<N; ++i)  ha[i] = i; 
    int *da, *db;
    checkCudaErrors(cudaMalloc((void **)&da, N*sizeof(int)));
    checkCudaErrors(cudaMalloc((void **)&db, N*sizeof(int)));
    checkCudaErrors(cudaMemcpy(da, ha, N*sizeof(int), cudaMemcpyHostToDevice));
    dim3 mygrid(N/10, 10);
    add<<<mygrid, 1>>>(da, db);
    checkCudaErrors(cudaMemcpy(hb, db, N*sizeof(int), cudaMemcpyDeviceToHost));
    max_value[0] = hb[0];
    int i;
    for (i = 0; i < N; i++) 
        if (hb[i] > max_value[0]) 
            max_value[0] = hb[i];
            max_value[1] = i;
        
    
    printf("max_value[0] = %d, max_value[1] = %d\n", max_value[0], max_value[1]);
    cudaError_t error = cudaGetLastError();
    if(error != cudaSuccess) 
        printf("CUDA error: %s\n", cudaGetErrorString(error));
        getchar();
        exit(-1);
    
    return 0;

$ nvcc -arch=sm_20 -o t363 t363.cu
nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).
$ ./t363
Device count: 4
max_value[0] = 139998, max_value[1] = 69999
$

注意事项:

如果您在 cc3.0 或更高版本的设备上运行您的原始代码,则不应引发该错误。较新的 CUDA 设备将一维网格限制提高到 2^31-1。但是,如果您想超过该数量的块(大约 2B),那么您将不得不再次进入多维网格。

cc2.0 设备在 CUDA 8 中已弃用,即将发布的 CUDA 9 版本将不再支持它们。

【讨论】:

非常感谢罗伯特,感谢您的宝贵时间和精彩的回复!

以上是关于大于 16 位的线程块的配置参数无效的主要内容,如果未能解决你的问题,请参考以下文章

Nginx服务器中的Gzip配置参数详解

惠普星 Book 15参数配置 惠普星 Book 15评测 怎么样

nginx'“map”指令中的参数数量无效'

thrust :: sort_by_key上的配置参数无效

线程池参数配置

记录一个 spring cloud 配置中心的坑,命令行端口参数无效,被覆盖