19 inline void vprintf(_In_z_ _Printf_format_string_
const char* format, _In_ va_list arg)
22 _Unreferenced_(format);
25 auto tmp = stdex::vsprintf(format, stdex::locale_default, arg);
26 OutputDebugStringA(tmp.c_str());
28 vfprintf(stdout, format, arg);
32 inline void vprintf(_In_z_ _Printf_format_string_
const wchar_t* format, _In_ va_list arg)
35 _Unreferenced_(format);
38 auto tmp = stdex::vsprintf(format, stdex::locale_default, arg);
39 OutputDebugStringW(tmp.c_str());
41 vfwprintf(stdout, format, arg);
56 inline void printf(_In_z_ _Printf_format_string_
const T* format, ...)
59 _Unreferenced_(format);
62 va_start(arg, format);
71 inline void vprintf(_In_z_ _Printf_format_string_
const char* format, _In_ va_list arg)
74 _Unreferenced_(format);
77 auto tmp = stdex::vsprintf(format, stdex::locale_default, arg);
78 OutputDebugStringA(tmp.c_str());
80 vfprintf(stderr, format, arg);
84 inline void vprintf(_In_z_ _Printf_format_string_
const wchar_t* format, _In_ va_list arg)
87 _Unreferenced_(format);
90 auto tmp = stdex::vsprintf(format, stdex::locale_default, arg);
91 OutputDebugStringW(tmp.c_str());
93 vfwprintf(stderr, format, arg);
108 inline void printf(_In_z_ _Printf_format_string_
const T* format, ...)
111 _Unreferenced_(format);
114 va_start(arg, format);
115 vprintf(format, arg);
133 m_task_name(task_name),
134 m_start(std::chrono::high_resolution_clock::now())
142 auto duration(std::chrono::high_resolution_clock::now() - m_start);
143 stdex::diag::printf(
"%s took %I64i ns\n", m_task_name,
static_cast<int64_t
>(duration.count()));
147 const char* m_task_name;
148 std::chrono::time_point<std::chrono::high_resolution_clock> m_start;
Measures time between initialization and going out of scope.
Definition debug.hpp:125
benchmark(const char *task_name)
Starts the measurement.
Definition debug.hpp:132
~benchmark()
Stops the measurement and outputs the result to the diagnostic console.
Definition debug.hpp:140