diff --git a/qdp_project/src/Benchmark.cpp b/qdp_project/src/Benchmark.cpp index 163438f..48f03ee 100644 --- a/qdp_project/src/Benchmark.cpp +++ b/qdp_project/src/Benchmark.cpp @@ -209,7 +209,7 @@ int main() { const auto time_end = std::chrono::steady_clock::now(); if (i >= WARMUP_ITERATION_COUNT) { - fout << i << ";" << std::chrono::duration_cast(time_end - time_start).count() << std::endl << ";" << DATA_DST_[0] << ";" << std::endl; + fout << i << ";" << std::chrono::duration_cast(time_end - time_start).count() << ";" << std::hex << DATA_DST_[0] << std::dec << ";" << std::endl; } for (std::barrier* b : BARRIERS_) {