在CUDA分配模板函数中,不推荐使用字符串常量转换为"char*"

joe*_*ans 1 c c++ cuda

我已经使用CUDA __constant__指针(allocation,copyToSymbol,copyFromSymbol等)进行了一些辅助函数.我也在这里按照talonmies的建议进行错误检查.这是一个基本的工作示例:

#include <cstdio>
#include <cuda_runtime.h>

__constant__ float* d_A;

__host__ void cudaAssert(cudaError_t code,
                         char* file,
                         int line,
                         bool abort=true) {
  if (code != cudaSuccess) {
    fprintf(stderr, "CUDA Error: %s in %s at line %d\n",
           cudaGetErrorString(code), file, line);
    if (abort) {
      exit(code);
    }   
  }
}

#define cudaTry(ans) { cudaAssert((ans), __FILE__, __LINE__); }

template<typename T>
void allocateCudaConstant(T* &d_ptr,
                          size_t size) {
  size_t memsize = size * sizeof(T);
  void* ptr;
  cudaTry(cudaMalloc((void**) &ptr, memsize));
  cudaTry(cudaMemset(ptr, 0, memsize));
  cudaTry(cudaMemcpyToSymbol(d_ptr, &ptr, sizeof(ptr),
                             0, cudaMemcpyHostToDevice));
}

int main() {
  size_t size = 16; 
  allocateCudaConstant<float>(d_A, size);
  return 0;
}
Run Code Online (Sandbox Code Playgroud)

当我使用nvcc编译它时,我收到以下警告:

In file included from tmpxft_0000a3e8_00000000-3_example.cudafe1.stub.c:2:
example.cu: In function ‘void allocateCudaConstant(T*&, size_t) [with T = float]’:
example.cu:35:   instantiated from here
example.cu:29: warning: deprecated conversion from string constant to ‘char*’
Run Code Online (Sandbox Code Playgroud)

我理解警告意味着什么,但我不能为我的生活找出它的来源.如果我没有制作allocateCudaConstant模板功能,我就不会收到警告.如果我不包装cudaMemcpyToSymbolcudaTry,我还没有得到警告.我知道这只是一个警告,如果我编译,-Wno-write-strings我可以抑制警告.代码运行正常,但我不想养成忽略警告的习惯,如果我压制警告,我可能会隐藏其他需要解决的问题.

那么,任何人都可以帮我弄清楚警告的来源以及如何抑制它吗?

Ker*_* SB 5

更改char* fileconst char* file在的声明cudaAssert.您不需要修改字符串,因此您不应该要求可修改的字符串.