profiler.cc 9.6 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
D
dangqingqing 已提交
2 3 4 5

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
6

D
dangqingqing 已提交
7 8 9 10 11 12 13 14
    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. */

15
#include <algorithm>
16
#include <iomanip>
17
#include <limits>
18
#include <map>
19
#include <mutex>  // NOLINT
20
#include <random>
21
#include <stack>
22
#include <string>
C
chengduo 已提交
23
#include <vector>
24 25 26
#ifdef PADDLE_WITH_CUDA
#include <cuda.h>
#endif  // PADDLE_WITH_CUDA
Y
Yancey1989 已提交
27

28
#include "glog/logging.h"
29 30
#include "paddle/fluid/framework/block_desc.h"
#include "paddle/fluid/platform/device_tracer.h"
W
wangchaochaohu 已提交
31 32
#include "paddle/fluid/platform/enforce.h"
#include "paddle/fluid/platform/errors.h"
Y
Yancey1989 已提交
33
#include "paddle/fluid/platform/port.h"
W
wangchaochaohu 已提交
34 35
#include "paddle/fluid/platform/profiler.h"
#include "paddle/fluid/platform/profiler_helper.h"
36
#include "paddle/fluid/string/printf.h"
D
dangqingqing 已提交
37

G
gongweibao 已提交
38 39
DEFINE_bool(enable_rpc_profiler, false, "Enable rpc profiler or not.");

