Browse Source

do not pretty print the json files produced to save space

master
Constantin Fürst 1 year ago
parent
commit
21a81c5aa0
  1. 2
      benchmarks/util/task-data.hpp

2
benchmarks/util/task-data.hpp

@ -63,7 +63,7 @@ inline void WriteResultLog(const std::vector<TaskData>& args, const std::string&
json["path"] = path;
json["list"] = args;
os << std::setw(4) << json;
os << json;
}
inline void ReadWorkDescription(std::vector<TaskData>& args, std::string& path, std::istream& is) {

Loading…
Cancel
Save