trace_event_collector.h 1.5 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>
18
#include "paddle/fluid/platform/profiler/trace_event.h"
L
liutiexing 已提交
19 20 21 22

namespace paddle {
namespace platform {

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

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

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

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

37 38
  const std::list<RuntimeTraceEvent>& RuntimeEvents() const {
    return runtime_events_;
L
liutiexing 已提交
39 40
  }

41 42
  const std::list<DeviceTraceEvent>& DeviceEvents() const {
    return device_events_;
L
liutiexing 已提交
43 44 45
  }

 private:
46 47 48
  std::list<HostTraceEvent> host_events_;
  std::list<RuntimeTraceEvent> runtime_events_;
  std::list<DeviceTraceEvent> device_events_;
L
liutiexing 已提交
49 50 51 52
};

}  // namespace platform
}  // namespace paddle