-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add util function
TimedInvoke
to measure execution time
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#pragma once | ||
|
||
#include <chrono> | ||
#include <functional> | ||
#include <utility> | ||
|
||
namespace util { | ||
/// invoke and return the time taken for execution | ||
template <typename... Ts> | ||
size_t TimedInvoke(Ts&&... invoke_args) { | ||
auto const start = std::chrono::system_clock::now(); | ||
std::invoke(std::forward<Ts>(invoke_args)...); | ||
auto const end = std::chrono::system_clock::now(); | ||
return std::chrono::duration_cast<std::chrono::milliseconds>(end - start).count(); | ||
} | ||
} // namespace util |