D
dangqingqing 已提交
40 41 42
namespace paddle {
namespace platform {

W
wangchaochaohu 已提交
43
MemEvenRecorder MemEvenRecorder::recorder;
D
dangqingqing 已提交
44

45 46
Event::Event(EventType type, std::string name, uint32_t thread_id)
    : type_(type), name_(name), thread_id_(thread_id) {
D
dangqingqing 已提交
47 48 49
  cpu_ns_ = GetTimeInNsec();
}

C
chengduo 已提交
50
const EventType &Event::type() const { return type_; }
D
dangqingqing 已提交
51

C
chengduo 已提交
52
double Event::CpuElapsedMs(const Event &e) const {
53
  return (e.cpu_ns_ - cpu_ns_) / (1000000.0);
D
dangqingqing 已提交
54 55
}

C
chengduo 已提交
56
double Event::CudaElapsedMs(const Event &e) const {
57 58
#ifdef PADDLE_WITH_CUPTI
  return gpu_ns_ / 1000000.0;
D
Dun Liang 已提交
59
#else
D
Dun Liang 已提交
60 61
  LOG_FIRST_N(WARNING, 1) << "CUDA CUPTI is not enabled";
  return 0;
D
dangqingqing 已提交
62 63 64
#endif
}

65 66
RecordEvent::RecordEvent(const std::string &name, const RecordRole role)
    : is_enabled_(false), start_ns_(PosixInNsec()), role_(role) {
67
  if (g_state == ProfilerState::kDisabled || name.empty()) return;
68
  // lock is not needed, the code below is thread-safe
X
Xin Pan 已提交
69
  is_enabled_ = true;
70
  Event *e = PushEvent(name);
71
  // Maybe need the same push/pop behavior.
72
  SetCurAnnotation(e);
73
  name_ = e->name();
D
dangqingqing 已提交
74 75 76
}

RecordEvent::~RecordEvent() {
X
Xin Pan 已提交
77
  if (g_state == ProfilerState::kDisabled || !is_enabled_) return;
78
  // lock is not needed, the code below is thread-safe
C
chengduo 已提交
79
  DeviceTracer *tracer = GetDeviceTracer();
X
Xin Pan 已提交
80
  if (tracer) {
81
    tracer->AddCPURecords(CurAnnotationName(), start_ns_, PosixInNsec(),
82
                          BlockDepth(), g_thread_id);
X
Xin Pan 已提交
83
  }
Y
Yibing Liu 已提交
84
  ClearCurAnnotation();
85
  PopEvent(name_);
D
dangqingqing 已提交
86
}
D
dangqingqing 已提交
87

C
chengduo 已提交
88 89 90 91 92
void MemEvenRecorder::PushMemRecord(const void *ptr, const Place &place,
                                    size_t size) {
  if (g_state == ProfilerState::kDisabled) return;
  std::lock_guard<std::mutex> guard(mtx_);
  auto &events = address_memevent_[place];
W
wangchaochaohu 已提交
93 94 95 96
  PADDLE_ENFORCE_EQ(
      events.count(ptr), 0,
      platform::errors::InvalidArgument(
          "The Place can't  exist in the stage of PushMemRecord"));
C
chengduo 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
  events.emplace(ptr, std::unique_ptr<RecordMemEvent>(
                          new MemEvenRecorder::RecordMemEvent(place, size)));
}

void MemEvenRecorder::PopMemRecord(const void *ptr, const Place &place) {
  if (g_state == ProfilerState::kDisabled) return;
  std::lock_guard<std::mutex> guard(mtx_);
  auto &events = address_memevent_[place];
  auto iter = events.find(ptr);
  // The ptr maybe not in address_memevent
  if (iter != events.end()) {
    events.erase(iter);
  }
}

void MemEvenRecorder::Flush() {
  std::lock_guard<std::mutex> guard(mtx_);
  address_memevent_.clear();
}

MemEvenRecorder::RecordMemEvent::RecordMemEvent(const Place &place,
                                                size_t bytes)
    : place_(place),
      bytes_(bytes),
      start_ns_(PosixInNsec()),
      alloc_in_(CurAnnotationName()) {
  PushMemEvent(start_ns_, end_ns_, bytes_, place_, alloc_in_);
}

MemEvenRecorder::RecordMemEvent::~RecordMemEvent() {
  DeviceTracer *tracer = GetDeviceTracer();
  end_ns_ = PosixInNsec();

  auto annotation_free = CurAnnotationName();
  if (tracer) {
    tracer->AddMemInfoRecord(start_ns_, end_ns_, bytes_, place_, alloc_in_,
                             annotation_free, g_mem_thread_id);
  }
  PopMemEvent(start_ns_, end_ns_, bytes_, place_, annotation_free);
}

RecordRPCEvent::RecordRPCEvent(const std::string &name) {
G
gongweibao 已提交
139
  if (FLAGS_enable_rpc_profiler) {
140
    event_.reset(new platform::RecordEvent(name));
G
gongweibao 已提交
141 142 143
  }
}

X
Xin Pan 已提交
144 145
RecordBlock::RecordBlock(int block_id)
    : is_enabled_(false), start_ns_(PosixInNsec()) {
146
  // lock is not needed, the code below is thread-safe
X
Xin Pan 已提交
147
  if (g_state == ProfilerState::kDisabled) return;
X
Xin Pan 已提交
148
  is_enabled_ = true;
X
Xin Pan 已提交
149 150 151 152 153
  SetCurBlock(block_id);
  name_ = string::Sprintf("block_%d", block_id);
}

RecordBlock::~RecordBlock() {
154
  // lock is not needed, the code below is thread-safe
X
Xin Pan 已提交
155
  if (g_state == ProfilerState::kDisabled || !is_enabled_) return;
C
chengduo 已提交
156
  DeviceTracer *tracer = GetDeviceTracer();
X
Xin Pan 已提交
157 158 159 160
  if (tracer) {
    // We try to put all blocks at the same nested depth in the
    // same timeline lane. and distinguish the using thread_id.
    tracer->AddCPURecords(name_, start_ns_, PosixInNsec(), BlockDepth(),
161
                          g_thread_id);
X
Xin Pan 已提交
162 163 164 165
  }
  ClearCurBlock();
}

W
wangchaochaohu 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
void PushMemEvent(uint64_t start_ns, uint64_t end_ns, size_t bytes,
                  const Place &place, const std::string &annotation) {
  GetMemEventList().Record(EventType::kPushRange, start_ns, end_ns, bytes,
                           place, g_mem_thread_id, annotation);
}

void PopMemEvent(uint64_t start_ns, uint64_t end_ns, size_t bytes,
                 const Place &place, const std::string &annotation) {
  GetMemEventList().Record(EventType::kPopRange, start_ns, end_ns, bytes, place,
                           g_mem_thread_id, annotation);
}

void Mark(const std::string &name) {
  GetEventList().Record(EventType::kMark, name, g_thread_id);
}

Event *PushEvent(const std::string &name) {
  return GetEventList().Record(EventType::kPushRange, name, g_thread_id);
184 185
}

W
wangchaochaohu 已提交
186 187 188
void PopEvent(const std::string &name) {
  GetEventList().Record(EventType::kPopRange, name, g_thread_id);
}
D
dangqingqing 已提交
189
void EnableProfiler(ProfilerState state) {
W
wangchaochaohu 已提交
190 191 192 193
  PADDLE_ENFORCE_NE(state, ProfilerState::kDisabled,
                    platform::errors::InvalidArgument(
                        "Can't enable profiling, since the input state is"
                        "ProfilerState::kDisabled"));
194
  SynchronizeAllDevice();
X
Xin Pan 已提交
195
  std::lock_guard<std::mutex> l(profiler_mu);
196 197
  if (state == g_state) {
    return;
198
  }
199
  g_state = state;
X
Xin Pan 已提交
200
  should_send_profile_state = true;
201
  GetDeviceTracer()->Enable();
D
dangqingqing 已提交
202
#ifdef PADDLE_WITH_CUDA
203 204
  if (g_state == ProfilerState::kCUDA || g_state == ProfilerState::kAll ||
      g_state == ProfilerState::kCPU) {
205
    // Generate some dummy events first to reduce the startup overhead.
206 207
    DummyKernelAndEvent();
    GetDeviceTracer()->Reset();
D
dangqingqing 已提交
208 209 210
  }
#endif
  // Mark the profiling start.
211
  Mark("_start_profiler_");
D
dangqingqing 已提交
212 213
}

214
void ResetProfiler() {
215 216
  SynchronizeAllDevice();
  GetDeviceTracer()->Reset();
C
chengduo 已提交
217
  MemEvenRecorder::Instance().Flush();
D
dangqingqing 已提交
218
  std::lock_guard<std::mutex> guard(g_all_event_lists_mutex);
219 220 221 222
  for (auto it = g_all_event_lists.begin(); it != g_all_event_lists.end();
       ++it) {
    (*it)->Clear();
  }
C
chengduo 已提交
223 224 225 226
  for (auto it = g_all_mem_event_lists.begin();
       it != g_all_mem_event_lists.end(); ++it) {
    (*it)->Clear();
  }
227 228
}

229
void DisableProfiler(EventSortingKey sorted_key,
C
chengduo 已提交
230
                     const std::string &profile_path) {
231
  SynchronizeAllDevice();
C
chengduo 已提交
232 233
  MemEvenRecorder::Instance().Flush();

X
Xin Pan 已提交
234
  std::lock_guard<std::mutex> l(profiler_mu);
235
  if (g_state == ProfilerState::kDisabled) return;
236
  // Mark the profiling stop.
237
  Mark("_stop_profiler_");
238
  DealWithShowName();
239

C
chengduo 已提交
240
  DeviceTracer *tracer = GetDeviceTracer();
241
  if (tracer->IsEnabled()) {
242
    tracer->Disable();
243
    tracer->GenEventKernelCudaElapsedTime();
244
    tracer->GenProfile(profile_path);
245
  }
246 247

  std::vector<std::vector<Event>> all_events = GetAllEvents();
248

249 250
  ParseEvents(all_events, true, sorted_key);
  ParseEvents(all_events, false, sorted_key);
C
chengduo 已提交
251 252 253 254 255
  if (VLOG_IS_ON(5)) {
    std::vector<std::vector<MemEvent>> all_mem_events = GetMemEvents();
    ParseMemEvents(all_mem_events);
  }

256
  ResetProfiler();
257
  g_state = ProfilerState::kDisabled;
X
Xin Pan 已提交
258
  should_send_profile_state = true;
259 260
}

W
wangchaochaohu 已提交
261 262 263 264 265 266 267 268 269 270
std::vector<std::vector<Event>> GetAllEvents() {
  std::lock_guard<std::mutex> guard(g_all_event_lists_mutex);
  std::vector<std::vector<Event>> result;
  for (auto it = g_all_event_lists.begin(); it != g_all_event_lists.end();
       ++it) {
    result.emplace_back((*it)->Reduce());
  }
  return result;
}

271 272
bool IsProfileEnabled() { return g_state != ProfilerState::kDisabled; }

W
wangchaochaohu 已提交
273
bool ShouldSendProfileState() { return should_send_profile_state; }
274

275 276 277 278 279 280 281 282
std::string OpName(const framework::VariableNameMap &name_map,
                   const std::string &type_name) {
  if (platform::GetTracerOption() != platform::TracerOption::kAllOpDetail)
    return "";

  std::string ret = type_name + "%";
  for (auto it = name_map.begin(); it != name_map.end(); it++) {
    auto name_outputs = it->second;
283
    if (!name_outputs.empty()) {
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
      ret = ret + name_outputs[0];
      break;
    }
  }
  ret = ret + "%";

  return ret;
}

void SetTracerOption(TracerOption option) {
  std::lock_guard<std::mutex> l(profiler_mu);
  g_tracer_option = option;
}

platform::TracerOption GetTracerOption() { return g_tracer_option; }
W
wangchaochaohu 已提交
299 300 301 302 303 304 305 306 307 308 309

void SetProfileListener() {
  std::mt19937 rng;
  rng.seed(std::random_device()());
  std::uniform_int_distribution<std::mt19937::result_type> dist6(
      1, std::numeric_limits<int>::max());
  profiler_lister_id = dist6(rng);
}

int64_t ListenerId() { return profiler_lister_id; }

D
dangqingqing 已提交
310 311
}  // namespace platform
}  // namespace paddle