Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/ccsrc/pipeline/jit/static_analysis/
Dstack_frame.h42 slot_index_(0), in StackFrame()
55 slot_index_ = 0; in Load()
69 if (slot_index_ >= node_slots_.size()) { in CurrentNode()
71 << " is invalid. Try to access frame sequence by index " << slot_index_ in CurrentNode()
74 return node_slots_[slot_index_]; in CurrentNode()
84 slot_index_++; in NextNode()
100 if (slot_index_ < node_slots_.size()) { in ToString()
101 auto current_node = node_slots_[slot_index_]; in ToString()
102 buffer << "(#" << slot_index_ << " / Running " << current_node->DebugString() << ")"; in ToString()
136 size_t slot_index_; variable