Skip to content

Commit

Permalink
fixed small bug in log_likelihood.cu
Browse files Browse the repository at this point in the history
  • Loading branch information
daurer committed Mar 25, 2022
1 parent 358a30d commit e2d93b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ptypy/accelerate/cuda_pycuda/cuda/log_likelihood.cu
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ extern "C" __global__ void __launch_bounds__(1024, 2)
const int *ma = addr + 12 + (blockIdx.x * nmodes) * addr_stride;

aux += ea[0] * A * B;
weights += da[0] * A * B;
I += ma[0] * A * B;
I += da[0] * A * B;
weights += ma[0] * A * B;
llerr += da[0] * A * B;
MATH_TYPE norm = A * B;

Expand Down

0 comments on commit e2d93b2

Please sign in to comment.