-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathx_block_measure.hpp
35 lines (30 loc) · 953 Bytes
/
x_block_measure.hpp
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
//
// x_block_measure.hpp
// x
//
// Created by Daher Alfawares on 1/26/18.
// Copyright © 2018 Daher Alfawares. All rights reserved.
//
#ifndef x_block_measure_hpp
#define x_block_measure_hpp
#include <iostream>
#include <ctime>
namespace x {
namespace block {
class measure {
const char* block_name;
std::chrono::high_resolution_clock::time_point start;
public:
measure(const char* block_name){
this->block_name = block_name;
this->start = std::chrono::high_resolution_clock::now();
}
~measure(){
auto end = std::chrono::high_resolution_clock::now();
std::cout << "block execution: " << this->block_name << "(" << std::chrono::duration<double, std::milli>(end-start).count()
<< " ms)" << std::endl;
}
};
}
}
#endif /* x_block_measure_hpp */