Click here to Skip to main content
15,884,298 members
Articles / Programming Languages / C++

Celero - Easy Benchmark Charts for your C++ Algorithms

Rate me:
Please Sign up or sign in to vote.
4.93/5 (11 votes)
7 Nov 2013Apache5 min read 26.9K   1.9K   32  
Discover how Celero makes benchmarking C++ code easy.
#ifndef _CELERO_EXECUTOR_H_
#define _CELERO_EXECUTOR_H_
 
#include <string>
#include <memory>
 
namespace celero
{
	class BenchmarkInfo;

	namespace executor
	{
		void Execute(std::shared_ptr<BenchmarkInfo> x);

		void RunAll();
		bool RunAllBaselines();
		bool RunAllTests();

		void RunGroup(const std::string& x);

		void Run(const std::string& group, const std::string& test);
		void RunBaseline(const std::string& x);
		void RunTest(const std::string& x, const std::string& test);
	}
}

#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Team Leader
United States United States
John Farrier is a professional C++ software engineer that specializes in modeling, simulation, and architecture development.

Specialties:

LVC Modeling & Simulation
Software Engineering, C++11, C++98, C, C#, FORTRAN, Python
Software Performance Optimization
Software Requirements Development
Technical Project and Team Leadership

Comments and Discussions