From e34b4df7e62b71b3adb19725a49549c01b2a7ef8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Constantin=20F=C3=BCrst?= Date: Tue, 23 Jan 2024 21:50:35 +0100 Subject: [PATCH] fix wrong linebreak in result writer --- qdp_project/src/Benchmark.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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_) {