irace: pass metadata to IOH
This commit is contained in:
parent
d8972be2a0
commit
325f3ebf30
1 changed files with 5 additions and 1 deletions
|
|
@ -333,7 +333,11 @@ int main(int argc, char* argv[])
|
|||
|
||||
std::shared_ptr<IOHprofiler_csv_logger<int>> csv_logger;
|
||||
if(full_log) {
|
||||
csv_logger = std::make_shared<IOHprofiler_csv_logger<int>>(/*TODO: dir, folder, algo, desc*/);
|
||||
std::string dir(".");
|
||||
std::string folder("."); // Avoid an IOH bug.
|
||||
std::string algo_name = "FoundryFastGA"; // FIXME use foundry.name()
|
||||
std::string desc = "One of the many FastGA algorithms instances";
|
||||
csv_logger = std::make_shared<IOHprofiler_csv_logger<int>>(dir, folder, algo_name, desc);
|
||||
loggers.add(*csv_logger);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue