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

namespace paddle {
namespace platform {

L
liutiexing 已提交
24 25
// Default tracing level.
// It is Recommended to set the level explicitly.
C
chenjian 已提交
26
static constexpr uint32_t kDefaultTraceLevel = 4;
L
liutiexing 已提交
27 28

// Host event tracing. A trace marks something that happens but has no duration
L
liutiexing 已提交
29 30 31
// associated with it. For example, thread starts working.
// Chrome Trace Viewer Format: Instant Event
struct RecordInstantEvent {
L
liutiexing 已提交
32 33 34 35 36 37 38 39
  /**
   * @param name: It is the caller's reponsibility to manage the underlying
   * storage. RecordInstantEvent stores the pointer.
   * @param type: Classification which is used to instruct the profiling
   * data statistics.
   * @param level: Used to filter events, works like glog VLOG(level).
   * RecordEvent will works if HostTraceLevel >= level.
   */
40
  explicit RecordInstantEvent(const char* name, TracerEventType type,
C
chenjian 已提交
41
                              uint32_t level = kDefaultTraceLevel);
L
liutiexing 已提交
42 43
};

L
liutiexing 已提交
44
// Host event tracing. A trace starts when an object of this clas is created and
L
liutiexing 已提交
45 46 47 48
// stops when the object is destroyed.
// Chrome Trace Viewer Format: Duration Event/Complte Event
class RecordEvent {
 public:
L
liutiexing 已提交
49 50 51 52 53 54 55 56 57 58
  /**
   * @param name: If your string argument has a longer lifetime (e.g.: string
   * literal, static variables, etc) than the event, use 'const char* name'.
   * Do your best to avoid using 'std::string' as the argument type. It will
   * cause deep-copy to harm performance.
   * @param type: Classification which is used to instruct the profiling
   * data statistics.
   * @param level: Used to filter events, works like glog VLOG(level).
   * RecordEvent will works if HostTraceLevel >= level.
   */
C
chenjian 已提交
59 60 61 62 63
  explicit RecordEvent(
      const std::string& name,
      const TracerEventType type = TracerEventType::UserDefined,
      uint32_t level = kDefaultTraceLevel,
      const EventRole role = EventRole::kOrdinary);
L
liutiexing 已提交
64

L
liutiexing 已提交
65 66 67 68 69 70 71 72
  /**
   * @param name: It is the caller's reponsibility to manage the underlying
   * storage. RecordEvent stores the pointer.
   * @param type: Classification which is used to instruct the profiling
   * data statistics.
   * @param level: Used to filter events, works like glog VLOG(level).
   * RecordEvent will works if HostTraceLevel >= level.
   */
C
chenjian 已提交
73 74 75 76
  explicit RecordEvent(const char* name, const TracerEventType type =
                                             TracerEventType::UserDefined,
                       uint32_t level = kDefaultTraceLevel,
                       const EventRole role = EventRole::kOrdinary);
L
liutiexing 已提交
77

C
chenjian 已提交
78 79 80 81
  RecordEvent(const std::string& name, const std::string& attr,
              const TracerEventType type = TracerEventType::UserDefined,
              uint32_t level = kDefaultTraceLevel,
              const EventRole role = EventRole::kOrdinary);
L
liutiexing 已提交
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102

  // Stop event tracing explicitly before the object goes out of scope.
  // Sometimes it's inconvenient to use RAII
  void End();

  ~RecordEvent() { End(); }

 private:
  void OriginalConstruct(const std::string& name, const EventRole role,
                         const std::string& attr);

  bool is_enabled_{false};
  bool is_pushed_{false};
  // Event name
  std::string* name_{nullptr};
  const char* shallow_copy_name_{nullptr};
  uint64_t start_ns_;
  // Need to distinguish name by op type, block_id, program_id and perhaps
  // different kernel invocations within an op.
  // std::string full_name_;
  EventRole role_{EventRole::kOrdinary};
C
chenjian 已提交
103
  TracerEventType type_{TracerEventType::UserDefined};
L
liutiexing 已提交
104 105 106 107 108 109
  std::string* attr_{nullptr};
  bool finished_{false};
};

}  // namespace platform
}  // namespace paddle