/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/gnn/ |
D | local_edge.cc | 24 …calEdge::LocalEdge(EdgeIdType id, EdgeType type, WeightType weight, std::shared_ptr<Node> src_node, in LocalEdge() argument 26 : Edge(id, type, weight, src_node, dst_node) {} in LocalEdge()
|
D | edge.h | 41 …Edge(EdgeIdType id, EdgeType type, WeightType weight, std::shared_ptr<Node> src_node, std::shared_… in Edge() argument 42 : id_(id), type_(type), weight_(weight), src_node_(src_node), dst_node_(dst_node) {} in Edge()
|
D | local_edge.h | 40 LocalEdge(EdgeIdType id, EdgeType type, WeightType weight, std::shared_ptr<Node> src_node,
|
D | graph_data_impl.cc | 145 std::shared_ptr<Node> src_node; in GetEdgesFromNodes() local 146 RETURN_IF_NOT_OK(GetNodeByNodeId(node_id.first, &src_node)); in GetEdgesFromNodes() 149 src_node->GetEdgeByAdjNodeId(node_id.second, &edge_id); in GetEdgesFromNodes() 776 std::shared_ptr<Node> src_node; in GetEdgeProbability() local 777 RETURN_IF_NOT_OK(graph_->GetNodeByNodeId(src, &src_node)); in GetEdgeProbability() 779 RETURN_IF_NOT_OK(src_node->GetAllNeighbors(meta_path_[meta_path_index], &src_neighbors, true)); in GetEdgeProbability()
|
/third_party/skia/third_party/externals/tint/src/transform/ |
D | promote_initializers_to_const_var.cc | 54 for (auto* src_node : ctx.src->ASTNodes().Objects()) { in Run() local 55 if (auto* src_init = src_node->As<ast::CallExpression>()) { in Run()
|
/third_party/skia/third_party/externals/tint/src/ast/ |
D | module_clone_test.cc | 136 for (auto* src_node : src.ASTNodes().Objects()) { in TEST() local 137 src_nodes.emplace(src_node); in TEST()
|
/third_party/skia/third_party/externals/tint/fuzzers/ |
D | tint_ast_clone_fuzzer.cc | 77 for (auto* src_node : src.ASTNodes().Objects()) { in LLVMFuzzerTestOneInput() local 78 src_nodes.emplace(src_node); in LLVMFuzzerTestOneInput()
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_from_ssa.c | 463 merge_node *src_node = get_merge_node(src->src.ssa, state); in coalesce_phi_nodes_block() local 464 if (src_node->set != dest_node->set) in coalesce_phi_nodes_block() 465 merge_merge_sets(dest_node->set, src_node->set); in coalesce_phi_nodes_block() 490 merge_node *src_node = get_merge_node(entry->src.ssa, state); in aggressive_coalesce_parallel_copy() local 493 if (src_node->set == dest_node->set) in aggressive_coalesce_parallel_copy() 499 if (dest_node->set->divergent != src_node->set->divergent) in aggressive_coalesce_parallel_copy() 502 if (!merge_sets_interfere(src_node->set, dest_node->set)) in aggressive_coalesce_parallel_copy() 503 merge_merge_sets(src_node->set, dest_node->set); in aggressive_coalesce_parallel_copy()
|
D | nir_lower_io_to_temporaries.c | 55 foreach_two_lists(dest_node, dest_vars, src_node, src_vars) { in emit_copies() 57 nir_variable *src = exec_node_data(nir_variable, src_node, node); in emit_copies()
|
D | nir_opt_find_array_copies.c | 488 struct match_node *src_node = in handle_write() local 493 if (src_node->last_overwritten <= dst_node->first_src_read) { in handle_write()
|
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/graph_kernel/ |
D | raise_reduction_precision.h | 35 void ReplaceNode(const AnfNodePtr &src_node, const AnfNodePtr &dst_node) const;
|
/third_party/mindspore/mindspore/lite/src/ |
D | scheduler.cc | 1239 kernel::LiteKernel *Scheduler::SchedulePartialToKernel(const lite::LiteGraph::Node *src_node) { in SchedulePartialToKernel() argument 1241 MS_ASSERT(src_node != nullptr); in SchedulePartialToKernel() 1242 auto *primitive = src_node->primitive_; in SchedulePartialToKernel() 1247 auto subgraph_index = GetPartialGraphIndex(src_node->primitive_, schema_version_); in SchedulePartialToKernel() 1358 kernel::LiteKernel *Scheduler::ScheduleNodeToKernel(const lite::LiteGraph::Node *src_node, TypeId p… in ScheduleNodeToKernel() argument 1361 MS_ASSERT(src_node != nullptr); in ScheduleNodeToKernel() 1362 FindNodeInoutTensors(*src_node, &inputs, &outputs); in ScheduleNodeToKernel() 1364 ResetByExecutionPlan(src_node->name_, &prefer_data_type); in ScheduleNodeToKernel() 1366 auto *kernel = this->FindBackendKernel(inputs, outputs, src_node, prefer_data_type); in ScheduleNodeToKernel() 1367 op_parameters_[src_node->output_indices_.at(0)] = nullptr; in ScheduleNodeToKernel() [all …]
|
D | scheduler.h | 91 kernel::LiteKernel *SchedulePartialToKernel(const lite::LiteGraph::Node *src_node); 95 …kernel::LiteKernel *ScheduleNodeToKernel(const LiteGraph::Node *src_node, TypeId prefer_data_type …
|
/third_party/e2fsprogs/lib/ext2fs/ |
D | blkmap64_rb.c | 251 struct rb_node *dest_node, *src_node, *dest_last, **n; in rb_copy_bmap() local 263 src_node = ext2fs_rb_first(&src_bp->root); in rb_copy_bmap() 264 while (src_node) { in rb_copy_bmap() 265 src_ext = node_to_extent(src_node); in rb_copy_bmap() 285 src_node = ext2fs_rb_next(src_node); in rb_copy_bmap()
|
/third_party/mindspore/tests/ut/cpp/dataset/ |
D | gnn_graph_test.cc | 52 NodeIdType src_node = 0; in ParsingNeighbors() local 56 src_node = *node_itr; in ParsingNeighbors() 59 auto src_node_itr = node_neighbors.find(src_node); in ParsingNeighbors() 61 node_neighbors[src_node] = {{*node_itr, 1}}; in ParsingNeighbors()
|
/third_party/mindspore/mindspore/core/ir/ |
D | manager.cc | 802 void FuncGraphTransaction::SetEdge(const AnfNodePtr &src_node, int k, const AnfNodePtr &v) { in SetEdge() argument 806 MS_EXCEPTION_IF_NULL(src_node); in SetEdge() 807 auto cnode = src_node->cast<CNodePtr>(); in SetEdge() 814 void FuncGraphTransaction::AddEdge(const AnfNodePtr &src_node, const AnfNodePtr &v) { in AddEdge() argument 815 MS_EXCEPTION_IF_NULL(src_node); in AddEdge() 816 auto cnode = src_node->cast<CNodePtr>(); in AddEdge()
|
D | manager.h | 398 void SetEdge(const AnfNodePtr &src_node, int k, const AnfNodePtr &v); 400 void AddEdge(const AnfNodePtr &src_node, const AnfNodePtr &v);
|
/third_party/mesa3d/src/freedreno/ir3/ |
D | ir3_nir_lower_tess.c | 870 foreach_two_lists (dest_node, &state->emit_outputs, src_node, in lower_gs_block() 873 nir_variable *src = exec_node_data(nir_variable, src_node, node); in lower_gs_block() 989 foreach_two_lists (dest_node, &state.new_outputs, src_node, in ir3_nir_lower_gs() 992 nir_variable *src = exec_node_data(nir_variable, src_node, node); in ir3_nir_lower_gs()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | btree.h | 905 btree_node *src_node, allocator_type *alloc) { 906 transfer(slot(dest_i), src_node->slot(src_i), alloc); 912 const size_type src_i, btree_node *src_node, 914 for (slot_type *src = src_node->slot(src_i), *end = src + n, 924 const size_type src_i, btree_node *src_node, 926 for (slot_type *src = src_node->slot(src_i + n - 1), *end = src - n,
|
/third_party/abseil-cpp/absl/container/internal/ |
D | btree.h | 835 btree_node *src_node, allocator_type *alloc) { 836 transfer(slot(dest_i), src_node->slot(src_i), alloc); 842 const size_type src_i, btree_node *src_node, 844 for (slot_type *src = src_node->slot(src_i), *end = src + n, 854 const size_type src_i, btree_node *src_node, 856 for (slot_type *src = src_node->slot(src_i + n - 1), *end = src - n,
|
/third_party/expat/lib/ |
D | xmlparse.c | 7419 const int src_node = (int)(stackTop++)->numchildren; in build_model() local 7422 dest->type = dtd->scaffold[src_node].type; in build_model() 7423 dest->quant = dtd->scaffold[src_node].quant; in build_model() 7427 src = dtd->scaffold[src_node].name; in build_model() 7440 dest->numchildren = dtd->scaffold[src_node].childcnt; in build_model() 7447 for (i = 0, cn = dtd->scaffold[src_node].firstchild; in build_model()
|
/third_party/skia/third_party/externals/expat/expat/lib/ |
D | xmlparse.c | 7135 build_node(XML_Parser parser, int src_node, XML_Content *dest, in build_node() argument 7138 dest->type = dtd->scaffold[src_node].type; in build_node() 7139 dest->quant = dtd->scaffold[src_node].quant; in build_node() 7143 src = dtd->scaffold[src_node].name; in build_node() 7155 dest->numchildren = dtd->scaffold[src_node].childcnt; in build_node() 7158 for (i = 0, cn = dtd->scaffold[src_node].firstchild; i < dest->numchildren; in build_node()
|
/third_party/python/Modules/expat/ |
D | xmlparse.c | 7135 build_node(XML_Parser parser, int src_node, XML_Content *dest, in build_node() argument 7138 dest->type = dtd->scaffold[src_node].type; in build_node() 7139 dest->quant = dtd->scaffold[src_node].quant; in build_node() 7143 src = dtd->scaffold[src_node].name; in build_node() 7155 dest->numchildren = dtd->scaffold[src_node].childcnt; in build_node() 7158 for (i = 0, cn = dtd->scaffold[src_node].firstchild; i < dest->numchildren; in build_node()
|