mirror of
https://github.com/paboyle/Grid.git
synced 2026-05-31 06:24:18 +01:00
commented out evec writer because it was taking up all the space on SDCC
This commit is contained in:
@@ -103,12 +103,12 @@ void writeEigensystem(KrylovSchur<Field> KS, std::string outDir) {
|
|||||||
}
|
}
|
||||||
fEval.close();
|
fEval.close();
|
||||||
|
|
||||||
// Write evecs
|
// Write evecs (TODO: very heavy on storage costs! Don't write them all out)
|
||||||
std::vector<Field> evecs = KS.getEvecs();
|
// std::vector<Field> evecs = KS.getEvecs();
|
||||||
for (int i = 0; i < Nk; i++) {
|
// for (int i = 0; i < Nk; i++) {
|
||||||
std::string fName = outDir + "/evec" + std::to_string(i);
|
// std::string fName = outDir + "/evec" + std::to_string(i);
|
||||||
writeFile(evecs[i], fName); // using method from Grid/HMC/ComputeWilsonFlow.cc
|
// writeFile(evecs[i], fName); // using method from Grid/HMC/ComputeWilsonFlow.cc
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hermitize a DWF operator by squaring it
|
// Hermitize a DWF operator by squaring it
|
||||||
|
|||||||
Reference in New Issue
Block a user