/usr/local/lib64/python3.6/site-packages/torch/include/torch/csrc/autograd
Edit: /usr/local/lib64/python3.6/site-packages/torch/include/torch/csrc/autograd/python_anomaly_mode.h (1246B)
#pragma once
#include
#include
#include
#include
namespace torch { namespace autograd {
struct PyAnomalyMetadata : public AnomalyMetadata {
// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables,clang-diagnostic-writable-strings)
static constexpr const char* ANOMALY_TRACE_KEY = "traceback_";
// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables,clang-diagnostic-writable-strings)
static constexpr const char* ANOMALY_PARENT_KEY = "parent_";
PyAnomalyMetadata() {
pybind11::gil_scoped_acquire gil;
dict_ = PyDict_New();
}
~PyAnomalyMetadata() override {
// If python is already dead, leak the wrapped python objects
if (Py_IsInitialized()) {
pybind11::gil_scoped_acquire gil;
Py_DECREF(dict_);
}
}
void store_stack() override;
void print_stack(const std::string& current_node_name) override;
void assign_parent(const std::shared_ptr& parent_node) override;
PyObject* dict() {
return dict_;
}
private:
PyObject* dict_;
};
void _print_stack(PyObject* trace_stack, const std::string& current_node_name, bool is_parent);
}}