Initial Commit - Lesson 31 (Commit #1)

This commit is contained in:
Norman Lansing
2026-02-24 22:39:26 -05:00
commit 9591e7f503
4631 changed files with 1019212 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
// Copyright (C) 2003 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_TIME_THIs_
#define DLIB_TIME_THIs_
#include <chrono>
// ----------------------------------------------------------------------------------------
#define TIME_THIS_TO(_tt_op,_tt_out) \
{ \
auto _tt_start = std::chrono::high_resolution_clock::now(); \
{_tt_op;} \
auto _tt_stop = std::chrono::high_resolution_clock::now(); \
auto _tt_thetime = _tt_stop-_tt_start; \
using std::chrono::duration_cast; \
using std::chrono::duration; \
if (_tt_thetime >= std::chrono::minutes(1)) \
_tt_out << "\ntime: " << duration_cast<duration<double,std::ratio<60>>>(_tt_thetime).count() << "min\n"; \
else if (_tt_thetime >= std::chrono::seconds(1)) \
_tt_out << "\ntime: " << duration_cast<duration<double>>(_tt_thetime).count() << "sec\n"; \
else if (_tt_thetime >= std::chrono::milliseconds(1)) \
_tt_out << "\ntime: " << duration_cast<duration<double,std::milli>>(_tt_thetime).count() << "ms\n"; \
else if (_tt_thetime >= std::chrono::microseconds(1)) \
_tt_out << "\ntime: " << duration_cast<duration<double,std::micro>>(_tt_thetime).count() << "us\n"; \
else \
_tt_out << "\ntime: " << duration_cast<duration<double,std::nano>>(_tt_thetime).count() << "ns\n"; \
}
#define TIME_THIS(_tt_op) TIME_THIS_TO(_tt_op,std::cout)
// ----------------------------------------------------------------------------------------
#endif // DLIB_TIME_THIs_