Home
last modified time | relevance | path

Searched refs:collation_count_ (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/grappler/graph_analyzer/
Dsubgraph.h78 int32_t collation_count() const { return collation_count_; } in collation_count()
79 void AddCollation(int32_t n = 1) { collation_count_ += n; }
80 void ResetCollation() { collation_count_ = 1; } in ResetCollation()
82 collation_count_ += other.collation_count_; in MergeCollation()
95 int32_t collation_count_ = 1; variable
Dsubgraph.cc91 return absl::StrFormat("%d: ", collation_count_) + absl::StrJoin(nodes, ", "); in Dump()