reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-exegesis/lib/Clustering.cpp
   95   ClusterIdForPoint_.resize(Points_.size());
  102       ClusterIdForPoint_[P] = ClusterId::error();
  131     if (!ClusterIdForPoint_[P].isUndef())
  137       ClusterIdForPoint_[P] = ClusterId::noise();
  144     ClusterIdForPoint_[P] = CurrentCluster.Id; /* Label initial point */
  155       if (ClusterIdForPoint_[Q].isNoise()) {
  157         ClusterIdForPoint_[Q] = CurrentCluster.Id;
  161       if (!ClusterIdForPoint_[Q].isUndef()) {
  165       ClusterIdForPoint_[Q] = CurrentCluster.Id;
  179     if (ClusterIdForPoint_[P].isNoise()) {
  216       ClusterIdForPoint_[P] = CurrentCluster.Id;
  254   assert(ClusterIdForPoint_.size() == Points_.size() && "size mismatch");
  255   for (const auto &Point : zip(Points_, ClusterIdForPoint_)) {
  298                       ClusterIdForPoint_[P] = UnstableCluster.Id;
tools/llvm-exegesis/lib/Clustering.h
   91     return ClusterIdForPoint_[P];