Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/ccsrc/backend/optimizer/ascend/format_type/
Dmerge_cast_to_op.cc160 auto next_op_name = AnfAlgo::GetCNodeName(next_cnode); in MergeCastToNextOp() local
161 if (next_op_name == prim::kPrimSend->name() || next_op_name == kStackPushOpName) { in MergeCastToNextOp()
/third_party/mindspore/mindspore/ccsrc/pipeline/pynative/
Dbase.h58 std::string next_op_name = ""; member
Dpynative_execute.cc1149 op_exec_info->next_op_name = op_name; in DoAutoCast()
1957 op_exec_info->next_op_name, in RunOpInMs()
1966 op_exec_info->next_op_name, in RunOpInMs()
/third_party/mindspore/mindspore/ccsrc/runtime/device/ascend/
Dkernel_select_ascend.cc337 auto next_op_name = AnfAlgo::GetNodeAttr<std::string>(kernel_node, kAttrPynativeNextOpName); in SetCastAndWeightFormat() local
338 auto iter = kNextOpFormatList.find(next_op_name); in SetCastAndWeightFormat()
340 MS_LOG(INFO) << "The op name " << next_op_name << "has not been set in the next op map "; in SetCastAndWeightFormat()
/third_party/mindspore/mindspore/ccsrc/backend/session/
Dsession_basic.h66 std::string next_op_name = ""; member
Dsession_basic.cc2163 AnfAlgo::SetNodeAttr(kAttrPynativeNextOpName, MakeValue(op_run_info.next_op_name), cnode); in ConstructSingleOpGraph()