Searched refs:out_pair (Results 1 – 7 of 7) sorted by relevance
/third_party/skia/resources/sksl/metal/ |
D | OutParams.sksl | 31 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/ |
D | ub_pattern_fusion.cc | 378 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/ |
D | mem_reuse.cc | 64 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/ |
D | kernel_graph.cc | 872 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()
|
D | kernel_graph.h | 170 AnfWithOutIndex GetRefCorrespondOutput(const AnfWithOutIndex &out_pair) const;
|
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/somas/ |
D | somas.cc | 806 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/ |
D | kernel_runtime.cc | 668 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()
|