profiler_helper.h 34.0 KB
Newer Older
W
wangchaochaohu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/* Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.

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 <algorithm>
#include <iomanip>
#include <limits>
#include <list>
#include <map>
#include <memory>
#include <mutex>  // NOLINT
#include <random>
W
wangchaochaohu 已提交
25
#include <set>
W
wangchaochaohu 已提交
26 27 28 29 30 31 32 33
#include <stack>
#include <string>
#include <unordered_map>
#include <utility>
#include <vector>
#ifdef PADDLE_WITH_CUDA
#include <cuda.h>
#endif  // PADDLE_WITH_CUDA
34 35 36
#ifdef PADDLE_WITH_HIP
#include <hip/hip_runtime.h>
#endif
37 38 39
#ifdef PADDLE_WITH_CUSTOM_DEVICE
#include "paddle/phi/backends/device_manager.h"
#endif
W
wangchaochaohu 已提交
40

41 42
#include "paddle/fluid/memory/memory.h"
#include "paddle/fluid/platform/device/gpu/gpu_info.h"
43
#include "paddle/phi/api/profiler/profiler_helper.h"
44

W
wangchaochaohu 已提交
45 46 47 48 49 50 51 52
namespace paddle {
namespace platform {

static int64_t profiler_lister_id = 0;
static bool should_send_profile_state = false;
std::mutex profiler_mu;

static TracerOption g_tracer_option = TracerOption::kDefault;
53

W
wangchaochaohu 已提交
54 55 56
static thread_local int32_t g_mem_thread_id;
static uint32_t g_mem_next_thread_id = 0;

57 58 59 60 61 62 63 64 65 66 67 68
static int FindNthReversePos(const std::string &s, const char ch, const int N) {
  int found_pos = -1;
  auto pos = s.rfind('/', s.length() - 1);
  int pos_number = 1;
  while (pos != std::string::npos && pos_number < N) {
    pos = s.rfind(ch, pos - 1);
    pos_number++;
  }
  if (pos != std::string::npos) found_pos = pos;
  return found_pos;
}

69
using phi::GetTimeInNsec;
W
wangchaochaohu 已提交
70

71
using phi::GetEventList;
W
wangchaochaohu 已提交
72 73

inline EventList<MemEvent> &GetMemEventList() {
74 75 76 77 78
  if (!phi::ProfilerHelper::g_mem_event_list) {
    phi::ProfilerHelper::g_mem_event_list =
        std::make_shared<EventList<MemEvent>>();
    std::lock_guard<std::mutex> guard(
        phi::ProfilerHelper::g_all_mem_event_lists_mutex);
W
wangchaochaohu 已提交
79
    g_mem_thread_id = g_mem_next_thread_id++;
80 81
    phi::ProfilerHelper::g_all_mem_event_lists.emplace_front(
        phi::ProfilerHelper::g_mem_event_list);
W
wangchaochaohu 已提交
82
  }
83
  return *phi::ProfilerHelper::g_mem_event_list;
W
wangchaochaohu 已提交
84 85 86
}

std::vector<std::vector<MemEvent>> GetMemEvents() {
87 88
  std::lock_guard<std::mutex> guard(
      phi::ProfilerHelper::g_all_mem_event_lists_mutex);
W
wangchaochaohu 已提交
89
  std::vector<std::vector<MemEvent>> result;
90
  for (auto &it : phi::ProfilerHelper::g_all_mem_event_lists) {
W
wangchaochaohu 已提交
91 92 93 94 95 96 97
    result.emplace_back((*it).Reduce());
  }
  return result;
}

void SynchronizeAllDevice() {
#ifdef PADDLE_WITH_CUDA
98
  int pre_device_id = GetCurrentDeviceId();
99
  int count = GetGPUDeviceCount();
W
wangchaochaohu 已提交
100 101
  for (int i = 0; i < count; i++) {
    SetDeviceId(i);
102
    PADDLE_ENFORCE_GPU_SUCCESS(cudaDeviceSynchronize());
W
wangchaochaohu 已提交
103
  }
104
  SetDeviceId(pre_device_id);
W
wangchaochaohu 已提交
105
#endif
106
#ifdef PADDLE_WITH_HIP
107
  int pre_device_id = GetCurrentDeviceId();
108
  int count = GetGPUDeviceCount();
109 110
  for (int i = 0; i < count; i++) {
    SetDeviceId(i);
111
    PADDLE_ENFORCE_GPU_SUCCESS(hipDeviceSynchronize());
112
  }
113
  SetDeviceId(pre_device_id);
114
#endif
115 116 117
#ifdef PADDLE_WITH_CUSTOM_DEVICE
  auto dev_types = phi::DeviceManager::GetAllCustomDeviceTypes();
  for (const auto &dev_type : dev_types) {
118
    int pre_device_id = phi::DeviceManager::GetDevice(dev_type);
119 120
    for (auto &dev_id : phi::DeviceManager::GetSelectedDeviceList(dev_type)) {
      auto place = paddle::platform::CustomPlace(dev_type, dev_id);
121 122 123
      phi::DeviceManager::SetDevice(place);
      phi::DeviceManager::SynchronizeDevice(place);
    }
124
    phi::DeviceManager::SetDevice(dev_type, pre_device_id);
125 126
  }
#endif
W
wangchaochaohu 已提交
127 128
}

129 130 131 132
static double ToMegaBytes(size_t bytes) {
  return static_cast<double>(bytes) / (1 << 20);
}

W
wangchaochaohu 已提交
133 134 135 136
// Print results
void PrintMemProfiler(
    const std::map<Place, std::unordered_map<std::string, MemoryProfierReport>>
        &annotation_report,
137 138
    const size_t name_width,
    const size_t data_width) {
W
wangchaochaohu 已提交
139 140 141 142 143
  // Output header information
  std::cout << "\n------------------------->"
            << "    Memory Profiling Report     "
            << "<-------------------------\n\n";

144 145 146 147 148 149
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
  int num_gpus = GetGPUDeviceCount();
  std::cout.setf(std::ios::left);
  if (num_gpus > 0) {
    std::cout << "GPU Memory Usage (MB):\n";
    for (int dev_id = 0; dev_id < num_gpus; ++dev_id) {
150 151 152 153
      int64_t allocated =
          memory::DeviceMemoryStatCurrentValue("Allocated", dev_id);
      int64_t reserved =
          memory::DeviceMemoryStatCurrentValue("Reserved", dev_id);
154
      size_t available = 0, total = 0, actual_available = 0, actual_total = 0;
155 156
      RecordedGpuMemGetInfo(
          &available, &total, &actual_available, &actual_total, dev_id);
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176

      std::ostringstream system_gpu_memory;
      system_gpu_memory << "System GPU Memory (gpu:" << dev_id << ")";
      std::cout << "  " << std::setw(30) << system_gpu_memory.str()
                << "Total: " << std::setw(12) << ToMegaBytes(total)
                << "Allocated: " << std::setw(12)
                << ToMegaBytes(total - available) << "Free: " << std::setw(12)
                << ToMegaBytes(available) << "\n";
      std::ostringstream software_memory_pool;
      software_memory_pool << "Software Memory Pool (gpu:" << dev_id << ")";
      std::cout << "  " << std::setw(30) << software_memory_pool.str()
                << "Total: " << std::setw(12) << ToMegaBytes(reserved)
                << "Allocated: " << std::setw(12)
                << ToMegaBytes(reserved - allocated)
                << "Free: " << std::setw(12) << ToMegaBytes(allocated) << "\n";
    }
    std::cout << "\n";
  }
#endif

W
wangchaochaohu 已提交
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
  // Output events table
  std::cout.setf(std::ios::left);
  std::cout << std::setw(name_width) << "Event" << std::setw(data_width)
            << "Alloc Calls" << std::setw(data_width) << "Size(MB)"
            << std::setw(data_width) << "Free Calls" << std::setw(data_width)
            << "Size(MB)" << std::endl;

  for (auto &tmp : annotation_report) {
    for (auto &e : tmp.second) {
      auto event_name = string::Sprintf("%s:%s", tmp.first, e.first);
      std::cout << std::setw(name_width) << event_name;
      std::cout << std::setw(data_width) << e.second.alloc_times;
      std::cout << std::setw(data_width)
                << e.second.alloc_size / (1024.0 * 1024.0);
      std::cout << std::setw(data_width) << e.second.free_times;
      std::cout << std::setw(data_width)
                << e.second.free_size / (1024.0 * 1024.0) << std::endl;
    }
  }
  std::cout << std::endl;
}

// parse memory events
void ParseMemEvents(const std::vector<std::vector<MemEvent>> &events) {
201
  if (phi::ProfilerHelper::g_state == ProfilerState::kDisabled) return;
W
wangchaochaohu 已提交
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
  // place, annotation, alloc times,  alloc size
  std::map<Place, std::unordered_map<std::string, MemoryProfierReport>>
      annotation_report;

  for (auto &tmp : events) {
    for (auto &e : tmp) {
      if (e.type() == EventType::kPushRange) {
        annotation_report[e.place()][e.annotation()].alloc_times += 1;
        annotation_report[e.place()][e.annotation()].alloc_size += e.bytes();
      } else if (e.type() == EventType::kPopRange) {
        annotation_report[e.place()][e.annotation()].free_times += 1;
        annotation_report[e.place()][e.annotation()].free_size += e.bytes();
      }
    }
  }
  PrintMemProfiler(annotation_report, 55, 18);
}

void DealWithShowName() {
  std::unordered_map<std::string, std::vector<std::string>> profiler_name_info;
222 223
  for (auto it = phi::ProfilerHelper::g_all_event_lists.begin();
       it != phi::ProfilerHelper::g_all_event_lists.end();
W
wangchaochaohu 已提交
224 225 226 227
       ++it) {
    for (auto &block : (*it)->event_blocks) {
      for (auto &r : block) {
        auto event_name = r.name();
228 229 230 231 232 233 234 235 236 237
        auto origin_event_name = event_name;
        size_t start = origin_event_name.find('%', 0);
        size_t end = origin_event_name.find('%', start + 1);
        size_t start_replace = start;
        size_t end_replace = end;
        std::string prefix_str = origin_event_name.substr(0, start);
        while (start != std::string::npos && end != std::string::npos &&
               start_replace != std::string::npos &&
               end_replace != std::string::npos) {
          auto search_str = origin_event_name.substr(start, end - start + 1);
W
wangchaochaohu 已提交
238 239 240 241 242 243 244 245 246 247 248 249
          std::string replace_str = "";
          int replace_index = 0;

          auto it = profiler_name_info.find(prefix_str);
          if (it == profiler_name_info.end()) {
            std::vector<std::string> op_name_vector{search_str};
            profiler_name_info[prefix_str] = op_name_vector;
          } else {
            auto op_name_vector = it->second;
            auto iter =
                find(op_name_vector.begin(), op_name_vector.end(), search_str);
            if (iter == op_name_vector.end()) {
250 251
              replace_index = profiler_name_info[prefix_str].size();
              profiler_name_info[prefix_str].push_back(search_str);
W
wangchaochaohu 已提交
252
            } else {
253
              replace_index = iter - op_name_vector.begin();
W
wangchaochaohu 已提交
254 255 256
            }
          }
          replace_str = std::to_string(replace_index);
257 258
          event_name.replace(
              start_replace, end_replace - start_replace + 1, replace_str);
W
wangchaochaohu 已提交
259
          start = start + 1;
260 261 262 263 264
          start = origin_event_name.find('%', start);
          end = origin_event_name.find('%', start + 1);
          start_replace = event_name.find('%', 0);
          end_replace = event_name.find('%', start_replace + 1);
          prefix_str = origin_event_name.substr(0, start);
W
wangchaochaohu 已提交
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
        }
        r.set_name(event_name);
      }
    }
  }
}

std::function<bool(const EventItem &, const EventItem &)> SetSortedFunc(
    EventSortingKey sorted_by, std::string *domain) {
  std::string sorted_domain;
  std::function<bool(const EventItem &, const EventItem &)> sorted_func;
  switch (sorted_by) {
    case EventSortingKey::kCalls:
      sorted_domain = "number of calls";
      sorted_func = [](const EventItem &a, const EventItem &b) {
        return a.calls > b.calls;
      };
      break;
    case EventSortingKey::kTotal:
      sorted_domain = "total time";
      sorted_func = [](const EventItem &a, const EventItem &b) {
        return a.total_time > b.total_time;
      };
      break;
    case EventSortingKey::kMin:
      sorted_domain = "minimum time";
      sorted_func = [](const EventItem &a, const EventItem &b) {
        return a.min_time > b.min_time;
      };
      break;
    case EventSortingKey::kMax:
      sorted_domain = "maximum time";
      sorted_func = [](const EventItem &a, const EventItem &b) {
        return a.max_time > b.max_time;
      };
      break;
    case EventSortingKey::kAve:
      sorted_domain = "average time";
      sorted_func = [](const EventItem &a, const EventItem &b) {
        return a.ave_time > b.ave_time;
      };
      break;
    case EventSortingKey::kGPUTime:
      sorted_domain = "average time";
      sorted_func = [](const EventItem &a, const EventItem &b) {
        return a.gpu_time > b.gpu_time;
      };
      break;
    case EventSortingKey::kCPUTime:
      sorted_domain = "average time";
      sorted_func = [](const EventItem &a, const EventItem &b) {
        return a.cpu_time > b.cpu_time;
      };
      break;
    default:
      sorted_domain = "event first end time";
  }
  *domain = sorted_domain;
  return sorted_func;
}

326 327 328 329
void SetEvent(bool merge_thread,
              const Event &analyze_event,
              size_t *max_name_width,
              std::list<Event> *pushed_events,
W
wangchaochaohu 已提交
330
              std::vector<EventItem> *event_items,
W
wangchaochaohu 已提交
331 332
              std::unordered_map<std::string, int> *event_idx,
              const std::set<std::string> &main_thread_event_name) {
W
wangchaochaohu 已提交
333 334 335 336 337 338 339 340 341 342 343 344 345
  if (analyze_event.type() == EventType::kPushRange) {
    pushed_events->push_back(analyze_event);
  } else if (analyze_event.type() == EventType::kPopRange) {
    std::list<Event>::reverse_iterator rit = pushed_events->rbegin();
    while (rit != pushed_events->rend() &&
           rit->name() != analyze_event.name()) {
      ++rit;
    }

    // to find the father name event name
    if (rit != pushed_events->rend()) {
      double event_time = 0;
      double gpu_time = 0.0f;
346
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
W
wangchaochaohu 已提交
347 348 349
      gpu_time = rit->CudaElapsedMs(analyze_event);
#endif
      double cpu_time = rit->CpuElapsedMs(analyze_event);
350
      if (phi::ProfilerHelper::g_state == ProfilerState::kCUDA) {
W
wangchaochaohu 已提交
351
        event_time = gpu_time;
352
      } else if (phi::ProfilerHelper::g_state == ProfilerState::kCPU) {
W
wangchaochaohu 已提交
353 354 355 356 357 358 359 360 361
        event_time = cpu_time;
      } else {
        event_time = gpu_time + cpu_time;
      }

      std::string event_name;
      if (merge_thread) {
        event_name = rit->name();
      } else {
W
wangchaochaohu 已提交
362 363 364 365 366 367 368 369 370 371 372 373 374
        if (!main_thread_event_name.empty()) {
          auto origin_name = rit->name();
          int index = 1;
          int split_pos = 0;
          while ((split_pos = FindNthReversePos(origin_name, '/', index)) !=
                 -1) {
            auto prefix_str = origin_name.substr(0, split_pos);
            if (main_thread_event_name.count(prefix_str)) {
              break;
            }
            index++;
          }
          if (split_pos == -1 && !main_thread_event_name.count(rit->name())) {
375 376
            event_name = "thread" + std::to_string(rit->thread_id()) +
                         "::" + rit->name();
W
wangchaochaohu 已提交
377 378 379 380 381 382 383 384 385 386 387 388 389 390
          } else {
            if (!main_thread_event_name.count(rit->name())) {
              event_name =
                  origin_name.substr(0, split_pos + 1) + "thread" +
                  std::to_string(rit->thread_id()) + "::" +
                  origin_name.substr(split_pos + 1, origin_name.length() - 1);
            } else {
              event_name = rit->name();
            }
          }
        } else {
          event_name =
              "thread" + std::to_string(rit->thread_id()) + "::" + rit->name();
        }
W
wangchaochaohu 已提交
391
      }
392 393 394 395 396 397 398 399 400 401 402 403
      auto print_name_size = event_name.size();
      int found_pos = 0;
      if (rit->role() == EventRole::kInnerOp &&
          g_tracer_option != TracerOption::kDefault &&
          (found_pos = FindNthReversePos(event_name, '/', 2)) != -1) {
        print_name_size = event_name.size() - (found_pos + 1);
      } else if ((found_pos = FindNthReversePos(event_name, '/', 1)) != -1 &&
                 (rit->role() != EventRole::kInnerOp ||
                  g_tracer_option == TracerOption::kDefault)) {
        print_name_size = event_name.size() - (found_pos + 1);
      }
      *max_name_width = std::max(*max_name_width, print_name_size);
W
wangchaochaohu 已提交
404 405 406

      if (event_idx->find(event_name) == event_idx->end()) {
        event_idx->insert({event_name, event_items->size()});
407 408 409 410 411 412 413 414 415 416
        EventItem event_item = {event_name,
                                1,
                                event_time,
                                event_time,
                                event_time,
                                event_time,
                                cpu_time,
                                gpu_time,
                                0.,
                                rit->role()};
W
wangchaochaohu 已提交
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
        event_items->push_back(event_item);
      } else {
        int index = event_idx->at(event_name);
        event_items->at(index).calls += 1;
        // total time
        event_items->at(index).total_time += event_time;
        // min time
        event_items->at(index).min_time =
            std::min(event_time, event_items->at(index).min_time);
        // max time
        event_items->at(index).max_time =
            std::max(event_time, event_items->at(index).max_time);
        event_items->at(index).gpu_time += gpu_time;
        event_items->at(index).cpu_time += cpu_time;
      }

      // remove the push marker from the list
      pushed_events->erase((++rit).base());
    } else {
      LOG(WARNING) << "Cannot find the push marker of event \'"
                   << analyze_event.name()
                   << "\', which will be ignored in profiling report.";
    }
  }
}

443 444
void UpdateGpuMemcpy(const EventItem &item,
                     EventItem *memcpy_async,
445 446 447 448 449 450 451 452 453 454 455 456 457 458
                     EventItem *memcpy_sync) {
  if (item.name.find("GpuMemcpyAsync") != std::string::npos) {
    memcpy_async->calls += item.calls;
    memcpy_async->total_time += item.total_time;
    memcpy_async->ratio += item.ratio;
  } else if (item.name.find("GpuMemcpySync") != std::string::npos) {
    memcpy_sync->calls += item.calls;
    memcpy_sync->total_time += item.total_time;
    memcpy_sync->ratio += item.ratio;
  }
}

void ComputeOverhead(const std::vector<EventItem> &main_event_items,
                     const std::multimap<std::string, EventItem> &sub_child_map,
W
wangchaochaohu 已提交
459
                     OverHead *overhead) {
460 461
  EventItem memcpy_async = {
      "GpuMemcpyAsync", 0, 0., 0., 0., 0., 0., 0., 0.0f, EventRole::kOrdinary};
462 463
  EventItem memcpy_sync = {
      "GpuMemcpySync", 0, 0., 0., 0., 0., 0., 0., 0.0f, EventRole::kOrdinary};
464 465
  // GpuMemcpy may be in main_event_items
  for (auto &item : main_event_items) {
466 467 468
    if (item.role != EventRole::kSpecial) {
      overhead->accumulated_time += item.total_time;
    }
469 470 471
    UpdateGpuMemcpy(item, &memcpy_async, &memcpy_sync);
  }

W
wangchaochaohu 已提交
472
  for (auto it = sub_child_map.begin(); it != sub_child_map.end(); it++) {
473 474 475
    if (it->first == "ParallelExecutor::Run") {
      overhead->accumulated_time += it->second.total_time;
    }
476 477
    if (it->second.name.find("compute") != std::string::npos &&
        it->second.name.find("compute/") == std::string::npos) {
478
      overhead->compute_time += it->second.total_time;
W
wangchaochaohu 已提交
479
    }
480
    UpdateGpuMemcpy(it->second, &memcpy_async, &memcpy_sync);
W
wangchaochaohu 已提交
481
  }
482 483
  overhead->framework_time =
      overhead->accumulated_time - overhead->compute_time;
W
wangchaochaohu 已提交
484 485 486 487 488 489 490
  overhead->memcpy_item.calls = memcpy_async.calls + memcpy_sync.calls;
  overhead->memcpy_item.total_time =
      memcpy_async.total_time + memcpy_sync.total_time;
  overhead->memcpy_item.ratio = memcpy_async.ratio + memcpy_sync.ratio;
  overhead->sub_memcpy_items = {memcpy_async, memcpy_sync};
}

491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
std::string FindOrdinaryParent(
    const std::multimap<std::string, EventItem> &sub_child_map,
    std::string name) {
  bool find_name = false;
  std::string parent = name;
  EventRole role;
  for (auto it = sub_child_map.begin(); it != sub_child_map.end(); it++) {
    if (it->second.name == name) {
      role = it->second.role;
      parent = it->first;
      find_name = true;
      break;
    }
  }
  if (find_name && role == EventRole::kOrdinary) {
    return name;
  } else if (find_name && role != EventRole::kOrdinary) {
    return FindOrdinaryParent(sub_child_map, parent);
  } else {
    return parent;
  }
}

W
wangchaochaohu 已提交
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
// When TracerOption is KDefault, OpDetail will be recorded but only default
// profile result will be printed.
// GpuMemcpy should be printed in kDefault setting, however it offten occurs
// during 'compute' or 'prepare data' process, so the elements of sub_child_map
// need to be changed before being inserted into child_map. for instance:
// it->first: OpType/compute => OpType
// it->second.name: OpType/compute/GpuMemcpyAsync => OpType/GpuMemcpyAsync.
void GetChildMap(const std::multimap<std::string, EventItem> &sub_child_map,
                 std::multimap<std::string, EventItem> *child_map) {
  if (platform::GetTracerOption() != TracerOption::kDefault) {
    for (auto it = sub_child_map.begin(); it != sub_child_map.end(); it++) {
      child_map->insert(
          std::pair<std::string, EventItem>(it->first, it->second));
    }
  } else {
    for (auto it = sub_child_map.begin(); it != sub_child_map.end(); it++) {
      if (it->second.name.find("GpuMemcpy") != std::string::npos) {
531
        std::string parent_name = FindOrdinaryParent(sub_child_map, it->first);
W
wangchaochaohu 已提交
532 533 534 535 536 537 538 539
        auto item = it->second;
        auto right_pos = item.name.rfind("/");
        if (right_pos != std::string::npos) {
          std::string child_name = item.name.substr(
              right_pos + 1, item.name.length() - right_pos - 1);
          item.name = parent_name + "/" + child_name;
        }
        child_map->insert(std::pair<std::string, EventItem>(parent_name, item));
540 541 542
      } else if (it->second.role == EventRole::kOrdinary) {
        child_map->insert(
            std::pair<std::string, EventItem>(it->first, it->second));
W
wangchaochaohu 已提交
543 544 545 546 547
      }
    }
  }
}

548
void PrintOverHead(const OverHead &overhead, const size_t data_width) {
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
  float compute_ratio = overhead.compute_time / overhead.accumulated_time;
  float framework_ratio = 1 - compute_ratio;
  std::cout << "-------------------------"
            << "     Overhead Summary      "
            << "-------------------------\n\n";
  if (overhead.print_explanation) {
    std::cout
        << "The Overhead Summary divides the cost of each event into framework "
           "overhead or computation time."
        << "\nThe `Accumulated time of events` is higher than the `Elapsed "
           "time of events`."
        << "\nBecause the OP is executed asynchronously. For example,"
        << "\nEvent                   Timeline"
        << "\nParallelExecutor::Run   "
           "---------------------------------------------------------"
        << "\n  thread1::OP1                 -----------------------------"
        << "\n  thread2::OP2                      "
           "---------------------------------------------"
        << "\nOP1.time + OP2.time > ParallelExecutor::Run.time\n\n";
    std::cout << "Elapsed time of events: " << overhead.elapsed_time
              << std::endl;
    std::cout << "Accumulated time of events: " << overhead.accumulated_time
              << std::endl;
  } else {
    std::cout << "Total time: " << overhead.elapsed_time << std::endl;
  }
575 576
  std::cout.setf(std::ios::left);
  std::cout << std::setw(25) << "  Computation time"
577 578
            << "Total: " << std::setw(data_width) << overhead.compute_time
            << "Ratio: " << compute_ratio * 100 << "%" << std::endl;
579
  std::cout << std::setw(25) << "  Framework overhead"
580 581
            << "Total: " << std::setw(data_width) << overhead.framework_time
            << "Ratio: " << framework_ratio * 100 << "%" << std::endl;
582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602

  std::cout << "\n-------------------------"
            << "     GpuMemCpy Summary     "
            << "-------------------------\n\n";
  std::cout << std::setw(25) << "GpuMemcpy"
            << "Calls: " << std::setw(data_width) << overhead.memcpy_item.calls
            << "Total: " << std::setw(data_width)
            << overhead.memcpy_item.total_time
            << "Ratio: " << overhead.memcpy_item.ratio * 100 << "%"
            << std::endl;
  for (size_t i = 0; i < overhead.sub_memcpy_items.size(); ++i) {
    EventItem item = overhead.sub_memcpy_items[i];
    if (item.calls != 0) {
      std::cout << std::setw(25) << "  " + item.name
                << "Calls: " << std::setw(data_width) << item.calls
                << "Total: " << std::setw(data_width) << item.total_time
                << "Ratio: " << item.ratio * 100 << "%" << std::endl;
    }
  }
}

W
wangchaochaohu 已提交
603
// Print results
W
wangchaochaohu 已提交
604 605 606 607
void PrintProfiler(
    const std::vector<std::vector<EventItem>> &events_table,
    const std::multimap<std::string, EventItem> &child_map,
    std::function<bool(const EventItem &, const EventItem &)> sorted_func,
608 609 610 611 612 613 614
    EventSortingKey sorted_by,
    const OverHead &overhead,
    const std::string &sorted_domain,
    const size_t name_width,
    const size_t data_width,
    bool merge_thread,
    int print_depth) {
W
wangchaochaohu 已提交
615 616 617 618 619 620
  if (print_depth == 0) {
    // Output header information
    std::cout << "\n------------------------->"
              << "     Profiling Report     "
              << "<-------------------------\n\n";
    std::string place;
621
    if (phi::ProfilerHelper::g_state == ProfilerState::kCPU) {
W
wangchaochaohu 已提交
622
      place = "CPU";
623
    } else if (phi::ProfilerHelper::g_state == ProfilerState::kCUDA) {
W
wangchaochaohu 已提交
624
      place = "CUDA";
625
    } else if (phi::ProfilerHelper::g_state == ProfilerState::kAll) {
W
wangchaochaohu 已提交
626 627 628 629
      place = "All";
    } else {
      PADDLE_THROW(platform::errors::InvalidArgument(
          "Except profiler state must to be one of ['CPU', 'GPU' 'ALL'], but "
G
GaoWei8 已提交
630
          "received Invalid profiler state."));
W
wangchaochaohu 已提交
631 632 633 634 635 636 637 638 639 640 641
    }

    if (merge_thread) {
      std::cout << "Note! This Report merge all thread info into one."
                << std::endl;
    }
    std::cout << "Place: " << place << std::endl;
    std::cout << "Time unit: ms" << std::endl;
    std::cout << "Sorted by " << sorted_domain
              << " in descending order in the same thread\n\n";

642
    if (overhead.print_overhead) {
643
      PrintOverHead(overhead, data_width);
W
wangchaochaohu 已提交
644 645 646 647 648 649 650 651
    }
    std::cout << "\n-------------------------"
              << "       Event Summary       "
              << "-------------------------\n\n";
    // Output events table
    std::cout.setf(std::ios::left);
    std::cout << std::setw(name_width) << "Event" << std::setw(data_width)
              << "Calls" << std::setw(data_width) << "Total";
652
    if (phi::ProfilerHelper::g_state == ProfilerState::kAll) {
W
wangchaochaohu 已提交
653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
      std::cout << std::setw(data_width * 2) << "CPU Time (Ratio)"
                << std::setw(data_width * 2) << "GPU Time (Ratio)";
    }
    std::cout << std::setw(data_width) << "Min." << std::setw(data_width)
              << "Max." << std::setw(data_width) << "Ave."
              << std::setw(data_width) << "Ratio." << std::endl;
  }

  if (events_table.size() <= 0) return;

  for (size_t i = 0; i < events_table.size(); ++i) {
    for (size_t j = 0; j < events_table[i].size(); ++j) {
      auto event_item = events_table[i][j];
      std::vector<std::vector<EventItem>> child_table;
      std::vector<EventItem> table;
      for (auto it = child_map.begin(); it != child_map.end(); it++) {
        if (it->first == event_item.name) {
          table.push_back(it->second);
        }
      }
W
wangchaochaohu 已提交
673 674 675 676

      if (sorted_by != EventSortingKey::kDefault) {
        std::sort(table.begin(), table.end(), sorted_func);
      }
677
      if (!table.empty()) child_table.push_back(table);
W
wangchaochaohu 已提交
678 679

      auto name_len = event_item.name.length();
680 681 682 683 684 685 686
      int remove_len = 0;
      int Nth = 1;
      int found_pos = 0;
      if (event_item.role == EventRole::kInnerOp) Nth = 2;
      found_pos = FindNthReversePos(event_item.name, '/', Nth);
      if (found_pos != -1) remove_len = found_pos + 1;

W
wangchaochaohu 已提交
687 688 689 690 691 692 693 694 695 696
      std::string print_name = event_item.name.substr(remove_len, name_len);
      std::string delimiter;
      for (int i = 0; i < print_depth; i++) {
        delimiter = "  " + delimiter;
      }
      print_name = delimiter + print_name;

      std::cout << std::setw(name_width) << print_name << std::setw(data_width)
                << event_item.calls << std::setw(data_width)
                << event_item.total_time;
697
      if (phi::ProfilerHelper::g_state == ProfilerState::kAll) {
W
wangchaochaohu 已提交
698 699
        std::cout << std::setw(data_width * 2)
                  << string::Sprintf(
700 701
                         "%f (%f)",
                         event_item.cpu_time,
W
wangchaochaohu 已提交
702 703 704
                         (event_item.cpu_time / event_item.total_time))
                  << std::setw(data_width * 2)
                  << string::Sprintf(
705 706
                         "%f (%f)",
                         event_item.gpu_time,
W
wangchaochaohu 已提交
707 708 709 710
                         (event_item.gpu_time / event_item.total_time));
      }
      std::cout << std::setw(data_width) << event_item.min_time
                << std::setw(data_width) << event_item.max_time
711 712 713 714 715 716 717 718
                << std::setw(data_width) << event_item.ave_time;
      if (event_item.name.find("ext_reorder") != std::string::npos ||
          event_item.name.find("int_reorder") != std::string::npos) {
        std::cout << event_item.ratio << '*';
      } else {
        std::cout << std::setw(data_width) << event_item.ratio;
      }
      std::cout << std::endl;
719

720 721 722 723 724 725 726 727 728
      PrintProfiler(child_table,
                    child_map,
                    sorted_func,
                    sorted_by,
                    overhead,
                    sorted_domain,
                    name_width,
                    data_width,
                    merge_thread,
W
wangchaochaohu 已提交
729
                    print_depth + 1);
W
wangchaochaohu 已提交
730 731 732 733
    }
  }
}

734 735 736 737 738
void AnalyzeEvent(
    const std::vector<std::vector<Event>> *analyze_events,
    std::vector<std::vector<EventItem>> *events_table,
    std::multimap<std::string, EventItem> *child_map,
    std::function<bool(const EventItem &, const EventItem &)> sorted_func,
739 740 741
    EventSortingKey sorted_by,
    size_t *max_name_width,
    OverHead *overhead,
742
    bool merge_thread) {
W
wangchaochaohu 已提交
743 744 745 746 747 748 749 750 751 752
  // In oreder to deal with special event in main thread
  std::set<std::string> main_thread_event_name;
  for (size_t i = 0; i < (*analyze_events).size(); i++) {
    for (size_t j = 0; j < (*analyze_events)[i].size(); j++) {
      Event event = (*analyze_events)[i][j];
      if (event.role() == EventRole::kSpecial) {
        main_thread_event_name.insert(event.name());
      }
    }
  }
W
wangchaochaohu 已提交
753 754 755 756 757 758 759 760 761 762
  for (size_t i = 0; i < (*analyze_events).size(); i++) {
    double total = 0.;  // the total time in one thread
    std::list<Event> pushed_events;
    std::vector<EventItem> event_items;
    std::vector<EventItem> main_event_items;
    std::unordered_map<std::string, int> event_idx;
    std::multimap<std::string, EventItem> sub_child_map;

    for (size_t j = 0; j < (*analyze_events)[i].size(); j++) {
      Event analyze_event = (*analyze_events)[i][j];
W
wangchaochaohu 已提交
763
      if (!(analyze_event.role() == EventRole::kSpecial && !merge_thread)) {
764 765 766 767 768 769 770
        SetEvent(merge_thread,
                 analyze_event,
                 max_name_width,
                 &pushed_events,
                 &event_items,
                 &event_idx,
                 main_thread_event_name);
W
wangchaochaohu 已提交
771
      }
W
wangchaochaohu 已提交
772 773 774 775 776 777 778 779 780 781 782
    }

    auto table_size = event_items.size();
    std::vector<int> child_index(table_size, 0);
    for (size_t j = 0; j < table_size; ++j) {
      std::string fname = event_items[j].name;
      std::string grad_name = event_items[j].name + "_grad";
      for (size_t k = 0; k < table_size; ++k) {
        std::string cname = event_items[k].name;
        bool condition = cname.length() > fname.length() &&
                         cname.rfind(fname, 0) == 0 &&
783
                         cname.rfind(grad_name, 0) != 0 &&
W
wangchaochaohu 已提交
784 785 786 787 788 789 790 791 792 793 794 795 796
                         (cname[fname.length()] == '/' &&
                          cname.rfind('/') == fname.length());
        if (condition) {
          sub_child_map.insert(
              std::pair<std::string, EventItem>(fname, event_items[k]));
          child_index[k] = 1;
        }
      }
    }
    for (size_t j = 0; j < table_size; ++j) {
      if (child_index[j] == 0) {
        main_event_items.push_back(event_items[j]);
        total += event_items[j].total_time;
797 798 799 800 801 802 803 804 805 806 807 808
      } else if ((child_index[j] == 1 &&
                  (event_items[j].name.find("ext_reorder") !=
                       std::string::npos ||
                   event_items[j].name.find("int_reorder") !=
                       std::string::npos)) &&
                 platform::GetTracerOption() != TracerOption::kAllOpDetail) {
        size_t first_slash_pos = event_items[j].name.find('/');
        if (first_slash_pos != std::string::npos) {
          std::string fname = event_items[j].name.substr(0, first_slash_pos);
          child_map->insert(
              std::pair<std::string, EventItem>(fname, event_items[j]));
        }
W
wangchaochaohu 已提交
809 810 811 812 813 814
      }
    }
    // average time
    for (auto &item : main_event_items) {
      item.ave_time = item.total_time / item.calls;
      item.ratio = item.total_time / total;
815 816 817 818 819 820 821 822
      if (platform::GetTracerOption() != TracerOption::kAllOpDetail) {
        for (auto it = child_map->begin(); it != child_map->end(); ++it) {
          if ((*it).first == item.name) {
            (*it).second.ratio = (*it).second.total_time / item.total_time;
            break;  // to find only first item
          }
        }
      }
W
wangchaochaohu 已提交
823 824 825 826 827 828 829
    }
    for (auto it = sub_child_map.begin(); it != sub_child_map.end(); it++) {
      it->second.ratio = it->second.total_time / total;
      it->second.ave_time = it->second.total_time / it->second.calls;
    }
    // When multi-threaded, overhead are printed only if merge_thread is true
    if ((*analyze_events).size() == 1) {
830 831 832 833 834
      if (!main_thread_event_name.empty()) {
        overhead->print_explanation = true;
      }
      overhead->elapsed_time = total;
      overhead->print_overhead = true;
835
      ComputeOverhead(main_event_items, sub_child_map, overhead);
W
wangchaochaohu 已提交
836 837 838 839 840 841
    }
    // sort
    if (sorted_by != EventSortingKey::kDefault) {
      std::sort(main_event_items.begin(), main_event_items.end(), sorted_func);
    }

842
    events_table->push_back(main_event_items);
W
wangchaochaohu 已提交
843 844 845 846 847 848 849 850
    // log warning if there are events with `push` but without `pop`
    std::list<Event>::reverse_iterator rit = pushed_events.rbegin();
    while (rit != pushed_events.rend()) {
      LOG(WARNING) << "Cannot find the pop marker of event \'" << rit->name()
                   << "\', which will be ignored in profiling report.";
      ++rit;
    }

851 852 853 854 855 856 857
    GetChildMap(sub_child_map, child_map);
  }
}
// Parse the event list and output the profiling report
void ParseEvents(const std::vector<std::vector<Event>> &events,
                 bool merge_thread,
                 EventSortingKey sorted_by = EventSortingKey::kDefault) {
858
  if (phi::ProfilerHelper::g_state == ProfilerState::kDisabled) return;
859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877
  if (merge_thread && events.size() < 2) return;

  std::string sorted_domain;
  std::function<bool(const EventItem &, const EventItem &)> sorted_func;
  sorted_func = SetSortedFunc(sorted_by, &sorted_domain);

  const std::vector<std::vector<Event>> *analyze_events;
  std::vector<std::vector<Event>> merged_events_list;
  if (merge_thread) {
    std::vector<Event> merged_events;
    for (size_t i = 0; i < events.size(); ++i) {
      for (size_t j = 0; j < events[i].size(); ++j) {
        merged_events.push_back(events[i][j]);
      }
    }
    merged_events_list.push_back(merged_events);
    analyze_events = &merged_events_list;
  } else {
    analyze_events = &events;
W
wangchaochaohu 已提交
878 879
  }

880 881 882 883
  std::vector<std::vector<EventItem>> events_table;
  std::multimap<std::string, EventItem> child_map;
  size_t max_name_width = 0;
  OverHead overhead;
884 885 886 887 888 889 890 891
  AnalyzeEvent(analyze_events,
               &events_table,
               &child_map,
               sorted_func,
               sorted_by,
               &max_name_width,
               &overhead,
               merge_thread);
892

W
wangchaochaohu 已提交
893
  // Print report
894 895 896 897 898 899 900 901 902 903
  PrintProfiler(events_table,
                child_map,
                sorted_func,
                sorted_by,
                overhead,
                sorted_domain,
                max_name_width + 8,
                12,
                merge_thread,
                0);
W
wangchaochaohu 已提交
904 905 906 907
}

}  // namespace platform
}  // namespace paddle