Skip to content

Commit

Permalink
Fixed cholesky
Browse files Browse the repository at this point in the history
  • Loading branch information
scemama committed Jun 5, 2024
1 parent 19286be commit 36a2f0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ao_two_e_ints/cholesky.irp.f
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,10 @@


allocate(computed(nq))
computed(:) = .False.

!print *, 'N, rank, block_size', N, rank, block_size

!print *, 'N, rank, block_size', N, rank, block_size
!$OMP PARALLEL DEFAULT(SHARED) PRIVATE(k,p,q)
do k=1,N
!$OMP DO
Expand All @@ -285,7 +286,6 @@

!$OMP DO
do q=1,nq
computed(q) = .False.
Ltmp_q(q,k) = L(Dset(q),k)
enddo
!$OMP END DO NOWAIT
Expand Down

0 comments on commit 36a2f0b

Please sign in to comment.