forked from learning-process/parallel_programming_course
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathperf.cpp
98 lines (81 loc) · 3.43 KB
/
perf.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#include "core/perf/include/perf.hpp"
#include <gtest/gtest.h>
#include <cstdint>
#include <functional>
#include <iomanip>
#include <iostream>
#include <memory>
#include <sstream>
#include <stdexcept>
#include <string>
#include "core/task/include/task.hpp"
ppc::core::Perf::Perf(const std::shared_ptr<Task>& task_ptr) { SetTask(task_ptr); }
void ppc::core::Perf::SetTask(const std::shared_ptr<Task>& task_ptr) {
task_ptr->GetData()->state_of_testing = TaskData::StateOfTesting::kPerf;
this->task_ = task_ptr;
}
void ppc::core::Perf::PipelineRun(const std::shared_ptr<PerfAttr>& perf_attr,
const std::shared_ptr<ppc::core::PerfResults>& perf_results) const {
perf_results->type_of_running = PerfResults::TypeOfRunning::kPipeline;
CommonRun(
perf_attr,
[&]() {
task_->Validation();
task_->PreProcessing();
task_->Run();
task_->PostProcessing();
},
perf_results);
}
void ppc::core::Perf::TaskRun(const std::shared_ptr<PerfAttr>& perf_attr,
const std::shared_ptr<ppc::core::PerfResults>& perf_results) const {
perf_results->type_of_running = PerfResults::TypeOfRunning::kTaskRun;
task_->Validation();
task_->PreProcessing();
CommonRun(perf_attr, [&]() { task_->Run(); }, perf_results);
task_->PostProcessing();
task_->Validation();
task_->PreProcessing();
task_->Run();
task_->PostProcessing();
}
void ppc::core::Perf::CommonRun(const std::shared_ptr<PerfAttr>& perf_attr, const std::function<void()>& pipeline,
const std::shared_ptr<ppc::core::PerfResults>& perf_results) {
auto begin = perf_attr->current_timer();
for (uint64_t i = 0; i < perf_attr->num_running; i++) {
pipeline();
}
auto end = perf_attr->current_timer();
perf_results->time_sec = end - begin;
}
void ppc::core::Perf::PrintPerfStatistic(const std::shared_ptr<PerfResults>& perf_results) {
std::string relative_path(::testing::UnitTest::GetInstance()->current_test_info()->file());
std::string ppc_regex_template("parallel_programming_course");
std::string perf_regex_template("perf_tests");
std::string type_test_name;
auto time_secs = perf_results->time_sec;
if (perf_results->type_of_running == PerfResults::TypeOfRunning::kTaskRun) {
type_test_name = "task_run";
} else if (perf_results->type_of_running == PerfResults::TypeOfRunning::kPipeline) {
type_test_name = "pipeline";
} else {
type_test_name = "none";
}
auto first_found_position = relative_path.find(ppc_regex_template) + ppc_regex_template.length() + 1;
relative_path.erase(0, first_found_position);
auto last_found_position = relative_path.find(perf_regex_template) - 1;
relative_path.erase(last_found_position, relative_path.length() - 1);
std::stringstream perf_res_str;
if (time_secs < PerfResults::kMaxTime) {
perf_res_str << std::fixed << std::setprecision(10) << time_secs;
std::cout << relative_path << ":" << type_test_name << ":" << perf_res_str.str() << '\n';
} else {
std::stringstream err_msg;
err_msg << '\n' << "Task execute time need to be: ";
err_msg << "time < " << PerfResults::kMaxTime << " secs." << '\n';
err_msg << "Original time in secs: " << time_secs << '\n';
perf_res_str << std::fixed << std::setprecision(10) << -1.0;
std::cout << relative_path << ":" << type_test_name << ":" << perf_res_str.str() << '\n';
throw std::runtime_error(err_msg.str().c_str());
}
}