blob: 45d28f84f40f7772debbf1e442adc938c9352c03 [file] [log] [blame]
/* Copyright 2015 The TensorFlow 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.
==============================================================================*/
#ifndef TENSORFLOW_CORE_PLATFORM_TRACING_H_
#define TENSORFLOW_CORE_PLATFORM_TRACING_H_
// Tracing interface
#include <array>
#include <atomic>
#include <map>
#include <memory>
#include "absl/memory/memory.h"
#include "tensorflow/core/lib/core/stringpiece.h"
#include "tensorflow/core/lib/strings/strcat.h"
#include "tensorflow/core/platform/annotation.h"
#include "tensorflow/core/platform/macros.h"
#include "tensorflow/core/platform/mutex.h"
#include "tensorflow/core/platform/platform.h"
#include "tensorflow/core/platform/types.h"
namespace tensorflow {
namespace tracing {
// This enumeration contains the identifiers of all TensorFlow CPU profiler
// events. It must be kept in sync with the code in GetEventCategoryName().
enum struct EventCategory : unsigned {
kScheduleClosure = 0,
kRunClosure = 1,
kCompute = 2,
kNumCategories = 3 // sentinel - keep last
};
constexpr unsigned GetNumEventCategories() {
return static_cast<unsigned>(EventCategory::kNumCategories);
}
const char* GetEventCategoryName(EventCategory);
// Interface for CPU profiler events.
class EventCollector {
public:
virtual ~EventCollector() {}
virtual void RecordEvent(uint64 arg) const = 0;
virtual void StartRegion(uint64 arg) const = 0;
virtual void StopRegion() const = 0;
// Annotates the current thread with a name.
static void SetCurrentThreadName(const char* name);
// Returns whether event collection is enabled.
static bool IsEnabled();
private:
friend void SetEventCollector(EventCategory, const EventCollector*);
friend const EventCollector* GetEventCollector(EventCategory);
static std::array<const EventCollector*, GetNumEventCategories()> instances_;
};
// Set the callback for RecordEvent and ScopedRegion of category.
// Not thread safe. Only call while EventCollector::IsEnabled returns false.
void SetEventCollector(EventCategory category, const EventCollector* collector);
// Returns the callback for RecordEvent and ScopedRegion of category if
// EventCollector::IsEnabled(), otherwise returns null.
inline const EventCollector* GetEventCollector(EventCategory category) {
if (EventCollector::IsEnabled()) {
return EventCollector::instances_[static_cast<unsigned>(category)];
}
return nullptr;
}
// Returns a unique id to pass to RecordEvent/ScopedRegion. Never returns zero.
uint64 GetUniqueArg();
// Returns an id for name to pass to RecordEvent/ScopedRegion.
uint64 GetArgForName(StringPiece name);
// Records an atomic event through the currently registered EventCollector.
inline void RecordEvent(EventCategory category, uint64 arg) {
if (auto collector = GetEventCollector(category)) {
collector->RecordEvent(arg);
}
}
// Records an event for the duration of the instance lifetime through the
// currently registered EventCollector.
class ScopedRegion {
ScopedRegion(ScopedRegion&) = delete; // Not copy-constructible.
ScopedRegion& operator=(ScopedRegion&) = delete; // Not assignable.
public:
ScopedRegion(ScopedRegion&& other) noexcept // Move-constructible.
: collector_(other.collector_) {
other.collector_ = nullptr;
}
ScopedRegion(EventCategory category, uint64 arg)
: collector_(GetEventCollector(category)) {
if (collector_) {
collector_->StartRegion(arg);
}
}
// Same as ScopedRegion(category, GetUniqueArg()), but faster if
// EventCollector::IsEnaled() returns false.
ScopedRegion(EventCategory category)
: collector_(GetEventCollector(category)) {
if (collector_) {
collector_->StartRegion(GetUniqueArg());
}
}
// Same as ScopedRegion(category, GetArgForName(name)), but faster if
// EventCollector::IsEnaled() returns false.
ScopedRegion(EventCategory category, StringPiece name)
: collector_(GetEventCollector(category)) {
if (collector_) {
collector_->StartRegion(GetArgForName(name));
}
}
~ScopedRegion() {
if (collector_) {
collector_->StopRegion();
}
}
bool IsEnabled() const { return collector_ != nullptr; }
private:
const EventCollector* collector_;
};
// Return the pathname of the directory where we are writing log files.
const char* GetLogDir();
} // namespace tracing
} // namespace tensorflow
#if defined(PLATFORM_GOOGLE)
#include "tensorflow/core/platform/google/tracing_impl.h"
#else
#include "tensorflow/core/platform/default/tracing_impl.h"
#endif
#endif // TENSORFLOW_CORE_PLATFORM_TRACING_H_