device_tracer.h 4.9 KB
Newer Older
X
Xin Pan 已提交
1
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14

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
15

Q
qiaolongfei 已提交
16
#include <chrono>  // NOLINT
17 18
#include <string>

19
#include "paddle/fluid/platform/dynload/cupti.h"
20
#include "paddle/fluid/platform/event.h"
C
chengduo 已提交
21
#include "paddle/fluid/platform/place.h"
W
wopeizl 已提交
22
#include "paddle/fluid/platform/port.h"
23 24 25 26 27 28 29 30
#include "paddle/fluid/platform/profiler.pb.h"

namespace paddle {
namespace platform {

///////////////////////
// WARN: Under Development. Don't depend on it yet.
//////////////////////
Q
qiaolongfei 已提交
31 32 33 34 35 36
inline uint64_t PosixInNsec() {
  struct timeval tv;
  gettimeofday(&tv, nullptr);
  return 1000 * (static_cast<uint64_t>(tv.tv_sec) * 1000000 + tv.tv_usec);
}

37 38 39 40 41 42 43
// DeviceTracer performs the following tasks:
// 1. Register cuda callbacks for various events: kernel, memcpy, etc.
// 2. Collect cuda statistics: start/end ts, memory, etc.
// 3. Generate a protobuf for further analysis.
class DeviceTracer {
 public:
  struct KernelRecord {
Z
ZongwuYang 已提交
44
    std::string name;
45 46
    uint64_t start_ns;
    uint64_t end_ns;
X
Xin Pan 已提交
47 48
    int64_t device_id;
    int64_t stream_id;
49 50
    uint32_t correlation_id;
  };
C
chengduo 已提交
51

X
Xin Pan 已提交
52 53 54 55
  struct CPURecord {
    std::string name;
    uint64_t start_ns;
    uint64_t end_ns;
X
Xin Pan 已提交
56 57
    int64_t device_id;
    int64_t thread_id;
X
Xin Pan 已提交
58
  };
C
chengduo 已提交
59

X
Xin Pan 已提交
60 61 62 63
  struct MemRecord {
    std::string name;
    uint64_t start_ns;
    uint64_t end_ns;
X
Xin Pan 已提交
64 65
    int64_t device_id;
    int64_t stream_id;
X
Xin Pan 已提交
66 67 68
    uint32_t correlation_id;
    uint64_t bytes;
  };
C
chengduo 已提交
69 70 71 72 73 74 75 76 77 78 79

  struct MemInfoRecord {
    uint64_t start_ns;
    uint64_t end_ns;
    size_t bytes;
    Place place;
    int64_t thread_id;
    std::string alloc_in;
    std::string free_in;
  };

80 81 82 83 84 85 86 87
  struct ActiveKindRecord {
    std::string name;
    uint64_t start_ns;
    uint64_t end_ns;
    int64_t device_id;
    int64_t thread_id;
    uint32_t correlation_id;
  };
C
chengduo 已提交
88

89 90 91 92 93
  virtual ~DeviceTracer() {}
  // Needs to be called once before use.
  virtual void Enable() = 0;
  // Needs to be called once after use.
  virtual void Disable() = 0;
94 95
  // Needs to be called once before reuse.
  virtual void Reset() = 0;
96 97

  // Add a pair to correlate internal cuda id with high level
98
  // annotation event(with string). So cuda statistics can be represented by
99
  // human-readable annotations.
100
  virtual void AddAnnotation(uint32_t id, Event* event) = 0;
101

X
Xin Pan 已提交
102
  virtual void AddMemRecords(const std::string& name, uint64_t start_ns,
X
Xin Pan 已提交
103 104
                             uint64_t end_ns, int64_t device_id,
                             int64_t stream_id, uint32_t correlation_id,
X
Xin Pan 已提交
105 106
                             uint64_t bytes) = 0;

X
Xin Pan 已提交
107 108 109
  virtual void AddCPURecords(const std::string& anno, uint64_t start_ns,
                             uint64_t end_ns, int64_t device_id,
                             int64_t thread_id) = 0;
110 111 112 113
  virtual void AddActiveKindRecords(const std::string& anno, uint64_t start_ns,
                                    uint64_t end_ns, int64_t device_id,
                                    int64_t thread_id,
                                    uint32_t correlation_id) = 0;
X
Xin Pan 已提交
114

C
chengduo 已提交
115 116 117 118 119 120
  virtual void AddMemInfoRecord(uint64_t start_ns, uint64_t end_ns,
                                size_t bytes, const Place& place,
                                const std::string& alloc_in,
                                const std::string& free_in,
                                int64_t thread_id) = 0;

121 122
  // Add a cuda kernel stats. `correlation_id` will be mapped to annotation
  // added before for human readability.
Z
ZongwuYang 已提交
123 124 125
  virtual void AddKernelRecords(std::string name, uint64_t start, uint64_t end,
                                int64_t device_id, int64_t stream_id,
                                uint32_t correlation_id) = 0;
126 127

  // Generate a proto after done (Disabled).
X
Xin Pan 已提交
128
  virtual proto::Profile GenProfile(const std::string& profile_path) = 0;
129

130 131 132
  // generate kernel elapsed time into Event
  virtual void GenEventKernelCudaElapsedTime() = 0;

133 134 135 136 137 138 139
  virtual bool IsEnabled() = 0;
};

// Get a DeviceTracer.
DeviceTracer* GetDeviceTracer();

// Set a name for the cuda kernel operation being launched by the thread.
140
void SetCurAnnotation(Event* event);
141 142
// Clear the name after the operation is done.
void ClearCurAnnotation();
X
Xin Pan 已提交
143
// Current name of the operation being run in the thread.
144 145
std::string CurAnnotationName();
Event* CurAnnotation();
X
Xin Pan 已提交
146 147 148 149

void SetCurBlock(int block_id);
void ClearCurBlock();
int BlockDepth();
150 151 152 153

// Set current thread id, so we can map the system thread id to thread id.
void RecoreCurThreadId(int32_t id);
int32_t GetThreadIdFromSystemThreadId(uint32_t id);
154 155
}  // namespace platform
}  // namespace paddle