• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "proto/tuningfork.pb.h"
2 
3 #include <functional>
4 
5 namespace mocktuningfork {
6 
7 using ::com::google::tuningfork::FidelityParams;
8 
9 void init(const ::com::google::tuningfork::Settings& settings,
10           const std::function<void(const FidelityParams&)>& callback);
11 void set(const ::com::google::tuningfork::Annotation& a);
12 
13 #define SYS_CPU 0
14 #define SYS_GPU 1
15 void tick(int instrumentKey);
16 
17 } // namespace mocktuningfork
18