Skip to content

Commit ceb05e3

Browse files
committed
fix inconsistency in setting lower bound of wanted spectrum for chebyshev filtering
1 parent 7f6f218 commit ceb05e3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

utils/dftParameters.cc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1260,7 +1260,7 @@ namespace dftfe
12601260
useMixedPrecXTHXSpectrumSplit = false;
12611261
useMixedPrecSubspaceRotRR = false;
12621262
useMixedPrecCommunOnlyXTHXCGSO = false;
1263-
spectrumSplitStartingScfIter = 1;
1263+
spectrumSplitStartingScfIter = 0;
12641264
useELPA = false;
12651265
constraintsParallelCheck = true;
12661266
createConstraintsFromSerialDofhandler = true;
@@ -2013,6 +2013,9 @@ namespace dftfe
20132013
{
20142014
spinMixingEnhancementFactor = 1.0;
20152015
}
2016+
2017+
if (numCoreWfcRR == 0)
2018+
spectrumSplitStartingScfIter = 10000;
20162019
}
20172020

20182021

0 commit comments

Comments
 (0)