improved planner

This commit is contained in:
2023-12-03 16:25:42 +03:00
parent 0afbb32788
commit ed68c9b11e
3 changed files with 86 additions and 6 deletions

View File

@@ -36,6 +36,6 @@ int main(int argc, char ** argv)
RunSupervisor * runSupervisor = new RunSupervisor(compilationSupervisor);
printf("%ld\n", runSupervisor->getLength());
runSupervisor->print();
runSupervisor->Do();
runSupervisor->DoWithSchedule(maxKernels);
return 0;
}