netgen/libsrc/core/utils.cpp

43 lines
1.2 KiB
C++
Raw Normal View History

2019-01-02 22:38:03 +05:00
#include "utils.hpp"
2019-01-03 19:54:50 +05:00
#include "logging.hpp"
2019-01-02 22:38:03 +05:00
#ifndef WIN32
#include <cxxabi.h>
#endif
2019-01-03 19:54:50 +05:00
#include <iostream>
2019-01-02 22:38:03 +05:00
namespace ngcore
{
2019-01-14 17:04:27 +05:00
// parallel netgen
int id = 0, ntasks = 1;
2019-01-02 22:38:03 +05:00
#ifdef WIN32
// windows does demangling in typeid(T).name()
NGCORE_API std::string Demangle(const char* typeinfo) { return typeinfo; }
#else
NGCORE_API std::string Demangle(const char* typeinfo) { int status; return abi::__cxa_demangle(typeinfo,
nullptr,
nullptr,
&status); }
2019-01-08 17:12:12 +05:00
#endif
2019-01-03 19:54:50 +05:00
double ticks_per_second = [] () noexcept
{
auto tick_start = GetTimeCounter();
double tstart = WallTime();
double tend = WallTime()+0.001;
// wait for 1ms and compare wall time with time counter
while(WallTime()<tend);
auto tick_end = GetTimeCounter();
tend = WallTime();
return static_cast<double>(tick_end-tick_start)/(tend-tstart);
2019-01-03 19:54:50 +05:00
}();
const std::chrono::time_point<TClock> wall_time_start = TClock::now();
2019-01-02 22:38:03 +05:00
} // namespace ngcore