Skip to content
Snippets Groups Projects
Commit 293dd901 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

eval/BFP9000: fix compilation on debian stable

parent 35e94bab
No related branches found
No related tags found
1 merge request!421Various fixes and improvements
...@@ -253,10 +253,10 @@ static void bfp9000() { ...@@ -253,10 +253,10 @@ static void bfp9000() {
*work_file_strm << trace.work_ns << std::endl; *work_file_strm << trace.work_ns << std::endl;
*sleep_file_strm << trace.sleep_ns << std::endl; *sleep_file_strm << trace.sleep_ns << std::endl;
// clang-format off // clang-format off
*csv_file_strm << previous_sleep_finish *csv_file_strm << previous_sleep_finish.time_since_epoch()
<< ", " << trace.work_start << ", " << trace.work_start.time_since_epoch()
<< ", " << pulse_latency << ", " << pulse_latency
<< ", " << trace.work_finish << ", " << trace.work_finish.time_since_epoch()
<< ", " << work_wall_clock << ", " << work_wall_clock
<< ", " << work_speedup << ", " << work_speedup
; ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment