/third_party/boost/libs/graph/example/ |
D | graph_property.cpp | 22 get_property(g, graph_name) = "graph"; in main() 24 std::cout << "name: " << get_property(g, graph_name) << std::endl; in main() 29 get_property(sg, graph_name) = "subgraph"; in main() 31 std::cout << "name: " << get_property(sg, graph_name) << std::endl; in main()
|
D | read_graphviz.cpp | 51 get_property(graph, graph_name)); in main()
|
D | graph-thingie.cpp | 69 ref_property_map< graph_t*, string > gname(get_property(graph, graph_name)); in main()
|
D | loops_dfs.cpp | 128 get_property(g, graph_name) = "loops"; in main()
|
/third_party/boost/libs/graph/test/ |
D | matching_test.cpp | 121 void matching_test(std::size_t num_v, const std::string& graph_name) in matching_test() argument 162 << "the complete graph using " << graph_name << std::endl; in matching_test() 177 << "the complete graph using " << graph_name << std::endl; in matching_test() 193 << "the complete graph using " << graph_name << std::endl; in matching_test() 288 << "Problem on Gabow's Graph with " << graph_name << ":" in matching_test() 299 << "Problem on Gabow's Graph with " << graph_name << ":" in matching_test() 339 std::cout << "Matching in random graph not maximum for " << graph_name in matching_test() 371 std::cout << graph_name << " passed all tests for n = " << num_v << '.' in matching_test()
|
D | graphviz_test.cpp | 79 get_property(graph, graph_name)); 135 std::string parsed_name = get_property(graph, graph_name); 319 std::string graph_name("foo \"escaped\""); local 323 (test_graph< graph_t >(gs, 3, masses, weight_map_t(), "", graph_name))); 332 std::string graph_name("foo"); local 336 (test_graph< graph_t >(gs, 3, masses, weight_map_t(), "", graph_name))); 344 std::string graph_name local 347 gs_t gs("digraph { name=" + graph_name + " a c e [mass = 6.66] }"); 351 (test_graph< graph_t >(gs, 3, masses, weight_map_t(), "", graph_name)));
|
D | graphml_test.cpp | 51 get_property(g, graph_name)); in main() 82 get_property(g2, graph_name)); in main()
|
D | csr_graph_test.cpp | 384 BOOST_TEST(get_property(g, graph_name) == ""); in test_graph_properties() 385 set_property(g, graph_name, "beep"); in test_graph_properties() 386 BOOST_TEST(get_property(g, graph_name) == "beep"); in test_graph_properties()
|
/third_party/mindspore/tests/st/graph_kernel/model/ |
D | graph_kernel_split.py | 89 graph_name = "%s_%d" % (graph_in.name, subgraph_idx) 90 g = graph_in.extract_subgraph(graph_name, tensor_names) 96 graph_name = "%s_%d" % (graph_in.name, subgraph_idx) 97 g = graph_in.extract_subgraph(graph_name, all_tensors, True)
|
/third_party/mindspore/mindspore/lite/tools/common/ |
D | func_graph_subgraph.cc | 407 std::string graph_name = this->name_; in CreatePartialInBelongAnf() local 408 if (graph_name.empty()) { in CreatePartialInBelongAnf() 410 graph_name = "subgraph"; in CreatePartialInBelongAnf() 412 graph_name = (*(this->nodes_.begin()))->fullname_with_scope() + "/subgraph"; in CreatePartialInBelongAnf() 420 func_graph->set_attr("graph_name", MakeValue(graph_name)); in CreatePartialInBelongAnf() 451 partial_cnode->set_fullname_with_scope(graph_name + "/partial"); in CreatePartialInBelongAnf() 460 call_cnode->set_fullname_with_scope(graph_name + "/call"); in CreatePartialInBelongAnf() 483 std::string graph_name = sub_graph->get_attr("graph_name")->ToString(); in CreateParameterForPartialSubGraph() local 506 new_parameter->set_name(graph_name + "_input_" + input->fullname_with_scope()); in CreateParameterForPartialSubGraph() 519 new_parameter->set_name(graph_name + "_input_" + input->fullname_with_scope()); in CreateParameterForPartialSubGraph() [all …]
|
D | func_graph_subgraph.h | 36 explicit SubGraph(FuncGraphPtr belong_anf, std::string graph_name = "") 37 : belong_anf_(std::move(belong_anf)), name_(std::move(graph_name)) {} in belong_anf_()
|
/third_party/mindspore/mindspore/ccsrc/transform/graph_ir/ |
D | graph_builder.cc | 43 std::string graph_name = phase; in BuildDatasetGraph() local 49 ret = DfGraphManager::GetInstance().AddGraph(graph_name, dataset_graph); in BuildDatasetGraph()
|
/third_party/mindspore/mindspore/common/ |
D | api.py | 134 def build_data_init_graph(self, graph_name): argument 139 self._graph_executor.build_data_graph(para_dict, graph_name) 141 self._graph_executor.build_data_graph(self.obj.parameters_dict(), graph_name, 143 init_phase = "init_subgraph" + graph_name[graph_name.find("."):]
|
/third_party/mindspore/mindspore/lite/tools/converter/parser/tf/ |
D | functionalize_cond.h | 48 STATUS IdentifySubgraphInput(const FuncGraphPtr &graph, std::string graph_name);
|
D | functionalize_cond.cc | 112 STATUS FunctionalizeCond::IdentifySubgraphInput(const FuncGraphPtr &graph, std::string graph_name) { in IdentifySubgraphInput() argument 130 parameter->set_name(graph_name + "_input_" + std::to_string(pos) + "_parameter"); in IdentifySubgraphInput()
|
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/graph_kernel/ |
D | decrease_transfer_precision.cc | 71 auto graph_name = GetValue<std::string>(sub_graph->get_attr(FUNC_GRAPH_ATTR_GRAPH_KERNEL)); in IsCandidateNode() local 72 if (graph_name.find("atomic") == std::string::npos) { in IsCandidateNode()
|
D | decrease_compute_precision.cc | 223 auto graph_name = GetValue<std::string>(func_graph->get_attr(FUNC_GRAPH_ATTR_GRAPH_KERNEL)); in IsCastUnAware() local 224 if (graph_name.find("atomic") != std::string::npos) { in IsCastUnAware()
|
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/third_party/perf/ |
D | angle-mods.patch | 147 - // <*>RESULT <graph_name>: <trace_name>= <value> <units> 148 - // <*>RESULT <graph_name>: <trace_name>= {<mean>, <std deviation>} <units> 149 - // <*>RESULT <graph_name>: <trace_name>= [<value>,value,value,...,] <units> 446 // <*>RESULT <graph_name>: <trace_name>= <value> <units> 447 // <*>RESULT <graph_name>: <trace_name>= {<mean>, <std deviation>} <units> 448 // <*>RESULT <graph_name>: <trace_name>= [<value>,value,value,...,] <units>
|
/third_party/mindspore/mindspore/_extends/graph_kernel/model/ |
D | model.py | 408 def extract_subgraph(self, graph_name, tensor_names, difference=False): argument 410 graph = Graph(graph_name, [])
|
/third_party/boost/libs/graph/doc/ |
D | read_graphviz.rst | 170 gname(get_property(graph,graph_name));
|
/third_party/boost/boost/graph/ |
D | graphviz.hpp | 348 const NameType& g_name = get_property(g, graph_name); in write_graphviz_subgraph()
|