Home
last modified time | relevance | path

Searched refs:node_set (Results 1 – 9 of 9) sorted by relevance

/aosp_15_r20/external/tensorflow/tensorflow/core/graph/
H A Doptimizer_cse_test.cc342 std::set<string> node_set(nodes.begin(), nodes.end()); in TEST_F() local
344 EXPECT_EQ(node_set.count("n/_0(Const)") + node_set.count("n/_7(Const)"), 1); in TEST_F()
345 EXPECT_EQ(node_set.count("n/_1(Const)") + node_set.count("n/_6(Const)"), 1); in TEST_F()
346 EXPECT_EQ(node_set.count("n/_2(Const)") + node_set.count("n/_5(Const)"), 1); in TEST_F()
347 EXPECT_EQ(node_set.count("n/_3(Const)") + node_set.count("n/_4(Const)"), 1); in TEST_F()
/aosp_15_r20/external/llvm/utils/
H A DDSAextract.py56 node_set = set() variable
68 node_set |= set([re.split('\s+',buffer,2)[1]])
101 if nodes[0][:13] in node_set and \
102 nodes[1][:13] in node_set:
106 if node in node_set:
/aosp_15_r20/external/ltp/testcases/kernel/syscalls/getcpu/
H A Dgetcpu01.c115 unsigned int node_set; in run() local
118 node_set = get_nodeid(cpu_set); in run()
126 else if (node_id != node_set) in run()
129 node_set, node_id); in run()
/aosp_15_r20/system/media/camera/docs/
H A Dmetadata_helpers.py895 def javadoc_crossref_see_filter(node_set): argument
896 node_set = (x for x in node_set if x.applied_visibility in \
900 for node in node_set:
996 def ndkdoc_crossref_see_filter(node_set): argument
997 node_set = (x for x in node_set if x.applied_ndk_visible == 'true')
1000 for node in node_set:
1092 def hidldoc_crossref_see_filter(node_set): argument
1094 for node in node_set:
H A Dmetadata_helpers_test.py140 def summary_test(node_set): argument
141 text = "*" * len(node_set) + "\n"
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/support/detail/lexer/
Dgenerator.hpp128 typedef std::set<const detail::node *> node_set; typedef in boost::lexer::basic_generator
129 typedef detail::ptr_vector<node_set> node_set_vector;
381 boost::movelib::unique_ptr<node_set> set_ptr_ (new node_set); in closure()
410 seen_sets_->push_back (static_cast<node_set *>(0)); in closure()
436 node_set *set_ptr_, node_vector *vector_ptr_, std::size_t &hash_) in closure_ex()
/aosp_15_r20/external/pytorch/torch/onnx/_internal/fx/passes/
H A Dmodularization.py556 node_set: set[torch.fx.Node] = set(nodes)
559 if isinstance(arg, torch.fx.Node) and arg not in node_set:
585 node_set: set[torch.fx.Node] = set(nodes)
588 if any(user not in node_set for user in node.users):
/aosp_15_r20/external/pytorch/torch/csrc/jit/ir/
H A Dir.cpp434 using node_set = std::set<const Node*>; typedef
562 node_set all_nodes_set; in lint()
563 node_set sum_set; in lint()
628 node_set nodes_set(ALL_OF(b->nodes())); in lint()
629 node_set inputs_set{b->input_}; in lint()
630 node_set output_set{b->output_}; in lint()
642 node_set all_nodes_set( in lint()
/aosp_15_r20/external/tensorflow/tensorflow/python/autograph/pyct/
H A Dcfg_test.py96 def _repr_set(self, node_set): argument
97 return frozenset(repr(n) for n in node_set)