13 lines
291 B
C++
13 lines
291 B
C++
#ifndef TATUM_PROFILE
|
|
#define TATUM_PROFILE
|
|
#include <map>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <memory>
|
|
|
|
#include "tatum/timing_analyzers.hpp"
|
|
|
|
std::map<std::string,std::vector<double>> profile(size_t num_iterations, std::shared_ptr<tatum::TimingAnalyzer> serial_analyzer);
|
|
|
|
#endif
|