Wildmeshing Toolkit
Loading...
Searching...
No Matches
Scheduler.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <spdlog/common.h>
4#include <optional>
6
7namespace wmtk {
8
10{
11public:
18
24 int64_t number_of_failed_operations() const { return m_num_op_fail; }
25
32
33 inline double total_time() const { return collecting_time + sorting_time + executing_time; }
34
35 inline void succeed() { ++m_num_op_success; }
36 inline void fail() { ++m_num_op_fail; }
37
47
48
49 double collecting_time = 0;
50 double sorting_time = 0;
51 double executing_time = 0;
52
53 std::vector<SchedulerStats> sub_stats;
54
56 {
57 double res = 0;
58 for (const auto& s : sub_stats) {
59 res += s.collecting_time;
60 }
61 return res / sub_stats.size();
62 }
63
64 double avg_sub_sorting_time() const
65 {
66 double res = 0;
67 for (const auto& s : sub_stats) {
68 res += s.sorting_time;
69 }
70 return res / sub_stats.size();
71 }
72
74 {
75 double res = 0;
76 for (const auto& s : sub_stats) {
77 res += s.executing_time;
78 }
79 return res / sub_stats.size();
80 }
81
82 // private:
83 int64_t m_num_op_success = 0;
84 int64_t m_num_op_fail = 0;
85
86 void print_update_log(size_t total, spdlog::level::level_enum = spdlog::level::info) const;
87};
88
90{
91public:
94
98 const TypedAttributeHandle<char>& flag_handle);
101 const TypedAttributeHandle<int64_t>& color_handle);
102
103 const SchedulerStats& stats() const { return m_stats; }
104
105 void set_update_frequency(std::optional<size_t>&& freq = {});
106
107private:
109 std::optional<size_t> m_update_frequency = {};
110
111 void log(const size_t total);
112 void log(const SchedulerStats& stats, const size_t total);
113};
114
115} // namespace wmtk
void log(const size_t total)
SchedulerStats run_operation_on_all(operations::Operation &op)
Definition Scheduler.cpp:33
const SchedulerStats & stats() const
SchedulerStats run_operation_on_all_coloring(operations::Operation &op, const TypedAttributeHandle< int64_t > &color_handle)
void set_update_frequency(std::optional< size_t > &&freq={})
SchedulerStats m_stats
std::optional< size_t > m_update_frequency
double total_time() const
Definition Scheduler.hpp:33
std::vector< SchedulerStats > sub_stats
Definition Scheduler.hpp:53
double avg_sub_collecting_time() const
Definition Scheduler.hpp:55
double avg_sub_executing_time() const
Definition Scheduler.hpp:73
int64_t number_of_failed_operations() const
Returns the number of failed operations performed by the scheduler.
Definition Scheduler.hpp:24
void operator+=(const SchedulerStats &s)
Definition Scheduler.hpp:38
int64_t number_of_performed_operations() const
Returns the number of performed operations performed by the scheduler.
Definition Scheduler.hpp:31
double avg_sub_sorting_time() const
Definition Scheduler.hpp:64
int64_t number_of_successful_operations() const
Returns the number of successful operations performed by the scheduler.
Definition Scheduler.hpp:17
void print_update_log(size_t total, spdlog::level::level_enum=spdlog::level::info) const
Handle that represents attributes for some mesh.