cpp-perf:用于测量 C++ 代码性能的小型头文件库

时间:2024-06-22 02:08:09
【文件属性】:

文件名称:cpp-perf:用于测量 C++ 代码性能的小型头文件库

文件大小:42KB

文件格式:ZIP

更新时间:2024-06-22 02:08:09

C++

cpp-perf 用于 C++11 的小型、仅标头的性能测量库。 最基本的用法 # include < cpp> int main () { perf::start (); std::this_thread::sleep_for ( perf::milliseconds ( 20 )); perf::stop (); return 0 ; } 输出: 20 ms 在线测量 # include < cpp> int main () { PERF_START (); std::this_thread::sleep_for ( perf::milliseconds ( 20 )); PERF_START (); for ( int i = 0 ; i < 10 ; i++) {


【文件预览】:
cpp-perf-master
----doc()
--------doxygen.sh(28B)
--------Doxyfile(101KB)
----CMakeLists.txt(763B)
----.travis.yml(751B)
----example()
--------basic.cpp(1KB)
--------inline.cpp(2KB)
--------auto.cpp(1KB)
--------CMakeLists.txt(306B)
--------manual.cpp(2KB)
----LICENSE(1KB)
----test()
--------test_format_duration.cpp(2KB)
--------test_format_code_position.cpp(331B)
--------test_timer.cpp(1KB)
--------CMakeLists.txt(666B)
--------test_functions.cpp(2KB)
----README.md(3KB)
----.gitignore(614B)
----include()
--------cpp-perf.hpp(18KB)

网友评论