Skip to content

Commit

Permalink
Merge branch 'pycuda' into gpu-hackathon-upsampling
Browse files Browse the repository at this point in the history
  • Loading branch information
daurer committed Mar 25, 2022
2 parents 0369ac3 + e2d93b2 commit b375d7a
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 @@ -192,8 +192,8 @@ inline __device__ void log_likelihood_ml_impl(
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 b375d7a

Please sign in to comment.