MCPcopy Create free account
hub / github.com/FastFlowLM/FastFlowLM / format_float_csv

Function format_float_csv

src/src/benchmarking.hpp:73–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71}
72
73inline std::string format_float_csv(float value, int precision) {
74 std::ostringstream ss;
75 ss << std::fixed << std::setprecision(precision) << value;
76 return ss.str();
77}
78
79inline std::string get_date_yyyymmdd() {
80 auto now = std::chrono::system_clock::now();

Callers 1

write_bench_csvFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected