Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/gnn/
Dlocal_edge.cc24 …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()
Dedge.h41 …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()
Dlocal_edge.h40 LocalEdge(EdgeIdType id, EdgeType type, WeightType weight, std::shared_ptr<Node> src_node,
Dgraph_data_impl.cc145 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/
Dpromote_initializers_to_const_var.cc54 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/
Dmodule_clone_test.cc136 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/
Dtint_ast_clone_fuzzer.cc77 for (auto* src_node : src.ASTNodes().Objects()) { in LLVMFuzzerTestOneInput() local
78 src_nodes.emplace(src_node); in LLVMFuzzerTestOneInput()
/third_party/mesa3d/src/compiler/nir/
Dnir_from_ssa.c463 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()
Dnir_lower_io_to_temporaries.c55 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()
Dnir_opt_find_array_copies.c488 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/
Draise_reduction_precision.h35 void ReplaceNode(const AnfNodePtr &src_node, const AnfNodePtr &dst_node) const;
/third_party/mindspore/mindspore/lite/src/
Dscheduler.cc1239 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 …]
Dscheduler.h91 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/
Dblkmap64_rb.c251 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/
Dgnn_graph_test.cc52 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/
Dmanager.cc802 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()
Dmanager.h398 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/
Dir3_nir_lower_tess.c870 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/
Dbtree.h905 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/
Dbtree.h835 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/
Dxmlparse.c7419 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/
Dxmlparse.c7135 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/
Dxmlparse.c7135 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()