我必须将此代码从c ++并行化到CUDA C
for(ihist = 0; ihist < numhist; ihist++){
for(iwin = 0; iwin<numwin; iwin++){
denwham[ihist] += (numbinwin[iwin]/g[iwin])*exp(F[iwin]-U[ihist]);
}
Punnorm[ihist] = numwham[ihist]/denwham[ihist];
}
在CUDA C中,使用总和减少:
extern __shared__ float sdata[];
int tx = threadIdx.x;
int i=blockIdx.x;
int j=blockIdx.y;
float sum=0.0;
float temp=0.0;
temp=U[j];
if(tx<numwin)
{
sum=(numbinwin[tx]/g[tx])*exp(F[tx]- temp);
sdata[tx] = sum;
__syncthreads();
}
for(int offset = blockDim.x / 2;offset > 0;offset >>= 1)
{
if(tx < offset)
{
// add a partial sum upstream to our own
sdata[tx] += sdata[tx + offset];
}
__syncthreads();
}
// finally, thread 0 writes the result
if(threadIdx.x == 0)
{
// note that the result is per-block
// not per-thread
denwham[i] = sdata[0];
for(int k=0;k<numhist;k++)
Punnorm[k] = numwham[k]/denwham[k];
}
并以这种方式初始化:
int smem_sz = (256)*sizeof(float);
dim3 Block(numhist,numhist,1);
NewProbabilitiesKernel<<<Block,256,smem_sz>>>(...);
我的问题是我无法使用exp
迭代U,我尝试了以下内容:
a) loop for/while inside the kernel that iterates over U
b) iterate by thread
c) iterate to block
所有这些尝试都让我在C ++代码和代码cuda之间产生了不同的结果。如果代替U [i]我放置一个常量,代码工作正常!
你有什么想法帮助我吗?感谢。
答案 0 :(得分:1)
看起来您可以通过
将U
移出内循环
for(iwin = 0; iwin<numwin; iwin++){
denwham += numbinwin[iwin] / g[iwin] * exp(F[iwin]);
}
for(ihist = 0; ihist < numhist; ihist++){
Punnorm[ihist] = numwham[ihist] / denwham * exp(U[ihist]);
}
之后你可以使用2个简单的内核而不是1个复杂的内核来完成任务。
denwham
; Punnorm
;