Skip to content

Releases: DigitalInBlue/Celero

Celero v2.0.4

21 Mar 23:46
Compare
Choose a tag to compare

This release updates the "Sorting Random Ints" example and updates the documentation accordingly.

Celero v2.0.3

20 Mar 18:02
Compare
Choose a tag to compare

This release contains minor documentation updates and compiler-specific fixes.

Celero v2.0.2

13 Nov 00:57
Compare
Choose a tag to compare

This version changed the default problem space value created when no problem spaces are specified by a benchmark. In the previous release, if no problem space value was defined, then Clero would create a problem space with a default value of zero. This release changed this to the constant TestFixture::Constants::NoProblemSpaceValue. The core problem is that if nothing is done at all to add a default problem space, then the number of iterations for a result is not set, and the benchmark code is ran only a single time. There is a better solution for this, but this should be an improvement for now.

This release also added a new demo for finding the fastest way to convert an integer to a std::string.

Celero v2.0.1

07 Jul 00:19
Compare
Choose a tag to compare

The update to v2.0.0 improved the way experiment values and units were implemented. However, there was an oversight in that if these more complex features were not used, only a single iteration of the code under test was executed. This was resolved in v2.0.1. No API changes were implemented. Minor documentation updates were also performed.

Celero v2.0.0

26 Jun 00:33
Compare
Choose a tag to compare

This release adds a few great new features. First, it allows for automatic threading of test cases using fixtures and a user-defined number of concurrent threads.

Second, this version allows the user to define a hard-coded baseline measurement for measuring performance against real-world measurements, hardware, or time requirements.

Finally, Celero now allows for dynamic control of the number of iterations based on the problem space value. This means that you can ramp-down the number of iterations as problem complexity increases which can decrease the amount of time required to make the measurements while maintaining accuracy for both large and small data sets.

Celero v1.2.0

09 Apr 14:48
Compare
Choose a tag to compare

This release includes multithreaded tests and user-defined units for expressing results. This was tested using GCC, Clang, and Visual Studio on x64 architectures.

Celero v1.1.1

26 Mar 01:14
Compare
Choose a tag to compare
  • This release fixes the previous release not properly running benchmarks which lacked a problem space definition.
  • Console output was completely revamped.
  • Table output was completely revamped and expanded.
  • README.md and CONTRIBUTING.md were updated.

Celero v1.1.0

22 Mar 23:56
Compare
Choose a tag to compare

This version of Celero includes two new test fixture functions: onExperimentStart and onExperimentEnd. Unlike setup and teardown, these functions are called each once for ever N calls to the benchmarking function and are included in the measurement.

Celero v1.0.9

09 Feb 00:33
Compare
Choose a tag to compare

This version adds a new directory structure to support demo projects as well as experiments. Users are encouraged to submit their own demo and experiments projects (following the project naming convention and general CMake format) on the "develop" branch.

Celero v1.0.8

19 Jan 00:49
Compare
Choose a tag to compare

This release adds a summary output to the console for all experiments. Additionally, improvements were made to the timing output for Windows.