diff --git a/src/blt/profiling/profiler.cpp b/src/blt/profiling/profiler.cpp index e0bc220..d58f4ac 100644 --- a/src/blt/profiling/profiler.cpp +++ b/src/blt/profiling/profiler.cpp @@ -99,7 +99,7 @@ namespace blt::profiling { << row.name << "," << std::to_string((double) row.difference / 1000000.0) << "," << std::to_string(row.difference) << "," - << std::to_string(row.total) << "\n"; + << std::to_string((double) row.total / 1000000.0) << "\n"; } out.flush(); } @@ -136,7 +136,7 @@ namespace blt::profiling { row.name, std::to_string((double) row.difference / 1000000.0), std::to_string(row.difference), - std::to_string(row.total)} + std::to_string((double) row.total / 1000000.0)} ); }