STT-tensorflow/tensorflow/python/profiler/internal/traceme_wrapper.cc
Jason Zaman dc86bb5296 systemlibs: unbundle pybind11
If pybind11 is installed on the system its headers are already captured
by @local_config_python//:python_headers, so the system lib only needs
to depend on that.

When installed correctly, includes should be #include "pybind11/...",
the bundled pybind11 is based off the source repo which does not match
the install paths. Use bazels strip_include_prefix to align the bundled
headers correctly.

Signed-off-by: Jason Zaman <jason@perfinion.com>
2020-04-08 03:38:38 +08:00

52 lines
1.6 KiB
C++

/* Copyright 2019 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.
==============================================================================*/
#include <utility>
#include "absl/types/optional.h"
#include "pybind11/pybind11.h"
#include "tensorflow/core/platform/types.h"
#include "tensorflow/core/profiler/lib/traceme.h"
namespace py = pybind11;
namespace {
// Helper to implement TraceMe as a context manager in Python.
class TraceMeWrapper {
public:
explicit TraceMeWrapper(const tensorflow::string& name) : name_(name) {}
void Enter() { traceme_.emplace(std::move(name_)); }
void Exit() { traceme_.reset(); }
static bool IsEnabled() { return tensorflow::profiler::TraceMe::Active(); }
private:
tensorflow::string name_;
absl::optional<tensorflow::profiler::TraceMe> traceme_;
};
} // namespace
PYBIND11_MODULE(_pywrap_traceme, m) {
py::class_<TraceMeWrapper> traceme_class(m, "TraceMe");
traceme_class.def(py::init<const tensorflow::string&>())
.def("Enter", &TraceMeWrapper::Enter)
.def("Exit", &TraceMeWrapper::Exit)
.def_static("IsEnabled", &TraceMeWrapper::IsEnabled);
};