Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/tools/llvm-exegesis/lib/
H A DClustering.cpp99 ClusterIdForPoint_.resize(Points_.size()); in validateAndSetup()
106 ClusterIdForPoint_[P] = ClusterId::error(); in validateAndSetup()
134 if (!ClusterIdForPoint_[P].isUndef()) in clusterizeDbScan()
140 ClusterIdForPoint_[P] = ClusterId::noise(); in clusterizeDbScan()
158 if (ClusterIdForPoint_[Q].isNoise()) { in clusterizeDbScan()
160 ClusterIdForPoint_[Q] = CurrentCluster.Id; in clusterizeDbScan()
164 if (!ClusterIdForPoint_[Q].isUndef()) { in clusterizeDbScan()
168 ClusterIdForPoint_[Q] = CurrentCluster.Id; in clusterizeDbScan()
182 if (ClusterIdForPoint_[P].isNoise()) { in clusterizeDbScan()
230 ClusterIdForPoint_[P] = CurrentCluster.Id; in clusterizeNaive()
[all …]
H A DClustering.h92 return ClusterIdForPoint_[P]; in getClusterIdForPoint()
145 std::vector<ClusterId> ClusterIdForPoint_; variable