device_tracer.h 3.7 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

D
dzhwinter 已提交
16
#if !defined(_WIN32)
Q
qiaolongfei 已提交
17
#include <sys/time.h>
D
dzhwinter 已提交
18 19 20 21
#else
#include <windows.h>
#endif  // !_WIN32

Q
qiaolongfei 已提交
22 23
#include <time.h>
#include <chrono>  // NOLINT
24 25
#include <string>

26 27 28 29 30 31 32 33 34
#include "paddle/fluid/platform/dynload/cupti.h"
#include "paddle/fluid/platform/profiler.pb.h"

namespace paddle {
namespace platform {

///////////////////////
// WARN: Under Development. Don't depend on it yet.
//////////////////////
D
dzhwinter 已提交
35
#if !defined(_WIN32)
Q
qiaolongfei 已提交
36 37 38 39 40
inline uint64_t PosixInNsec() {
  struct timeval tv;
  gettimeofday(&tv, nullptr);
  return 1000 * (static_cast<uint64_t>(tv.tv_sec) * 1000000 + tv.tv_usec);
}
D
dzhwinter 已提交
41 42 43
#else
inline uint64_t PosixInNsec() { return static_cast<uint64_t>(0); }
#endif  // !_WIN32
Q
qiaolongfei 已提交
44

45 46 47 48 49 50 51 52 53
// 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 {
    uint64_t start_ns;
    uint64_t end_ns;
X
Xin Pan 已提交
54 55
    int64_t device_id;
    int64_t stream_id;
56 57
    uint32_t correlation_id;
  };
X
Xin Pan 已提交
58 59 60 61
  struct CPURecord {
    std::string name;
    uint64_t start_ns;
    uint64_t end_ns;
X
Xin Pan 已提交
62 63
    int64_t device_id;
    int64_t thread_id;
X
Xin Pan 已提交
64
  };
X
Xin Pan 已提交
65 66 67 68
  struct MemRecord {
    std::string name;
    uint64_t start_ns;
    uint64_t end_ns;
X
Xin Pan 已提交
69 70
    int64_t device_id;
    int64_t stream_id;
X
Xin Pan 已提交
71 72 73
    uint32_t correlation_id;
    uint64_t bytes;
  };
74 75 76 77 78 79 80 81 82 83 84 85

  virtual ~DeviceTracer() {}
  // Needs to be called once before use.
  virtual void Enable() = 0;
  // Needs to be called once after use.
  virtual void Disable() = 0;

  // Add a pair to correlate internal cuda id with high level
  // annotation (string). So cuda statistics can be represented by
  // human-readable annotations.
  virtual void AddAnnotation(uint64_t id, const std::string& anno) = 0;

X
Xin Pan 已提交
86
  virtual void AddMemRecords(const std::string& name, uint64_t start_ns,
X
Xin Pan 已提交
87 88
                             uint64_t end_ns, int64_t device_id,
                             int64_t stream_id, uint32_t correlation_id,
X
Xin Pan 已提交
89 90
                             uint64_t bytes) = 0;

X
Xin Pan 已提交
91 92 93
  virtual void AddCPURecords(const std::string& anno, uint64_t start_ns,
                             uint64_t end_ns, int64_t device_id,
                             int64_t thread_id) = 0;
X
Xin Pan 已提交
94

95 96
  // Add a cuda kernel stats. `correlation_id` will be mapped to annotation
  // added before for human readability.
X
Xin Pan 已提交
97 98
  virtual void AddKernelRecords(uint64_t start, uint64_t end, int64_t device_id,
                                int64_t stream_id, uint32_t correlation_id) = 0;
99 100

  // Generate a proto after done (Disabled).
X
Xin Pan 已提交
101
  virtual proto::Profile GenProfile(const std::string& profile_path) = 0;
102 103 104 105 106 107 108 109

  virtual bool IsEnabled() = 0;
};

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

// Set a name for the cuda kernel operation being launched by the thread.
X
Xin Pan 已提交
110
void SetCurAnnotation(const std::string& anno);
111 112
// Clear the name after the operation is done.
void ClearCurAnnotation();
X
Xin Pan 已提交
113
// Current name of the operation being run in the thread.
X
Xin Pan 已提交
114 115 116 117 118
std::string CurAnnotation();

void SetCurBlock(int block_id);
void ClearCurBlock();
int BlockDepth();
119 120
}  // namespace platform
}  // namespace paddle