Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:47

0001 #ifndef HeterogeneousCore_SonicCore_sonic_utils
0002 #define HeterogeneousCore_SonicCore_sonic_utils
0003 
0004 #include <string_view>
0005 #include <chrono>
0006 
0007 namespace sonic_utils {
0008   using TimePoint = std::chrono::time_point<std::chrono::high_resolution_clock>;
0009 
0010   void printDebugTime(std::string_view debugName, std::string_view msg, const TimePoint& t0);
0011 }  // namespace sonic_utils
0012 
0013 #endif