TeDDy 4.1.0
Decision diagram library.
Loading...
Searching...
No Matches
stats.hpp
1#ifndef LIBTEDDY_DETAILS_STATS_HPP
2#define LIBTEDDY_DETAILS_STATS_HPP
3
4#include <libteddy/details/config.hpp>
5#ifdef LIBTEDDY_COLLECT_STATS
6
7# include <libteddy/details/types.hpp>
8
9# include <chrono>
10# include <iostream>
11
12namespace teddy::stats
13{
14struct teddy_stats
15{
16 struct query_frequency
17 {
18 int64 hitCount_ {0};
19 int64 totalCount_ {0};
20 };
21
22 struct operation_duration
23 {
24 std::chrono::time_point<std::chrono::high_resolution_clock> start_;
25 std::chrono::nanoseconds total_ {std::chrono::nanoseconds::zero()};
26 };
27
28 int64 applyStepCalls_ {0};
29 int64 maxUniqueNodes_ {0};
30 int64 maxAllocatedNodes_ {0};
31 query_frequency uniqueTableQueries_;
32 query_frequency applyCacheQueries_;
33 operation_duration collectGarbage_;
34 operation_duration makeNode_;
35};
36
37inline auto get_stats () -> teddy_stats&
38{
39 static teddy_stats instance;
40 return instance;
41}
42
43inline auto tick (teddy_stats::operation_duration& stat) -> void
44{
45 stat.start_ = std::chrono::high_resolution_clock::now();
46}
47
48inline auto tock (teddy_stats::operation_duration& stat) -> void
49{
50 stat.total_ += std::chrono::duration_cast<std::chrono::nanoseconds>(
51 std::chrono::high_resolution_clock::now() - stat.start_
52 );
53}
54} // namespace teddy::stats
55
56namespace teddy
57{
58inline auto dump_stats () -> void
59{
60 auto& stats = stats::get_stats();
61 std::cout << "Unique table"
62 << "\n"
63 << " hit = " << stats.uniqueTableQueries_.hitCount_ << "\n"
64 << " total = " << stats.uniqueTableQueries_.totalCount_ << "\n"
65 << "Apply cache"
66 << "\n"
67 << " hit = " << stats.applyCacheQueries_.hitCount_ << "\n"
68 << " total = " << stats.applyCacheQueries_.totalCount_ << "\n"
69 << "Collect garbage"
70 << "\n"
71 << " total = " << stats.collectGarbage_.total_.count() << "ns\n"
72 << "Make node"
73 << "\n"
74 << " total = " << stats.makeNode_.total_.count() << "ns\n"
75 << "Apply step"
76 << "\n"
77 << " calls = " << stats.applyStepCalls_ << "\n";
78}
79} // namespace teddy
80
81#endif // LIBTEDDY_COLLECT_STATS
82#endif // LIBTEDDY_DETAILS_STATS_HPP