Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhenneking committed Sep 25, 2023
1 parent 601063c commit 395459c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
13 changes: 12 additions & 1 deletion trunk/problems/LASER/UW_COUPLED/exec_job_coupled.F90
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,15 @@ subroutine exec_job_coupled
if (RANK.eq.ROOT) write(*,4200) ' Updating heat Dirichlet DOFs...'
call update_Ddof
if (time_step .gt. 0) then
#if HP3D_USE_INTEL_MKL
if (NUM_PROCS .eq. 1) then
call pardiso_sc('H')
else
!call par_mumps_sc('H')
call par_nested('H')
endif
#else
call par_mumps_sc('H')
#endif
endif
! ...calculating temperature
numPts = 2**IMAX
Expand Down Expand Up @@ -279,11 +282,15 @@ subroutine exec_job_coupled
if (RANK.eq.ROOT) write(*,*) ' Signal solve...'
NO_PROBLEM = 3
call set_physAm(NO_PROBLEM, physNick,flag)
#if HP3D_USE_INTEL_MKL
if (NUM_PROCS .eq. 1) then
call pardiso_sc('H')
else
call par_nested('H')
endif
#else
call par_mumps_sc('H')
#endif
!
! ...compute signal residual
if (ires) then
Expand All @@ -303,11 +310,15 @@ subroutine exec_job_coupled
if (RANK.eq.ROOT) write(*,*) ' Pump solve...'
NO_PROBLEM = 4
call set_physAm(NO_PROBLEM, physNick,flag)
#if HP3D_USE_INTEL_MKL
if (NUM_PROCS .eq. 1) then
call pardiso_sc('H')
else
call par_nested('H')
endif
#else
call par_mumps_sc('H')
#endif
!
! ...compute pump residual
if (ires) then
Expand Down
4 changes: 4 additions & 0 deletions trunk/problems/LASER/UW_COUPLED/exec_job_nl.F90
Original file line number Diff line number Diff line change
Expand Up @@ -243,11 +243,15 @@ subroutine exec_job_nl
if (RANK.eq.ROOT) write(*,4200) ' Pump solve..'
NO_PROBLEM = 4
call set_physAm(NO_PROBLEM, physNick,flag)
#if HP3D_USE_INTEL_MKL
if (NUM_PROCS .eq. 1) then
call pardiso_sc('H')
else
call par_nested('H')
endif
#else
call par_mumps_sc('H')
#endif
!
! ...compute pump residual
if (ires) then
Expand Down

0 comments on commit 395459c

Please sign in to comment.