Skip to content

Commit

Permalink
unused variables if serial
Browse files Browse the repository at this point in the history
  • Loading branch information
marci73 committed Jun 17, 2019
1 parent a7e4ec8 commit d219012
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/qs_localization_methods.F
Original file line number Diff line number Diff line change
Expand Up @@ -2021,12 +2021,16 @@ SUBROUTINE scdm_qrfact(vectors)
CHARACTER(len=*), PARAMETER :: routineN = 'scdm_qrfact', routineP = moduleN//':'//routineN
INTEGER :: handle, info, lwork, ncolT, nrowT
INTEGER, ALLOCATABLE, DIMENSION(:) :: ipiv
INTEGER, DIMENSION(9) :: descc
REAL(KIND=dp), DIMENSION(:), POINTER :: tau, work
REAL(KIND=dp), DIMENSION(:, :), POINTER :: a
REAL(KIND=dp), DIMENSION(:), POINTER :: tau
TYPE(cp_fm_struct_type), POINTER :: cstruct
TYPE(cp_fm_type), POINTER :: CTp, Qf, tmp
#if defined(__SCALAPACK)
INTEGER :: lwork
INTEGER, ALLOCATABLE, DIMENSION(:) :: ipiv
REAL(KIND=dp), DIMENSION(:, :), POINTER :: a
REAL(KIND=dp), DIMENSION(:), POINTER :: work
#endif
CALL timeset(routineN, handle)
Expand Down

0 comments on commit d219012

Please sign in to comment.