profiler.h 4.7 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
D
dangqingqing 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */

#pragma once
#include <forward_list>
#include <list>
#include <mutex>
#include <vector>
Y
Yi Wang 已提交
20
#include "paddle/fluid/platform/device_context.h"
21
#include "paddle/fluid/platform/profiler.pb.h"
D
dangqingqing 已提交
22 23 24 25 26 27 28 29

namespace paddle {
namespace platform {

enum EventKind { kMark, kPushRange, kPopRange };

class Event {
 public:
D
dangqingqing 已提交
30 31
  // The DeviceContext is used to get the cuda stream.
  // If CPU profiling mode, can pass nullptr.
D
dangqingqing 已提交
32
  Event(EventKind kind, std::string name, uint32_t thread_id,
D
dangqingqing 已提交
33
        const DeviceContext* dev_ctx);
D
dangqingqing 已提交
34

D
dangqingqing 已提交
35
  std::string kind() const;
D
dangqingqing 已提交
36
  std::string name() const { return name_; }
37
  uint32_t thread_id() const { return thread_id_; }
D
dangqingqing 已提交
38 39 40 41 42 43 44
  bool has_cuda() const { return has_cuda_; }

#ifdef PADDLE_WITH_CUDA
  cudaEvent_t event() const { return event_; }
  int device() const { return device_; }
#endif

45 46
  double CpuElapsedMs(const Event& e) const;
  double CudaElapsedMs(const Event& e) const;
D
dangqingqing 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60

 private:
  EventKind kind_;
  std::string name_;
  uint32_t thread_id_;
  int64_t cpu_ns_;
  bool has_cuda_;
#ifdef PADDLE_WITH_CUDA
  cudaEvent_t event_ = nullptr;
  int device_ = -1;
#endif
};

struct EventList {
D
dangqingqing 已提交
61 62 63 64 65
  constexpr static size_t kMB = 1024 * 1024;
  constexpr static size_t kEventBlockSize = 16 * kMB;
  constexpr static size_t kEventSize = sizeof(Event);
  constexpr static size_t kEventAlign = alignof(Event);
  constexpr static size_t kNumBlock =
D
dangqingqing 已提交
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
      kEventBlockSize /
      ((kEventSize + kEventAlign - 1) / kEventAlign * kEventAlign);

  template <typename... Args>
  void Record(Args&&... args) {
    if (event_blocks.empty() || event_blocks.front().size() == kNumBlock) {
      event_blocks.emplace_front();
      event_blocks.front().reserve(kNumBlock);
    }
    event_blocks.front().emplace_back(std::forward<Args>(args)...);
  }

  std::vector<Event> Reduce() {
    std::vector<Event> result;
    for (auto& block : event_blocks) {
      result.insert(result.begin(), std::make_move_iterator(block.begin()),
                    std::make_move_iterator(block.end()));
    }
    event_blocks.clear();
    return result;
  }

88 89
  void Clear() { event_blocks.clear(); }

D
dangqingqing 已提交
90 91 92 93
  std::forward_list<std::vector<Event>> event_blocks;
};

enum ProfilerState {
D
dangqingqing 已提交
94 95 96
  kDisabled,  // disabled state
  kCPU,       // CPU profiling state
  kCUDA,      // GPU profiling state
97
  kAll,       // Profile both CPU and GPU. (Currently experimental).
D
dangqingqing 已提交
98 99
};

D
dangqingqing 已提交
100
void Mark(const std::string& name, const DeviceContext* dev_ctx);
D
dangqingqing 已提交
101

D
dangqingqing 已提交
102
void PushEvent(const std::string& name, const DeviceContext* dev_ctx);
103

D
dangqingqing 已提交
104
void PopEvent(const std::string& name, const DeviceContext* dev_ctx);
105

D
dangqingqing 已提交
106
struct RecordEvent {
Y
Yibing Liu 已提交
107
  RecordEvent(const std::string& name, const DeviceContext* dev_ctx);
D
dangqingqing 已提交
108

D
dangqingqing 已提交
109 110
  ~RecordEvent();

X
Xin Pan 已提交
111
  uint64_t start_ns_;
D
dangqingqing 已提交
112
  // The device context is used by Event to get the current cuda stream.
D
dangqingqing 已提交
113
  const DeviceContext* dev_ctx_;
Y
Yibing Liu 已提交
114
  // Event name
115
  std::string name_;
116 117 118
  // Need to distinguish name by op type, block_id, program_id and perhaps
  // different kernel invocations within an op.
  std::string full_name_;
D
dangqingqing 已提交
119 120
};

121
// Return the event list of all threads. Assumed the returned value calls
D
dangqingqing 已提交
122
// event_lists, event_lists[i][j] represents the j-th Event of i-th thread.
123
std::vector<std::vector<Event>> GetAllEvents();
D
dangqingqing 已提交
124

125 126 127 128 129 130 131 132 133 134 135 136 137
// The information of each event given in the profiling report
struct EventItem {
  std::string name;
  int calls;
  double total_time;
  double min_time;
  double max_time;
  double ave_time;
};

// Candidate keys to sort the profiling report
enum EventSortingKey { kDefault, kCalls, kTotal, kMin, kMax, kAve };

138 139 140 141 142 143
// Enable the profiling function.
void EnableProfiler(ProfilerState state);

// Clear the g_all_event_lists, which is total event lists of all threads.
void ResetProfiler();

X
Xin Pan 已提交
144 145
void DisableProfiler(EventSortingKey sorted_key,
                     const std::string& profile_path);
146

147 148 149
// Parse the event list and output the profiling report
void ParseEvents(std::vector<std::vector<Event>>&,
                 EventSortingKey sorted_by = EventSortingKey::kDefault);
150

151
// Print results
152 153 154 155
void PrintProfiler(std::vector<std::vector<EventItem>>& events_table,
                   std::string& sorted_domain, const size_t name_width,
                   const size_t data_width);

D
dangqingqing 已提交
156 157
}  // namespace platform
}  // namespace paddle