An open API service indexing awesome lists of open source software.

https://github.com/massimo-marino/perf-timer

A performance timer for C++ functions
https://github.com/massimo-marino/perf-timer

cpp cpp17 performance performance-testing

Last synced: about 1 year ago
JSON representation

A performance timer for C++ functions

Awesome Lists containing this project

README

          

# perf-timer

C++17 implementation of a simple performance timer for functions.
## Requirements

`cmake 3.26.3` is used to compile the sources.

The cmake files compile with `-std=c++17`.

## Run the Example

```bash
$ git clone https://github.com:massimo-marino/perf-timer.git
$ cd perf-timer/example
$ mkdir build
$ cd build
$ cmake ..
$ make
$ ./perf-timer-example
```

## How to Use it

See the source code in the example.