forgot convert to ms
parent
13b7c3905b
commit
409e814815
|
@ -99,7 +99,7 @@ namespace blt::profiling {
|
||||||
<< row.name << ","
|
<< row.name << ","
|
||||||
<< std::to_string((double) row.difference / 1000000.0) << ","
|
<< std::to_string((double) row.difference / 1000000.0) << ","
|
||||||
<< std::to_string(row.difference) << ","
|
<< std::to_string(row.difference) << ","
|
||||||
<< std::to_string(row.total) << "\n";
|
<< std::to_string((double) row.total / 1000000.0) << "\n";
|
||||||
}
|
}
|
||||||
out.flush();
|
out.flush();
|
||||||
}
|
}
|
||||||
|
@ -136,7 +136,7 @@ namespace blt::profiling {
|
||||||
row.name,
|
row.name,
|
||||||
std::to_string((double) row.difference / 1000000.0),
|
std::to_string((double) row.difference / 1000000.0),
|
||||||
std::to_string(row.difference),
|
std::to_string(row.difference),
|
||||||
std::to_string(row.total)}
|
std::to_string((double) row.total / 1000000.0)}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue