HomeSort by: relevance | last modified time | path
    Searched defs:ClusterId (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
Analysis.h 53 using ClusterId = InstructionBenchmarkClustering::ClusterId;
58 const InstructionBenchmarkClustering::ClusterId &id() const {
59 return ClusterId;
77 InstructionBenchmarkClustering::ClusterId ClusterId;
85 void printClusterRawHtml(const InstructionBenchmarkClustering::ClusterId &Id,
Analysis.cpp 74 const InstructionBenchmarkClustering::ClusterId &CID) {
303 OS << "<tr><th>ClusterId</th><th>Opcode/Config</th>";
343 if (ClusterId.isUndef())
344 ClusterId = Clustering.getClusterIdForPoint(PointId);
345 assert(ClusterId == Clustering.getClusterIdForPoint(PointId));
435 const InstructionBenchmarkClustering::ClusterId &Id, StringRef display_name,
446 OS << "<tr><th>ClusterId</th><th>Opcode/Config</th>";
556 const auto &ClusterId = Clustering_.getClusterIdForPoint(PointId);
557 if (!ClusterId.isValid())
559 if (ClusterId.isUnstable() ^ AnalysisDisplayUnstableOpcodes_
    [all...]
Clustering.h 37 class ClusterId {
39 static ClusterId noise() { return ClusterId(kNoise); }
40 static ClusterId error() { return ClusterId(kError); }
41 static ClusterId makeValid(size_t Id, bool IsUnstable = false) {
42 return ClusterId(Id, IsUnstable);
44 static ClusterId makeValidUnstable(size_t Id) {
48 ClusterId() : Id_(kUndef), IsUnstable_(false) {}
51 bool operator==(const ClusterId &O) const { return Id_ == O.Id_;
    [all...]

Completed in 15 milliseconds