Skip to content

Commit

Permalink
Merged in vselfBinsSolveForceCPU (pull request #573)
Browse files Browse the repository at this point in the history
force vself bins solve to go via CPUs

Approved-by: Nikhil Kodali
  • Loading branch information
dsambit committed Mar 15, 2024
2 parents 5f63e29 + 64bc9b6 commit 1b324ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/dft/dft.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2077,7 +2077,7 @@ namespace dftfe
computing_timer.enter_subsection("Nuclear self-potential solve");
computingTimerStandard.enter_subsection("Nuclear self-potential solve");
#ifdef DFTFE_WITH_DEVICE
if (d_dftParamsPtr->useDevice)
if (d_dftParamsPtr->useDevice and false)
d_vselfBinsManager.solveVselfInBinsDevice(
d_basisOperationsPtrElectroHost,
d_baseDofHandlerIndexElectro,
Expand Down
2 changes: 1 addition & 1 deletion src/dft/solveNSCF.cc
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ namespace dftfe
computing_timer.enter_subsection("Nuclear self-potential solve");
computingTimerStandard.enter_subsection("Nuclear self-potential solve");
#ifdef DFTFE_WITH_DEVICE
if (d_dftParamsPtr->useDevice)
if (d_dftParamsPtr->useDevice and false)
d_vselfBinsManager.solveVselfInBinsDevice(
d_basisOperationsPtrElectroHost,
d_baseDofHandlerIndexElectro,
Expand Down

0 comments on commit 1b324ea

Please sign in to comment.