From 226db6a27602c115906a9e55fb5767fc17e87d38 Mon Sep 17 00:00:00 2001 From: Firewire Date: Mon, 1 Dec 2025 03:30:55 -0500 Subject: [PATCH] Add timer.h for benchmarking --- src/common/timer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/timer.h b/src/common/timer.h index 5ba0956..cc183a1 100644 --- a/src/common/timer.h +++ b/src/common/timer.h @@ -21,7 +21,7 @@ public: const auto seconds = std::chrono::duration_cast(end - start); const auto ms = std::chrono::duration_cast(end - start); const auto us = std::chrono::duration_cast(end - start); - std::cout << "Execution time: \n\t" << seconds.count() << " s\n\t" << ms.count() << " ms\n\t" << us.count() << " us" << std::endl; + std::cout << "\n# Execution time # \n\t" << seconds.count() << " s\n\t" << ms.count() << " ms\n\t" << us.count() << " us" << std::endl; } private: