trace_event_collector.h 2.4 KB
Newer Older
L
liutiexing 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* Copyright (c) 2022 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 <list>
L
liutiexing 已提交
18 19
#include <string>
#include <unordered_map>
20
#include "paddle/fluid/platform/profiler/trace_event.h"
L
liutiexing 已提交
21 22 23 24

namespace paddle {
namespace platform {

25 26 27
class TraceEventCollector {
 public:
  void AddHostEvent(HostTraceEvent&& event) { host_events_.push_back(event); }
L
liutiexing 已提交
28

29 30 31
  void AddRuntimeEvent(RuntimeTraceEvent&& event) {
    runtime_events_.push_back(event);
  }
L
liutiexing 已提交
32

33 34 35
  void AddDeviceEvent(DeviceTraceEvent&& event) {
    device_events_.push_back(event);
  }
L
liutiexing 已提交
36

L
liutiexing 已提交
37 38 39 40
  void AddThreadName(uint64_t tid, const std::string& name) {
    thread_names_[tid] = name;
  }

41 42 43 44 45 46
  void AddMemEvent(MemTraceEvent&& event) { mem_events_.push_back(event); }

  void AddOperatorSupplementEvent(OperatorSupplementEvent&& event) {
    op_supplement_events_.push_back(event);
  }

47
  const std::list<HostTraceEvent>& HostEvents() const { return host_events_; }
L
liutiexing 已提交
48

49 50
  const std::list<RuntimeTraceEvent>& RuntimeEvents() const {
    return runtime_events_;
L
liutiexing 已提交
51 52
  }

53 54
  const std::list<DeviceTraceEvent>& DeviceEvents() const {
    return device_events_;
L
liutiexing 已提交
55 56
  }

57 58 59 60 61 62
  const std::list<MemTraceEvent>& MemEvents() const { return mem_events_; }

  const std::list<OperatorSupplementEvent>& OperatorSupplementEvents() const {
    return op_supplement_events_;
  }

L
liutiexing 已提交
63 64 65 66
  const std::unordered_map<uint64_t, std::string>& ThreadNames() const {
    return thread_names_;
  }

67 68 69 70 71
  void ClearAll() {
    thread_names_.clear();
    host_events_.clear();
    runtime_events_.clear();
    device_events_.clear();
72 73
    mem_events_.clear();
    op_supplement_events_.clear();
74 75
  }

L
liutiexing 已提交
76
 private:
L
liutiexing 已提交
77
  std::unordered_map<uint64_t, std::string> thread_names_;
78 79 80
  std::list<HostTraceEvent> host_events_;
  std::list<RuntimeTraceEvent> runtime_events_;
  std::list<DeviceTraceEvent> device_events_;
81 82
  std::list<MemTraceEvent> mem_events_;
  std::list<OperatorSupplementEvent> op_supplement_events_;
L
liutiexing 已提交
83 84 85 86
};

}  // namespace platform
}  // namespace paddle