1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-12-27 16:04:43 +00:00

Hadrons: eigen packs I/O and deflation interface

This commit is contained in:
2018-03-14 14:54:25 +00:00
parent 72344d1418
commit d516938707
12 changed files with 368 additions and 61 deletions

View File

@@ -632,12 +632,14 @@ void VirtualMachine::executeProgram(const Program &p) const
freeProg = makeGarbageSchedule(p);
for (unsigned int i = 0; i < freeProg.size(); ++i)
{
LOG(Debug) << std::setw(4) << i + 1 << ": [";
std::string msg = "";
for (auto &a: freeProg[i])
{
std::cout << env().getObjectName(a) << " ";
msg += env().getObjectName(a) + " ";
}
std::cout << "]" << std::endl;
msg += "]";
LOG(Debug) << std::setw(4) << i + 1 << ": [" << msg << std::endl;
}
// program execution