Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/ccsrc/transform/graph_ir/
Dconvert.cc299out_handle_cache_[it.get()] = OutHandler(dataset_iter_getnext_, "y" + std::to_string(getnext_idx)); in MakeDatasetHandler()
606 auto it = out_handle_cache_.find(anf_out.get()); in TraceOutputFromTupleGetItem()
607 if (it != out_handle_cache_.end()) { in TraceOutputFromTupleGetItem()
673 auto item = out_handle_cache_.find(pre_node.get()); in TraceOutput()
674 if (item != out_handle_cache_.end()) { in TraceOutput()
690 auto it = out_handle_cache_.find(anf_out.get()); in TraceOutputFromParameter()
691 if (it != out_handle_cache_.end()) { in TraceOutputFromParameter()
803 } else if (out_handle_cache_.find(item.get()) != out_handle_cache_.end()) { in GetCaseNodeInput()
804 tuple_items->push_back(out_handle_cache_[item.get()]); in GetCaseNodeInput()
1318 auto it = out_handle_cache_.find(pred.get()); in SetOpInput()
[all …]
Dconvert.h204 std::unordered_map<AnfNode *, OutHandler> out_handle_cache_; variable