Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add timer object for timestamps #104

Merged
merged 3 commits into from Jan 5, 2023
Merged

Add timer object for timestamps #104

merged 3 commits into from Jan 5, 2023

Conversation

varunsh-xilinx
Copy link
Member

Summary of Changes

  • Add a timer object to hold timestamps during runtime

Motivation

Dealing with std::chrono and its myriad of classes and converting the duration between different units is verbose and error-prone. This object moves all that logic internally so you can focus on collecting timestamps and getting them in the right units and type easily.

Implementation

The Timer maintains a map of labels and timestamps. When you create the object, you can choose to save a value on construction. If you pass true, it saves the current time. If you pass a time, it uses that time. The timer uses two special labels, "start" and "stop", which are set by the start() and stop() methods. You can also save custom timestamps using add(). Using the count() method allows you to specify two labels and get the duration between them. Without any arguments or template parameters, this method will get the duration between the "start" and "stop" labels and return the time in seconds as a double.

The functionality is defined in timer.hpp and implemented in timer.cpp.

Signed-off-by: Varun Sharma <varun.sharma@amd.com>
@gbuildx
Copy link
Collaborator

gbuildx commented Jan 5, 2023

Build failed!

Signed-off-by: Varun Sharma <varun.sharma@amd.com>
@gbuildx
Copy link
Collaborator

gbuildx commented Jan 5, 2023

Build successful!

Signed-off-by: Varun Sharma <varun.sharma@amd.com>
@gbuildx
Copy link
Collaborator

gbuildx commented Jan 5, 2023

Build successful!

@varunsh-xilinx varunsh-xilinx merged commit 4a52266 into main Jan 5, 2023
@varunsh-xilinx varunsh-xilinx deleted the add-timer branch January 5, 2023 17:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants