Skip to content

Commit acb2405

Browse files
committed
Flip nv_uvm_pref_gpu default to false
1 parent a4d6b38 commit acb2405

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/simulation/m_global_parameters.fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ module m_global_parameters
164164
! 1 => jac on GPU, jac_rhs and jac_old on CPU
165165
! 2 => jac and jac_rhs on GPU, jac_old on CPU
166166
! 3 => jac, jac_rhs, and jac_old on GPU (default)
167-
logical :: nv_uvm_pref_gpu ! Enable explicit gpu memory hints (default TRUE)
167+
logical :: nv_uvm_pref_gpu ! Enable explicit gpu memory hints (default FALSE)
168168
!> @}
169169

170170
real(wp) :: weno_eps !< Binding for the WENO nonlinear weights
@@ -586,7 +586,7 @@ contains
586586
! NVIDIA UVM options
587587
nv_uvm_out_of_core = .false.
588588
nv_uvm_igr_temps_on_gpu = 3 ! => jac, jac_rhs, and jac_old on GPU (default)
589-
nv_uvm_pref_gpu = .true.
589+
nv_uvm_pref_gpu = .false.
590590
591591
! Simulation algorithm parameters
592592
model_eqns = dflt_int

0 commit comments

Comments
 (0)