Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/ccsrc/backend/optimizer/ascend/ir_fission/
Dcdist_fission.cc100 if (GetBoolAttr(cdist_cnode, kAttrVisited)) { in Process()
103 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), node); in Process()
130 if (GetBoolAttr(cdist_grad_cnode, kAttrVisited)) { in Process()
133 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), node); in Process()
Dbce_with_logits_loss_fission.cc86 if (GetBoolAttr(cnode, kAttrVisited)) { in Process()
89 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), node); in Process()
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/ascend/format_type/
Dconvert_cast_format.cc76 …if (AnfAlgo::HasNodeAttr(kAttrVisited, cast_node) && AnfAlgo::GetNodeAttr<bool>(cast_node, kAttrVi… in ChangeCastFormat()
79 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), cast_node); in ChangeCastFormat()
Dinsert_cast.cc69 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), replace_node); in InsertCastForMultipleOutput()
105 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), replace_node); in InsertCastForOutput()
128 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), node); in Process()
Dinsert_trans_op.cc39 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), node); in Process()
Dtrans_op_format_refine.cc33 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), node); in Process()
Dinsert_transpose_for_dynamic_gru_v2.cc87 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), node); in Process()
Dinsert_transpose_for_basiclstm_op.cc88 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), node); in Process()
Ddeal_ref_and_split_unsupported_transdata.cc247 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), node); in Process()
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/ascend/enhancer/
Dinsert_tensor_move_for_getnext.cc70 if (AnfAlgo::HasNodeAttr(kAttrVisited, cnode)) { in Process()
74 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), cnode); in Process()
Dadd_attr_for_3d_graph.cc32 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), node); in Process()
Dadd_placeholder_for_dynamic_rnn.cc45 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), node); in Process()
Dadd_placeholder_for_dynamic_gru.cc42 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), node); in Process()
Dsplit_n_optimizer.cc205 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), node); in Process()
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/gpu/
Dbce_with_logits_loss_fusion.cc79 if (GetBoolAttr(cnode, kAttrVisited)) { in Process()
82 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), node); in Process()
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/pass/
Derase_visit_attr.cc32 AnfAlgo::EraseNodeAttr(kAttrVisited, node); in Process()
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/ascend/
Dascend_helper.cc50 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), reshape); in CreateReshapeNode()
318 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), trans_node); in NewTransOpNode()
452 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), cast); in InsertCastForInput()
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/common/
Dhelper.cc93 return !prim_py->HasAttr(kAttrVisited); in UnVisited()
97 return !func_graph->has_flag(kAttrVisited); in UnVisited()
160 return prim_py->HasAttr(kAttrVisited); in Visited()
164 return func_graph->has_flag(kAttrVisited); in Visited()
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/graph_kernel/
Ddecrease_compute_precision.cc117 AnfAlgo::SetNodeAttr(kAttrVisited, MakeValue(true), cast); in InsertCastForGraphKernel()
/third_party/mindspore/mindspore/ccsrc/utils/
Dutils.h342 constexpr auto kAttrVisited = "visited"; variable