我正在使用 CUDA 做一些计算机视觉的工作。以下代码大约需要 20 秒才能完成。
__global__ void nlmcuda_kernel(float* fpOMul,/*other input args*/){
float fpODenoised[75];
/*Do awesome stuff to compute fpODenoised*/
//inside nested loops:(This is the statement that is the bottleneck in the code.)
fpOMul[ii * iwl * iwxh + iindex * iwxh + il] = fpODenoised[ii * iwl +iindex];
}
如果我用
fpOMul[ii * iwl * iwxh + iindex * iwxh + il] = 2.0f;
代码几乎不需要几秒钟就可以完成。
为什么指定的语句很慢,我怎样才能让它运行得快?