Home
last modified time | relevance | path

Searched refs:NodeSubset (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/lite/
Dgraph_info_test.cc79 std::vector<NodeSubset>* subgraphs) { in PartitionGraph()
89 const std::vector<NodeSubset>& generated_subgraphs, in CheckPartitionSubgraphs()
90 const std::vector<NodeSubset>& expected_subgraphs) { in CheckPartitionSubgraphs()
107 std::vector<NodeSubset> generated_subgraphs; in TEST()
121 std::vector<NodeSubset> generated_subgraphs; in TEST()
135 std::vector<NodeSubset> generated_subgraphs; in TEST()
138 NodeSubset expected_subgraph; in TEST()
139 expected_subgraph.type = NodeSubset::kTfNonPartition; in TEST()
154 std::vector<NodeSubset> generated_subgraphs; in TEST()
158 NodeSubset expected_subgraph; in TEST()
[all …]
Dgraph_info.cc56 std::vector<NodeSubset>* node_subsets) in PartitionGraphIntoIndependentNodeSubsetsImpl()
59 node_type_(info->num_nodes(), NodeSubset::kTfNonPartition) { in PartitionGraphIntoIndependentNodeSubsetsImpl()
62 node_type_[node_index] = NodeSubset::kTfPartition; in PartitionGraphIntoIndependentNodeSubsetsImpl()
102 NodeSubset& output_subset = (*node_subsets_)[output_epoch]; in Partition()
108 for (NodeSubset& node_subset : *node_subsets_) { in Partition()
137 NodeSubset& current_subset = node_subsets_->back(); in UpdateNode()
153 if (current_subset.type == NodeSubset::kTfUnexplored) { in UpdateNode()
182 NodeSubset& input_subset = (*node_subsets_)[input_epoch]; in UpdateNode()
195 node_subsets_->emplace_back(NodeSubset()); in BuildNodeSubset()
211 std::vector<NodeSubset>* node_subsets_;
[all …]
Dgraph_info.h55 struct NodeSubset { struct
79 std::vector<NodeSubset>* node_subsets); argument
/external/swiftshader/third_party/LLVM/unittests/ADT/
DSCCIteratorTest.cpp33 class NodeSubset { class in llvm::Graph
36 NodeSubset(BitVector e) : Elements(e) {} in NodeSubset() function in llvm::Graph::NodeSubset
39 NodeSubset() : Elements(0) { in NodeSubset() function in llvm::Graph::NodeSubset
43 NodeSubset(const NodeSubset &other) : Elements(other.Elements) {} in NodeSubset() function in llvm::Graph::NodeSubset
46 bool operator==(const NodeSubset &other) const { in operator ==()
49 bool operator!=(const NodeSubset &other) const { in operator !=()
77 bool isSubsetOf(const NodeSubset &other) const { in isSubsetOf()
82 NodeSubset Complement() const { in Complement()
87 NodeSubset Join(const NodeSubset &other) const { in Join()
92 NodeSubset Meet(const NodeSubset &other) const { in Meet()
[all …]
/external/llvm/unittests/ADT/
DSCCIteratorTest.cpp33 class NodeSubset { class in llvm::Graph
36 NodeSubset(BitVector e) : Elements(e) {} in NodeSubset() function in llvm::Graph::NodeSubset
39 NodeSubset() : Elements(0) { in NodeSubset() function in llvm::Graph::NodeSubset
44 bool operator==(const NodeSubset &other) const { in operator ==()
47 bool operator!=(const NodeSubset &other) const { in operator !=()
75 bool isSubsetOf(const NodeSubset &other) const { in isSubsetOf()
80 NodeSubset Complement() const { in Complement()
85 NodeSubset Join(const NodeSubset &other) const { in Join()
90 NodeSubset Meet(const NodeSubset &other) const { in Meet()
96 typedef std::pair<unsigned, NodeSubset> NodeType;
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DTestGraph.h38 class NodeSubset {
41 NodeSubset(BitVector e) : Elements(e) {} in NodeSubset() function
44 NodeSubset() : Elements(0) { in NodeSubset() function
49 bool operator==(const NodeSubset &other) const {
52 bool operator!=(const NodeSubset &other) const {
80 bool isSubsetOf(const NodeSubset &other) const { in isSubsetOf()
85 NodeSubset Complement() const { in Complement()
90 NodeSubset Join(const NodeSubset &other) const { in Join()
95 NodeSubset Meet(const NodeSubset &other) const { in Meet()
101 typedef std::pair<unsigned, NodeSubset> NodeType;
[all …]
DSCCIteratorTest.cpp50 GT::NodeSubset NodesInSomeSCC; in TEST()
56 GT::NodeSubset NodesInThisSCC; in TEST()
77 GT::NodeSubset NodesReachableFromSCC = G.NodesReachableFrom(i); in TEST()
78 GT::NodeSubset ReachableButNotInSCC = in TEST()
107 GT::NodeSubset NodesReachableFromSCC = G.NodesReachableFrom(i); in TEST()
/external/tensorflow/tensorflow/lite/core/
Dsubgraph.cc226 const NodeSubset& node_subset) { in CreateDelegateParams()
279 std::vector<NodeSubset> node_subsets; in ReplaceNodeSubsetsWithDelegateKernels()
290 case NodeSubset::kTfNonPartition: in ReplaceNodeSubsetsWithDelegateKernels()
296 case NodeSubset::kTfPartition: { in ReplaceNodeSubsetsWithDelegateKernels()
317 case NodeSubset::kTfUnexplored: in ReplaceNodeSubsetsWithDelegateKernels()