We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbf1dab commit afe1578Copy full SHA for afe1578
site/src/comparison.rs
@@ -190,6 +190,8 @@ pub enum Metric {
190
CpuClock,
191
#[serde(rename = "cpu-clock:u")]
192
CpuClockUser,
193
+ #[serde(rename = "cycles")]
194
+ Cycles,
195
#[serde(rename = "cycles:u")]
196
CyclesUser,
197
#[serde(rename = "faults")]
@@ -246,6 +248,7 @@ impl Metric {
246
248
Metric::ContextSwitches => "context-switches",
247
249
Metric::CpuClock => "cpu-clock",
250
Metric::CpuClockUser => "cpu-clock:u",
251
+ Metric::Cycles => "cycles",
252
Metric::CyclesUser => "cycles:u",
253
Metric::Faults => "faults",
254
Metric::FaultsUser => "faults:u",
0 commit comments