event.h 5.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* Copyright (c) 2019 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
C
chengduo 已提交
16

17
#include <string>
P
peizhilin 已提交
18
#ifdef PADDLE_WITH_CUDA
P
peizhilin 已提交
19
#include <cuda_runtime.h>
P
peizhilin 已提交
20
#endif
21 22 23
#ifdef PADDLE_WITH_HIP
#include <hip/hip_runtime.h>
#endif
C
chengduo 已提交
24
#include "paddle/fluid/platform/place.h"
25
#include "paddle/fluid/platform/stream/cuda_stream.h"
26 27 28 29

namespace paddle {
namespace platform {

30
enum class EventType { kMark, kPushRange, kPopRange };
31

32 33 34 35
enum class EventRole {
  kOrdinary,  // only record op time with op type key
  kInnerOp,   // record op detail time with op type key
  kUniqueOp,  // record op detail time with op unique name key
W
wangchaochaohu 已提交
36
  kSpecial,   // record event such as PE which is outer of thread local
37 38
};

39 40 41 42
class Event {
 public:
  // The DeviceContext is used to get the cuda stream.
  // If CPU profiling mode, can pass nullptr.
43
  Event(EventType type, std::string name, uint32_t thread_id,
Y
Yuang Liu 已提交
44
        EventRole role = EventRole::kOrdinary, std::string attr = "none");
45 46

  const EventType& type() const;
47 48
  Event* parent() const { return parent_; }
  void set_parent(Event* parent) { parent_ = parent; }
49
  std::string name() const { return name_; }
50
  EventRole role() const { return role_; }
51
  uint32_t thread_id() const { return thread_id_; }
52
  void set_name(std::string name) { name_ = name; }
53
  void set_role(EventRole role) { role_ = role; }
Y
Yuang Liu 已提交
54
  std::string attr() const { return attr_; }
55
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
56
#ifndef PADDLE_WITH_CUPTI
57
  gpuEvent_t event() const { return event_; }
58 59 60 61 62 63 64 65 66
  int device() const { return device_; }
#endif
#endif

  double CpuElapsedMs(const Event& e) const;
  double CudaElapsedMs(const Event& e) const;

 private:
  EventType type_;
67 68
  std::string name_{};
  Event* parent_{nullptr};
69
  uint32_t thread_id_;
70
  EventRole role_{};
71
  int64_t cpu_ns_;
72
  bool visited_status_{false};
Y
Yuang Liu 已提交
73
  std::string attr_;
74
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
75 76 77 78 79 80 81 82 83 84
#ifdef PADDLE_WITH_CUPTI
  int64_t gpu_ns_ = 0;

 public:
  void AddCudaElapsedTime(int64_t start_ns, int64_t end_ns) {
    gpu_ns_ += end_ns - start_ns;
  }

 private:
#else
85
  gpuEvent_t event_ = nullptr;
86 87 88 89
  int device_ = -1;
#endif
#endif
};
C
chengduo 已提交
90 91 92 93 94 95 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

class MemEvent {
 public:
  MemEvent(EventType type, uint64_t start_ns, uint64_t end_ns, size_t bytes,
           Place place, int64_t thread_id, const std::string& annotation)
      : type_(type),
        start_ns_(start_ns),
        end_ns_(end_ns),
        bytes_(bytes),
        place_(place),
        thread_id_(thread_id),
        annotation_(annotation) {}

  const EventType& type() const { return type_; }
  uint64_t start_ns() const { return start_ns_; }
  uint64_t end_ns() const { return end_ns_; }
  size_t bytes() const { return bytes_; }
  Place place() const { return place_; }
  int64_t thread_id() const { return thread_id_; }
  const std::string& annotation() const { return annotation_; }

 private:
  EventType type_;
  uint64_t start_ns_ = 0;
  uint64_t end_ns_ = 0;
  size_t bytes_;
  Place place_;
  int64_t thread_id_;
  std::string annotation_;
};

121 122
class CudaEvent {
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
123

124 125 126 127 128 129 130 131 132
 public:
  CudaEvent() {
#ifdef PADDLE_WITH_HIP
    hipEventCreateWithFlags(&event_, flags_);
#else
    cudaEventCreateWithFlags(&event_, flags_);
#endif
  }

133
  explicit CudaEvent(unsigned int flags) : flags_(flags) {
134 135 136 137 138 139 140
#ifdef PADDLE_WITH_HIP
    hipEventCreateWithFlags(&event_, flags_);
#else
    cudaEventCreateWithFlags(&event_, flags_);
#endif
  }

141 142 143 144 145 146 147 148 149
  ~CudaEvent() {
#ifdef PADDLE_WITH_HIP
    hipEventDestroy(event_);
#else
    cudaEventDestroy(event_);
#endif
  }

  void Record(const paddle::platform::stream::CUDAStream& stream) {
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
#ifdef PADDLE_WITH_HIP
    PADDLE_ENFORCE_CUDA_SUCCESS(hipEventRecord(event_, stream.raw_stream()));
#else
    PADDLE_ENFORCE_CUDA_SUCCESS(cudaEventRecord(event_, stream.raw_stream()));
#endif
  }

  bool Query() {
#ifdef PADDLE_WITH_HIP
    gpuError_t err = hipEventQuery(event_);
    if (err == hipSuccess) {
      return true;
    }
    if (err == hipErrorNotReady) {
      return false;
    }
#else
    gpuError_t err = cudaEventQuery(event_);
    if (err == cudaSuccess) {
      return true;
    }
    if (err == cudaErrorNotReady) {
      return false;
    }
#endif
    PADDLE_ENFORCE_CUDA_SUCCESS(err);
    return false;
  }

  void Synchronize() {
#ifdef PADDLE_WITH_HIP
    PADDLE_ENFORCE_CUDA_SUCCESS(hipEventSynchronize(event_));
#else
    PADDLE_ENFORCE_CUDA_SUCCESS(cudaEventSynchronize(event_));
#endif
  }
  gpuEvent_t GetRawCudaEvent() { return event_; }

 private:
#ifdef PADDLE_WITH_HIP
  unsigned int flags_ = hipEventDefault;
#else
  unsigned int flags_ = cudaEventDefault;
#endif
  gpuEvent_t event_;
#endif
};

198 199
}  // namespace platform
}  // namespace paddle