FastDeploy  latest
Fast & Easy to Deploy!
All Classes Namespaces Files Functions Variables Enumerations Enumerator Pages
perf.h
1 // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include "fastdeploy/utils/utils.h"
18 #include <chrono> // NOLINT
19 
20 namespace fastdeploy {
21 
22 class FASTDEPLOY_DECL TimeCounter {
23  public:
24  void Start() { begin_ = std::chrono::system_clock::now(); }
25 
26  void End() { end_ = std::chrono::system_clock::now(); }
27 
28  double Duration() {
29  auto duration =
30  std::chrono::duration_cast<std::chrono::microseconds>(end_ - begin_);
31  return static_cast<double>(duration.count()) *
32  std::chrono::microseconds::period::num /
33  std::chrono::microseconds::period::den;
34  }
35 
36  void PrintInfo(const std::string& prefix = "TimeCounter: ",
37  bool print_out = true) {
38  if (!print_out) {
39  return;
40  }
41  FDLogger() << prefix << " duration = " << Duration() << "s." << std::endl;
42  }
43 
44  private:
45  std::chrono::time_point<std::chrono::system_clock> begin_;
46  std::chrono::time_point<std::chrono::system_clock> end_;
47 };
48 
49 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16