Home
last modified time | relevance | path

Searched refs:subgraphs (Results 1 – 23 of 23) sorted by relevance

/third_party/mindspore/mindspore/_extends/graph_kernel/
Dsplitter.py54 def _dump_split_info(flags, graph_json, graph_desc, subgraphs, graph_mode): argument
64 if len(subgraphs) > 1 or subgraphs[0].stitch_info.has_stitch_op():
65 for i, g in enumerate(subgraphs):
/third_party/mindspore/mindspore/lite/src/
Dsub_graph_split.cc74 bool SearchSubGraph::CheckIsParallelSubGraph(const std::vector<Subgraph> &subgraphs) { in CheckIsParallelSubGraph() argument
75 if (subgraphs.size() != kDefaultSubGraphSize) { in CheckIsParallelSubGraph()
79 for (const auto &sub_graph : subgraphs) { in CheckIsParallelSubGraph()
808 std::vector<Subgraph> &subgraphs = map.second; in SubGraphSplitByMiddle() local
809 if (subgraphs.size() < kDefaultSubGraphSize) { in SubGraphSplitByMiddle()
813 CalculateCostModel(&subgraphs); in SubGraphSplitByMiddle()
818 InitSubgraphRuntimeInfo(&subgraphs); in SubGraphSplitByMiddle()
819 SubgraphFusion(&subgraphs); in SubGraphSplitByMiddle()
821 MS_ASSERT(subgraphs.size() == kDefaultSubGraphSize); in SubGraphSplitByMiddle()
822 …if (subgraphs.at(kDefaultFirstSubgraph).nodes_.empty() || subgraphs.at(kDefaultSecondSubgraph).nod… in SubGraphSplitByMiddle()
[all …]
Dsub_graph_split.h109 bool CheckIsParallelSubGraph(const std::vector<Subgraph> &subgraphs);
/third_party/boost/libs/graph_parallel/test/
Dssca.cpp341 std::vector<std::vector<vertex_descriptor> > subgraphs; in subgraph_extraction() local
378 subgraphs.push_back(std::vector<vertex_descriptor>()); in subgraph_extraction()
379 std::vector<vertex_descriptor>& subgraph = subgraphs.back(); in subgraph_extraction()
393 for (unsigned int i = 0; i < subgraphs.size(); i++) { in subgraph_extraction()
394 all_gather(pg, subgraphs[i].begin(), subgraphs[i].end(), subgraphs[i]); in subgraph_extraction()
395 std::sort(subgraphs[i].begin(), subgraphs[i].end()); in subgraph_extraction()
396 subgraphs[i].erase(std::unique(subgraphs[i].begin(), subgraphs[i].end()), in subgraph_extraction()
397 subgraphs[i].end()); in subgraph_extraction()
401 for (int i = 0; abs(i) < subgraphs.size(); i++) { in subgraph_extraction()
403 for (int j = 0; abs(j) < subgraphs[i].size(); j++) in subgraph_extraction()
[all …]
/third_party/mindspore/tests/st/graph_kernel/model/
Dgraph_kernel_split.py83 subgraphs = []
92 subgraphs.append(g)
98 subgraphs.append(g)
99 return subgraphs
Dtest_split.py373 subgraphs = sp.split(False)
376 for i, g in enumerate(subgraphs):
382 fc, sub_costs = model.estimate(subgraphs)
403 subgraphs = split.GraphSplitByPatternV2(graph).split()
404 for i, g in enumerate(subgraphs):
408 assert len(subgraphs) == expect_n
/third_party/mindspore/mindspore/lite/test/config/
Dmodels_npu_fp16.cfg43 #hdc_retinaface #too many subgraphs
51 # hdc_ocr_attention.onnx 0.5 #too many subgraphs
52 # hdc_ocr_detect.onnx 30 #too many subgraphs
Dmodels_npu.cfg59 #hdc_retinaface #too many subgraphs
67 hdc_ocr_attention.onnx 0.5 #too many subgraphs
68 # hdc_ocr_detect.onnx 30 #too many subgraphs
/third_party/boost/libs/graph/doc/
Dread_graphviz.rst208 - ``read_graphviz`` treats subgraphs as syntactic sugar. It does not
209 reflect subgraphs as actual entities in the BGL. Rather, they are
215 - Subgraph IDs refer to subgraphs defined earlier in the graph
216 description. Undefined subgraphs behave as empty subgraphs
232 - Support for optional recognition of subgraphs as distinct entities.
Disomorphism-impl-v2.w97 each subgraph such that the new subgraphs are still isomorphic to one
99 that can be added to extend the isomorphic subgraphs. We then
100 backtrack to previous smaller matching subgraphs, and try extending
128 of the isomorphism between subgraphs $G_1[k]$ and $G_2[S]$. At this
565 to right to extend isomorphic subgraphs, and move back to the right
1056 % LocalWords: Isomorphism Siek isomorphism adjacency subgraph subgraphs OM DFS
Disomorphism-impl-v3.w115 that the new subgraphs are still isomorphic to one another. At some
117 to extend the isomorphic subgraphs. We then backtrack to previous
118 smaller matching subgraphs, and try extending with a different vertex
380 have a matching vertex $v$ we extend the matching subgraphs by
976 % LocalWords: Isomorphism Siek isomorphism adjacency subgraph subgraphs OM DFS
Disomorphism-impl.w104 each subgraph such that the new subgraphs are still isomorphic to one
106 that can be added to extend the isomorphic subgraphs. We then
107 backtrack to previous smaller matching subgraphs, and try extending
1195 % LocalWords: Isomorphism Siek isomorphism adjacency subgraph subgraphs OM DFS
/third_party/boost/libs/graph/src/
Dread_graphviz_new.cpp526 std::map< subgraph_name, subgraph_info > subgraphs; member
532 subgraph_info& current() { return subgraphs[current_subgraph_name]; } in current()
786 if (subgraphs.find(name) == subgraphs.end()) in parse_subgraph()
788 subgraphs[name] in parse_subgraph()
790 subgraphs[name].members.clear(); // Except member list in parse_subgraph()
976 = subgraphs.find(ep.subgraph_ep); in get_recursive_members()
977 if (info_i != subgraphs.end()) in get_recursive_members()
/third_party/mindspore/mindspore/lite/src/runtime/
Druntime_pass.h29 void RuntimePass(std::vector<kernel::LiteKernel *> *subgraphs, std::vector<Tensor *> *tensors);
Druntime_pass.cc230 void RuntimePass(std::vector<kernel::LiteKernel *> *subgraphs, std::vector<Tensor *> *tensors) { in RuntimePass() argument
231 for (auto subgraph : *subgraphs) { in RuntimePass()
/third_party/mindspore/mindspore/lite/tools/converter/parser/tflite/
Dtflite_model_parser.cc60 if (tflite_model_->subgraphs.empty()) { in TfliteModelVerify()
67 for (auto &subgraph : tflite_model_->subgraphs) { in TfliteModelVerify()
165 auto subgraph_num = tflite_model_->subgraphs.size(); in ConvertTfliteGraph()
168 const auto &tflite_subgraph = tflite_model_->subgraphs.at(idx); in ConvertTfliteGraph()
451 if (tflite_subgraph == tflite_model_->subgraphs.front()) { in ConvertGraphInputs()
526 if (tflite_subgraph == tflite_model_->subgraphs.front()) { in ConvertGraphOutputs()
Dschema.fbs17 // Version 1: Add subgraphs to schema.
1073 // All the subgraphs of the model. The 0th is assumed to be the main
1075 subgraphs:[SubGraph];
/third_party/skia/third_party/externals/harfbuzz/docs/
Drepacker.md135 subtables of the two subgraphs, potentially resulting in overflows. Since each of these subgraphs a…
164 The above is an ideal situation where the subgraphs are disconnected from each other, in practice
185 subgraphs and assigning unique spaces to each one. More information on the space assignment can be
193 The goal of space assignment is to find connected subgraphs that are only reachable via 32 bit offs…
/third_party/mindspore/mindspore/_extends/graph_kernel/model/
Dgraph_split.py460 subgraphs = []
464subgraphs.append(Graph('{}_{}'.format(self.graph.name, i), area.ops, area.stitch_info, area.recomp…
466 return subgraphs, graphmodes
480 subgraphs, graphmodes = self.to_subgraphs()
481 return subgraphs, graphmodes
/third_party/mindspore/third_party/proto/tensorflow/lite/
Dschema.fbs17 // Version 1: Add subgraphs to schema.
1073 // All the subgraphs of the model. The 0th is assumed to be the main
1075 subgraphs:[SubGraph];
Dschema_2.4.1.fbs17 // Version 1: Add subgraphs to schema.
1122 // All the subgraphs of the model. The 0th is assumed to be the main
1124 subgraphs:[SubGraph];
/third_party/mindspore/
DRELEASE.md101 - Fix bug of too many subgraphs when network include`for` statement.([!23669](https://gitee.com/min…
2377 2. Optimize sub-graph mechanism by dynamically splitting the entire graph into multiple subgraphs b…
2512 - Move 'multi-subgraphs' interface to internal([!5696](https://gitee.com/mindspore/mindspore/pulls/…
/third_party/chromium/patch/
D0001-cve.patch25320 @@ -165,7 +165,7 @@ The above is an ideal situation where the subgraphs are disconnected from each o