Home
last modified time | relevance | path

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

/third_party/skia/resources/sksl/metal/
DOutParams.sksl31 void out_pair(out half v1, out half v2) { v1 = 1; v2 = 2; }
44 out_pair(h, h1);
45 out_pair(h, h);
46 out_pair(h2.x, h2.y);
47 out_pair(h2.x, h2.x);
48 out_pair(h2.x, h3.x);
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/ascend/buffer_fusion/
Dub_pattern_fusion.cc378 session::AnfWithOutIndex out_pair(real_output.first, output_idx); in SetFusionOpRefInfos() local
379 if (kernel_graph->IsInRefOutputMap(out_pair)) { in SetFusionOpRefInfos()
380 auto origin_pair = kernel_graph->GetRefCorrespondOutput(out_pair); in SetFusionOpRefInfos()
385 session::AnfWithOutIndex out_pair(output, 0); in SetFusionOpRefInfos() local
386 if (kernel_graph->IsInRefOutputMap(out_pair)) { in SetFusionOpRefInfos()
387 auto origin_pair = kernel_graph->GetRefCorrespondOutput(out_pair); in SetFusionOpRefInfos()
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/mem_reuse/
Dmem_reuse.cc64 session::AnfWithOutIndex out_pair(kernel_cnode, output_index); in InitDynamicOutputKernelRef() local
65 if (graph_->IsInRefOutputMap(out_pair)) { in InitDynamicOutputKernelRef()
67 auto origin_pair = graph_->GetRefCorrespondOutput(out_pair); in InitDynamicOutputKernelRef()
/third_party/mindspore/mindspore/ccsrc/backend/session/
Dkernel_graph.cc872 AnfWithOutIndex KernelGraph::GetRefCorrespondOutput(const AnfWithOutIndex &out_pair) const { in GetRefCorrespondOutput()
873 if (!IsInRefOutputMap(out_pair)) { in GetRefCorrespondOutput()
874 …MS_LOG(EXCEPTION) << "Out_pair is not in RefOutputMap, node is " << out_pair.first->DebugString() … in GetRefCorrespondOutput()
875 << out_pair.second; in GetRefCorrespondOutput()
877 return ref_out_in_map_.at(out_pair); in GetRefCorrespondOutput()
Dkernel_graph.h170 AnfWithOutIndex GetRefCorrespondOutput(const AnfWithOutIndex &out_pair) const;
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/somas/
Dsomas.cc806 session::AnfWithOutIndex out_pair(kernel, out_index); in RefNodeProcess() local
807 if (graph->IsInRefOutputMap(out_pair)) { in RefNodeProcess()
808 auto origin_pair = graph->GetRefCorrespondOutput(out_pair); in RefNodeProcess()
/third_party/mindspore/mindspore/ccsrc/runtime/device/
Dkernel_runtime.cc668 session::AnfWithOutIndex out_pair(kernel, i); in UpdateRefNodeOutputMem() local
669 if (graph.IsInRefOutputMap(out_pair)) { in UpdateRefNodeOutputMem()
670 auto origin_pair = graph.GetRefCorrespondOutput(out_pair); in UpdateRefNodeOutputMem()