Home
last modified time | relevance | path

Searched refs:PythonTraceEntry (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/python/profiler/internal/
Dpython_hooks.h47 struct PythonTraceEntry { struct
48 PythonTraceEntry(uint64 start, uint64 end, PyCodeObject* code, in PythonTraceEntry() function
57 ~PythonTraceEntry() { in ~PythonTraceEntry() argument
61 PythonTraceEntry(PythonTraceEntry&& other) { in PythonTraceEntry() argument
77 PythonTraceEntry(const PythonTraceEntry& other) = delete; argument
78 void operator=(const PythonTraceEntry&) = delete; argument
79 void operator=(PythonTraceEntry&&) = delete; argument
83 std::deque<PythonTraceEntry> completed;
84 std::stack<PythonTraceEntry> active;
Dpython_hooks.cc81 void AddEventToXLine(const PythonTraceEntry& event, XLineBuilder* line, in AddEventToXLine()
93 std::string PythonTraceEntry::Name() const { in Name()