FAUST compiler  0.9.9.6b8
timing.hh
Go to the documentation of this file.
1 #ifndef __TIMING__
2 #define __TIMING__
3 
4 
5 // use startTiming("foo") and endTiming("foo") to measure the execution time of a portion of code
6 // edit timing.cpp de unactivate the code
7 
8 void startTiming (const char* msg);
9 
10 void endTiming (const char* msg);
11 
12 #endif
13 
14 
void endTiming(const char *msg)
Definition: timing.cpp:43
void startTiming(const char *msg)
Definition: timing.cpp:34