标签: cuda
我想用匿名数组初始化设备指针:
__device__ const unsigned int *ff = (const unsigned int[]){90, 50, 100};
但是它不起作用,导致匿名数组在主机内存中。是否可以在CUDA中使用匿名数组初始化设备指针?