Skip to content

Commit

Permalink
rustfmt change
Browse files Browse the repository at this point in the history
  • Loading branch information
lancelui-amzn committed Aug 7, 2024
1 parent 5cc4e58 commit 82c2f8f
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions src/data/amd_milan_perf_events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,11 @@ static CYCLES: NamedTypeCtr = NamedTypeCtr {
};

lazy_static! {
pub static ref MILAN_CTRS: Vec<NamedCtr<'static>> = [
NamedCtr {
name: "stall_backend",
nrs: vec![STALL_BACKEND_1, STALL_BACKEND_2],
drs: vec![CYCLES],
scale: 1000
}
]
pub static ref MILAN_CTRS: Vec<NamedCtr<'static>> = [NamedCtr {
name: "stall_backend",
nrs: vec![STALL_BACKEND_1, STALL_BACKEND_2],
drs: vec![CYCLES],
scale: 1000
}]
.to_vec();
}

0 comments on commit 82c2f8f

Please sign in to comment.