1
0
mirror of https://github.com/paboyle/Grid.git synced 2026-05-12 05:04:30 +01:00

commented out evec writer because it was taking up all the space on SDCC

This commit is contained in:
Patrick Oare
2025-09-18 15:09:31 -04:00
parent 0b92ef990c
commit 612049f1dd
+6 -6
View File
@@ -103,12 +103,12 @@ void writeEigensystem(KrylovSchur<Field> KS, std::string outDir) {
}
fEval.close();
// Write evecs
std::vector<Field> evecs = KS.getEvecs();
for (int i = 0; i < Nk; i++) {
std::string fName = outDir + "/evec" + std::to_string(i);
writeFile(evecs[i], fName); // using method from Grid/HMC/ComputeWilsonFlow.cc
}
// Write evecs (TODO: very heavy on storage costs! Don't write them all out)
// std::vector<Field> evecs = KS.getEvecs();
// for (int i = 0; i < Nk; i++) {
// std::string fName = outDir + "/evec" + std::to_string(i);
// writeFile(evecs[i], fName); // using method from Grid/HMC/ComputeWilsonFlow.cc
// }
}
// Hermitize a DWF operator by squaring it