Skip to content

Commit

Permalink
Fix bug reported in #39
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidDiazGuerra committed Oct 21, 2022
1 parent ae84cab commit 34314b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gpuRIR_cuda.cu
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ __global__ void calcAmpTau_kernel(float* g_amp /*[M_src]M_rcv][nb_img_x][nb_img_
sh_orV_src[m*3+2] = g_orV_src[m*3+2];
}
}
sh_orV_rcv = &sh_orV_src[M_rcv*3];
sh_orV_rcv = &sh_orV_src[M_src*3];
} else sh_orV_rcv = sh_orV_src;
if (mic_pattern != DIR_OMNI) {
if (threadIdx.x==0 && threadIdx.y==0) {
Expand Down

0 comments on commit 34314b3

Please sign in to comment.