Home
last modified time | relevance | path

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

/external/llvm/utils/
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:
/external/llvm-project/llvm/utils/
DDSAextract.py58 node_set = set() variable
70 node_set |= set([re.split('\s+',buffer,2)[1]])
103 if nodes[0][:13] in node_set and \
104 nodes[1][:13] in node_set:
108 if node in node_set:
/external/tensorflow/tensorflow/core/graph/
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()
/external/ltp/testcases/kernel/syscalls/getcpu/
Dgetcpu01.c129 unsigned int node_set; in run() local
134 node_set = get_nodeid(cpu_set); in run()
144 else if (node_id != node_set) in run()
147 node_set, node_id); in run()
/external/tensorflow/tensorflow/python/autograph/pyct/
Dcfg_test.py100 def _repr_set(self, node_set): argument
101 return frozenset(repr(n) for n in node_set)
/external/mesa3d/src/gallium/drivers/r600/sb/
Dsb_ir.h1181 typedef std::set<node*> node_set; typedef