profiler.cc 12.8 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. */

Y
Yi Wang 已提交
15
#include "paddle/fluid/platform/profiler.h"
16
#include <iomanip>
17
#include <map>
18 19 20
#ifdef PADDLE_WITH_CUDA
#include <cuda.h>
#endif  // PADDLE_WITH_CUDA
21
#include "glog/logging.h"
22 23 24
#include "paddle/fluid/framework/block_desc.h"
#include "paddle/fluid/platform/device_tracer.h"
#include "paddle/fluid/string/printf.h"
D
dangqingqing 已提交
25 26 27 28

namespace paddle {
namespace platform {

D
dangqingqing 已提交
29 30
// The profiler state, the initial value is ProfilerState::kDisabled
static ProfilerState g_state = ProfilerState::kDisabled;
31 32
// To record which timer the profiler used, CUDA or CPU.
static std::string g_profiler_place = "";
D
dangqingqing 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
// The thread local event list only can be accessed by the specific thread
// The thread index of each thread
static thread_local int32_t g_thread_id;
// The g_next_thread_id is a global counter for threads, by the g_thread_id and
// g_next_thread_id, we can know how many threads have created EventList.
static uint32_t g_next_thread_id = 0;
// The global mutex
static std::mutex g_all_event_lists_mutex;
// The total event lists of all threads
static std::list<std::shared_ptr<EventList>> g_all_event_lists;
// The thread local event list only can be accessed by the specific thread
static thread_local std::shared_ptr<EventList> g_event_list;

inline uint64_t GetTimeInNsec() {
  using clock = std::conditional<std::chrono::high_resolution_clock::is_steady,
                                 std::chrono::high_resolution_clock,
                                 std::chrono::steady_clock>::type;
  return std::chrono::duration_cast<std::chrono::nanoseconds>(
             clock::now().time_since_epoch())
      .count();
}

Event::Event(EventKind kind, std::string name, uint32_t thread_id,
D
dangqingqing 已提交
56
             const DeviceContext* dev_ctx)
57
    : kind_(kind), name_(name), thread_id_(thread_id), has_cuda_(false) {
D
dangqingqing 已提交
58
#ifdef PADDLE_WITH_CUDA
D
dangqingqing 已提交
59 60 61
  has_cuda_ = dev_ctx ? platform::is_gpu_place(dev_ctx->GetPlace()) : false;
  if (has_cuda_) {
    auto* cuda_dev_ctx = static_cast<const CUDADeviceContext*>(dev_ctx);
D
dangqingqing 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
    PADDLE_ENFORCE(cudaGetDevice(&device_));
    PADDLE_ENFORCE(cudaEventCreate(&event_));
    auto stream = cuda_dev_ctx->stream();
    PADDLE_ENFORCE(cudaEventRecord(event_, stream));
  }
#endif
  cpu_ns_ = GetTimeInNsec();
}

std::string Event::kind() const {
  switch (kind_) {
    case EventKind::kMark:
      return "mark";
    case EventKind::kPushRange:
      return "push";
    case EventKind::kPopRange:
      return "pop";
  }
  PADDLE_THROW("Unknown EventKind.");
}

83 84
double Event::CpuElapsedMs(const Event& e) const {
  return (e.cpu_ns_ - cpu_ns_) / (1000000.0);
D
dangqingqing 已提交
85 86
}

87
double Event::CudaElapsedMs(const Event& e) const {
D
dangqingqing 已提交
88 89 90 91 92 93 94
#ifdef PADDLE_WITH_CUDA
  PADDLE_ENFORCE(e.has_cuda() && has_cuda());
  PADDLE_ENFORCE(e.device() == device());
  PADDLE_ENFORCE(cudaEventSynchronize(event_));
  PADDLE_ENFORCE(cudaEventSynchronize(e.event()));
  float ms;
  PADDLE_ENFORCE(cudaEventElapsedTime(&ms, event_, e.event()));
95
  return ms;
D
dangqingqing 已提交
96 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
#else
  PADDLE_THROW("CUDA is not enabled");
#endif
}

#ifdef PADDLE_WITH_CUDA
static void ForEachDevice(std::function<void(int)> func) {
  auto original_device = GetCurrentDeviceId();
  int count = GetCUDADeviceCount();
  for (int i = 0; i < count; i++) {
    SetDeviceId(i);
    func(i);
  }
  SetDeviceId(original_device);
}
#endif

inline EventList& GetEventList() {
  if (!g_event_list) {
    std::lock_guard<std::mutex> guard(g_all_event_lists_mutex);
    g_event_list = std::make_shared<EventList>();
    g_thread_id = g_next_thread_id++;
    g_all_event_lists.emplace_front(g_event_list);
  }
  return *g_event_list;
}

D
dangqingqing 已提交
123
void Mark(const std::string& name, const DeviceContext* dev_ctx) {
124 125 126
  GetEventList().Record(EventKind::kMark, name, g_thread_id, dev_ctx);
}

D
dangqingqing 已提交
127
void PushEvent(const std::string& name, const DeviceContext* dev_ctx) {
128 129 130
  GetEventList().Record(EventKind::kPushRange, name, g_thread_id, dev_ctx);
}

D
dangqingqing 已提交
131
void PopEvent(const std::string& name, const DeviceContext* dev_ctx) {
132
  GetEventList().Record(EventKind::kPopRange, name, g_thread_id, dev_ctx);
D
dangqingqing 已提交
133 134
}

135 136
RecordEvent::RecordEvent(const std::string& name, const DeviceContext* dev_ctx,
                         int32_t block_id) {
D
dangqingqing 已提交
137 138
  if (g_state == ProfilerState::kDisabled) return;
  dev_ctx_ = dev_ctx;
Y
Yibing Liu 已提交
139
  name_ = name;
140
  PushEvent(name_, dev_ctx_);
141 142 143 144

  full_name_ = string::Sprintf("%s_b%d", name, block_id);
  // Maybe need the same push/pop behavior.
  SetCurAnnotation(full_name_.c_str());
D
dangqingqing 已提交
145 146 147
}

RecordEvent::~RecordEvent() {
148
  ClearCurAnnotation();
D
dangqingqing 已提交
149
  if (g_state == ProfilerState::kDisabled) return;
150
  PopEvent(name_, dev_ctx_);
D
dangqingqing 已提交
151
}
D
dangqingqing 已提交
152 153 154 155 156

void EnableProfiler(ProfilerState state) {
  PADDLE_ENFORCE(state != ProfilerState::kDisabled,
                 "Can't enbale profling, since the input state is ",
                 "ProfilerState::kDisabled");
D
dangqingqing 已提交
157
  PADDLE_ENFORCE(g_state == ProfilerState::kDisabled,
D
dangqingqing 已提交
158 159
                 "The profiling state should be disabled when calling ",
                 "EnableProfiler.");
D
dangqingqing 已提交
160
  g_state = state;
161 162 163 164 165 166 167 168
  if (g_state == ProfilerState::kCUDA) {
    g_profiler_place = "CUDA";
  } else if (g_state == ProfilerState::kCPU) {
    g_profiler_place = "CPU";
  } else {
    g_profiler_place = "All";
    GetDeviceTracer()->Enable();
  }
D
dangqingqing 已提交
169
#ifdef PADDLE_WITH_CUDA
D
dangqingqing 已提交
170
  if (g_state == ProfilerState::kCUDA) {
D
dangqingqing 已提交
171 172 173
    // Generate some dummy evenets first to reduce the startup overhead.
    for (int i = 0; i < 5; i++) {
      ForEachDevice([](int d) {
D
dangqingqing 已提交
174
        DeviceContext* dev_ctx = new CUDADeviceContext(CUDAPlace(d));
D
dangqingqing 已提交
175 176
        Mark("_cuda_startup_", dev_ctx);
        dev_ctx->Wait();
D
dangqingqing 已提交
177
        delete dev_ctx;
D
dangqingqing 已提交
178 179 180 181 182
      });
    }
  }
#endif
  // Mark the profiling start.
D
dangqingqing 已提交
183
  Mark("_start_profiler_", nullptr);
D
dangqingqing 已提交
184 185
}

186
void ResetProfiler() {
D
dangqingqing 已提交
187
  std::lock_guard<std::mutex> guard(g_all_event_lists_mutex);
188 189 190 191 192 193 194 195 196
  for (auto it = g_all_event_lists.begin(); it != g_all_event_lists.end();
       ++it) {
    (*it)->Clear();
  }
}

std::vector<std::vector<Event>> GetAllEvents() {
  std::lock_guard<std::mutex> guard(g_all_event_lists_mutex);
  std::vector<std::vector<Event>> result;
D
dangqingqing 已提交
197 198 199
  for (auto it = g_all_event_lists.begin(); it != g_all_event_lists.end();
       ++it) {
    result.emplace_back((*it)->Reduce());
D
dangqingqing 已提交
200 201 202 203
  }
  return result;
}

204 205 206 207 208 209 210
void DisableProfiler(EventSortingKey sorted_key) {
  PADDLE_ENFORCE(g_state != ProfilerState::kDisabled,
                 "Can't disable profiling, since it's not starting.");
  // Mark the profiling stop.
  Mark("_stop_profiler_", nullptr);
  g_state = ProfilerState::kDisabled;

211 212 213 214 215 216
  DeviceTracer* tracer = GetDeviceTracer();
  if (g_profiler_place == "All" && tracer && tracer->IsEnabled()) {
    tracer->Disable();
    tracer->GenProfile();
  }

217 218 219 220 221
  std::vector<std::vector<Event>> all_events = GetAllEvents();
  ParseEvents(all_events, sorted_key);
  ResetProfiler();
}

222 223
void ParseEvents(std::vector<std::vector<Event>>& events,
                 EventSortingKey sorted_by) {
Y
Yibing Liu 已提交
224
  if (g_profiler_place == "") return;
225 226

  std::string sorted_domain;
L
Luo Tao 已提交
227
  std::function<bool(const EventItem&, const EventItem&)> sorted_func;
228 229 230
  switch (sorted_by) {
    case EventSortingKey::kCalls:
      sorted_domain = "number of calls";
L
Luo Tao 已提交
231
      sorted_func = [](const EventItem& a, const EventItem& b) {
232 233 234 235 236
        return a.calls > b.calls;
      };
      break;
    case EventSortingKey::kTotal:
      sorted_domain = "total time";
L
Luo Tao 已提交
237
      sorted_func = [](const EventItem& a, const EventItem& b) {
238 239 240 241 242
        return a.total_time > b.total_time;
      };
      break;
    case EventSortingKey::kMin:
      sorted_domain = "minimum time";
L
Luo Tao 已提交
243
      sorted_func = [](const EventItem& a, const EventItem& b) {
244 245 246 247 248
        return a.min_time > b.min_time;
      };
      break;
    case EventSortingKey::kMax:
      sorted_domain = "maximum time";
L
Luo Tao 已提交
249
      sorted_func = [](const EventItem& a, const EventItem& b) {
250 251 252 253 254
        return a.max_time > b.max_time;
      };
      break;
    case EventSortingKey::kAve:
      sorted_domain = "average time";
L
Luo Tao 已提交
255
      sorted_func = [](const EventItem& a, const EventItem& b) {
256 257 258 259
        return a.ave_time > b.ave_time;
      };
      break;
    default:
260
      sorted_domain = "event first end time";
261 262
  }

263
  std::vector<std::vector<EventItem>> events_table;
Y
Yibing Liu 已提交
264
  size_t max_name_width = 0;
265 266
  for (size_t i = 0; i < events.size(); i++) {
    std::list<Event> pushed_events;
267 268 269
    std::vector<EventItem> event_items;
    std::unordered_map<std::string, int> event_idx;

270 271 272
    for (size_t j = 0; j < events[i].size(); j++) {
      if (events[i][j].kind() == "push") {
        pushed_events.push_back(events[i][j]);
273
      } else if (events[i][j].kind() == "pop") {
274
        std::list<Event>::reverse_iterator rit = pushed_events.rbegin();
275 276
        while (rit != pushed_events.rend() &&
               rit->name() != events[i][j].name()) {
277 278
          ++rit;
        }
279

280
        if (rit != pushed_events.rend()) {
281 282 283 284 285
          double event_time =
              (g_profiler_place == "CUDA" || g_profiler_place == "All")
                  ? rit->CudaElapsedMs(events[i][j])
                  : rit->CpuElapsedMs(events[i][j]);

286 287
          std::string event_name =
              "thread" + std::to_string(rit->thread_id()) + "::" + rit->name();
Y
Yibing Liu 已提交
288
          max_name_width = std::max(max_name_width, event_name.size());
289

290 291 292 293 294
          if (event_idx.find(event_name) == event_idx.end()) {
            event_idx[event_name] = event_items.size();
            EventItem event_item = {event_name, 1,          event_time,
                                    event_time, event_time, event_time};
            event_items.push_back(event_item);
295
          } else {
296 297
            int index = event_idx[event_name];
            event_items[index].calls += 1;
298
            // total time
299
            event_items[index].total_time += event_time;
300
            // min time
301 302
            event_items[index].min_time =
                std::min(event_time, event_items[index].min_time);
303
            // max time
304 305
            event_items[index].max_time =
                std::max(event_time, event_items[index].max_time);
306
          }
307

Y
Yibing Liu 已提交
308
          // remove the push marker from the list
309 310
          pushed_events.erase((++rit).base());
        } else {
311 312 313
          LOG(WARNING) << "Cannot find the push marker of event \'"
                       << events[i][j].name()
                       << "\', which will be ignored in profiling report.";
314 315 316
        }
      }
    }
317 318 319 320 321 322
    // average time
    for (auto& item : event_items) {
      item.ave_time = item.total_time / item.calls;
    }
    // sort
    if (sorted_by != EventSortingKey::kDefault) {
323
      std::sort(event_items.begin(), event_items.end(), sorted_func);
324
    }
325

326
    events_table.push_back(event_items);
Y
Yibing Liu 已提交
327
    // log warning if there are events with `push` but without `pop`
328 329
    std::list<Event>::reverse_iterator rit = pushed_events.rbegin();
    while (rit != pushed_events.rend()) {
Y
Yibing Liu 已提交
330 331
      LOG(WARNING) << "Cannot find the pop marker of event \'" << rit->name()
                   << "\', which will be ignored in profiling report.";
332 333
      ++rit;
    }
334
  }
335 336

  // Print report
337
  PrintProfiler(events_table, sorted_domain, max_name_width + 4, 12);
338 339
}

340 341 342
void PrintProfiler(std::vector<std::vector<EventItem>>& events_table,
                   std::string& sorted_domain, const size_t name_width,
                   const size_t data_width) {
343 344 345 346 347 348
  // Output header information
  std::cout << "\n------------------------->"
            << "     Profiling Report     "
            << "<-------------------------\n\n";
  std::cout << "Place: " << g_profiler_place << std::endl;
  std::cout << "Time unit: ms" << std::endl;
349
  std::cout << "Sorted by " << sorted_domain
350 351
            << " in descending order in the same thread\n\n";
  // Output events table
Y
Yibing Liu 已提交
352
  std::cout.setf(std::ios::left);
353
  std::cout << std::setw(name_width) << "Event" << std::setw(data_width)
Y
Yibing Liu 已提交
354 355 356
            << "Calls" << std::setw(data_width) << "Total"
            << std::setw(data_width) << "Min." << std::setw(data_width)
            << "Max." << std::setw(data_width) << "Ave." << std::endl;
357 358 359
  for (size_t i = 0; i < events_table.size(); ++i) {
    for (size_t j = 0; j < events_table[i].size(); ++j) {
      EventItem& event_item = events_table[i][j];
360
      std::cout << std::setw(name_width) << event_item.name
361 362 363 364 365 366
                << std::setw(data_width) << event_item.calls
                << std::setw(data_width) << event_item.total_time
                << std::setw(data_width) << event_item.min_time
                << std::setw(data_width) << event_item.max_time
                << std::setw(data_width) << event_item.ave_time << std::endl;
    }
367
  }
368
  std::cout << std::endl;
369 370
}

D
dangqingqing 已提交
371 372
}  // namespace platform
}  // namespace paddle