device_tracer.h 2.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 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

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 "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.
//////////////////////

// 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;
    uint32_t device_id;
    uint32_t stream_id;
    uint32_t correlation_id;
  };
X
Xin Pan 已提交
39 40 41 42 43 44
  struct CPURecord {
    std::string name;
    uint64_t start_ns;
    uint64_t end_ns;
    uint64_t thread_id;
  };
45 46 47 48 49 50 51 52 53 54 55 56

  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 已提交
57 58 59
  virtual void AddCPURecords(const char* anno, uint64_t start_ns,
                             uint64_t end_ns) = 0;

60 61 62 63 64 65 66
  // Add a cuda kernel stats. `correlation_id` will be mapped to annotation
  // added before for human readability.
  virtual void AddKernelRecords(uint64_t start, uint64_t end,
                                uint32_t device_id, uint32_t stream_id,
                                uint32_t correlation_id) = 0;

  // Generate a proto after done (Disabled).
X
Xin Pan 已提交
67
  virtual proto::Profile GenProfile(const std::string& profile_path) = 0;
68 69 70 71 72 73 74 75 76 77 78

  virtual bool IsEnabled() = 0;
};

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

// Set a name for the cuda kernel operation being launched by the thread.
void SetCurAnnotation(const char* anno);
// Clear the name after the operation is done.
void ClearCurAnnotation();
X
Xin Pan 已提交
79 80
// Current name of the operation being run in the thread.
const char* CurAnnotation();
81 82
}  // namespace platform
}  // namespace paddle