Home
last modified time | relevance | path

Searched defs:FrameSummary (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/python/util/
Dtf_stack.cc35 struct FrameSummary { struct
36 py::str filename;
37 int lineno;
38 py::str name;
39 py::object globals;
41 py::object line() const { in line()
60 bool operator==(const FrameSummary& other) const { in operator ==()
65 bool operator!=(const FrameSummary& other) const { return !(*this == other); } in operator !=()
144 .def("__len__", [](const FrameSummary&) { return 4; }); in PYBIND11_MODULE()
Dtf_stack.py156 FrameSummary = _tf_stack.FrameSummary variable
/external/tensorflow/tensorflow/python/framework/
Derror_interpolation_test.py34 FrameSummary = collections.namedtuple( variable
/external/python/cpython3/Lib/
Dtraceback.py227 class FrameSummary: class