gpt4 book ai didi

c++ - CUDA C编译错误: new operator is not allowed in global function

转载 作者:太空狗 更新时间:2023-10-29 21:21:24 25 4
gpt4 key购买 nike

我有以下 CUDA C 代码。尝试编译时,出现以下错误:

function new/delete operator is not allowed in global function.

我过去能够毫无错误地编译这段代码。可能是什么问题?

__global__ void kern(float *P, ... a bunch of other variables)
{
...
W = new float[M];
...
delete[] W;
}

最佳答案

刚刚我想通了:在编译的时候,需要加上

    -arch sm_30 

为计算能力 3.0 构建代码。

关于c++ - CUDA C编译错误: new operator is not allowed in global function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22490557/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com