-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add AMD PMC/U support #222
Changes from all commits
411112c
b823522
5cc4e58
82c2f8f
d1ee8e0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
use crate::data::perf_stat::{NamedCtr, NamedTypeCtr, PerfType}; | ||
|
||
static STALL_BACKEND: NamedTypeCtr = NamedTypeCtr { | ||
perf_type: PerfType::RAW, | ||
name: "Backend-Stalls", | ||
config: 0x100001ea0, | ||
}; | ||
static CYCLES: NamedTypeCtr = NamedTypeCtr { | ||
perf_type: PerfType::RAW, | ||
name: "Cycles", | ||
config: 0x0076, | ||
}; | ||
|
||
lazy_static! { | ||
pub static ref GENOA_CTRS: Vec<NamedCtr<'static>> = [ | ||
NamedCtr { | ||
name: "stall_backend_pkc", | ||
nrs: vec![STALL_BACKEND], | ||
drs: vec![CYCLES], | ||
scale: 167 //~= 1000/6 | ||
}, | ||
] | ||
.to_vec(); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
use crate::data::perf_stat::{NamedCtr, NamedTypeCtr, PerfType}; | ||
|
||
static STALL_BACKEND_1: NamedTypeCtr = NamedTypeCtr { | ||
perf_type: PerfType::RAW, | ||
name: "Backend-Stalls-1", | ||
config: 0xf7ae, | ||
}; | ||
static STALL_BACKEND_2: NamedTypeCtr = NamedTypeCtr { | ||
perf_type: PerfType::RAW, | ||
name: "Backend-Stalls-2", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are there any better specifiers for these besides just -1 and -2? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure, each one counts several backend stall types. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If it's not documented what exactly each one counts, perhaps the better thing to do is add them together. That assumes there's not overlap in what each one counts. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Talked with Geoff, the sum of the two is the total backend stalls. Pushed changes |
||
config: 0x27af, | ||
}; | ||
static CYCLES: NamedTypeCtr = NamedTypeCtr { | ||
perf_type: PerfType::RAW, | ||
name: "Cycles", | ||
config: 0x0076, | ||
}; | ||
|
||
lazy_static! { | ||
pub static ref MILAN_CTRS: Vec<NamedCtr<'static>> = [NamedCtr { | ||
name: "stall_backend_pkc", | ||
nrs: vec![STALL_BACKEND_1, STALL_BACKEND_2], | ||
drs: vec![CYCLES], | ||
scale: 1000 | ||
}] | ||
.to_vec(); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
use crate::data::perf_stat::{NamedCtr, NamedTypeCtr, PerfType}; | ||
|
||
// amd events | ||
static INSTRUCTIONS: NamedTypeCtr = NamedTypeCtr { | ||
perf_type: PerfType::RAW, | ||
name: "Instructions", | ||
config: 0x00c0, | ||
}; | ||
static CYCLES: NamedTypeCtr = NamedTypeCtr { | ||
perf_type: PerfType::RAW, | ||
name: "Cycles", | ||
config: 0x0076, | ||
}; | ||
static BRANCH_MISPRED: NamedTypeCtr = NamedTypeCtr { | ||
perf_type: PerfType::RAW, | ||
name: "Branch-Mispredictions", | ||
config: 0x00c3, | ||
}; | ||
static L1_DATA_FILL: NamedTypeCtr = NamedTypeCtr { | ||
perf_type: PerfType::RAW, | ||
name: "L1-Data-Fills", | ||
config: 0xff44, | ||
}; | ||
static L1_INSTRUCTION_MISS: NamedTypeCtr = NamedTypeCtr { | ||
perf_type: PerfType::RAW, | ||
name: "L1-Instruction-Misses", | ||
config: 0x1060, | ||
}; | ||
static L2_DEMAND_MISS: NamedTypeCtr = NamedTypeCtr { | ||
perf_type: PerfType::RAW, | ||
name: "L2-Demand-Misses", | ||
config: 0x0964, | ||
}; | ||
static L1_ANY_FILLS_DRAM: NamedTypeCtr = NamedTypeCtr { | ||
// Approximately L3 Misses | ||
perf_type: PerfType::RAW, | ||
name: "L1-Any-Fills-DRAM", | ||
config: 0x0844, | ||
}; | ||
static STALL_FRONTEND: NamedTypeCtr = NamedTypeCtr { | ||
perf_type: PerfType::RAW, | ||
name: "Frontend-Stalls", | ||
config: 0x00a9, | ||
}; | ||
static INSTRUCTION_TLB_MISS: NamedTypeCtr = NamedTypeCtr { | ||
perf_type: PerfType::RAW, | ||
name: "Instruction-TLB-Misses", | ||
config: 0x0084, | ||
}; | ||
static INSTRUCTION_TLB_TW_MISS: NamedTypeCtr = NamedTypeCtr { | ||
perf_type: PerfType::RAW, | ||
name: "Instruction-TLB-TW-Misses", | ||
config: 0x0f85, | ||
}; | ||
static DATA_TLB_MISS: NamedTypeCtr = NamedTypeCtr { | ||
perf_type: PerfType::RAW, | ||
name: "Data-TLB-Misses", | ||
config: 0xff45, | ||
}; | ||
static DATA_TLB_TW_MISS: NamedTypeCtr = NamedTypeCtr { | ||
perf_type: PerfType::RAW, | ||
name: "Data-TLB-TW-Misses", | ||
config: 0xf045, | ||
}; | ||
|
||
lazy_static! { | ||
pub static ref PERF_LIST: Vec<NamedCtr<'static>> = [ | ||
NamedCtr { | ||
name: "ipc", | ||
nrs: vec![INSTRUCTIONS], | ||
drs: vec![CYCLES], | ||
scale: 1 | ||
}, | ||
NamedCtr { | ||
name: "branch-mpki", | ||
nrs: vec![BRANCH_MISPRED], | ||
drs: vec![INSTRUCTIONS], | ||
scale: 1000 | ||
}, | ||
NamedCtr { | ||
name: "data-l1-mpki", | ||
nrs: vec![L1_DATA_FILL], | ||
drs: vec![INSTRUCTIONS], | ||
scale: 1000 | ||
}, | ||
NamedCtr { | ||
name: "inst-l1-mpki", | ||
nrs: vec![L1_INSTRUCTION_MISS], | ||
drs: vec![INSTRUCTIONS], | ||
scale: 1000 | ||
}, | ||
NamedCtr { | ||
name: "l2-mpki", | ||
nrs: vec![L2_DEMAND_MISS], | ||
drs: vec![INSTRUCTIONS], | ||
scale: 1000 | ||
}, | ||
NamedCtr { | ||
name: "l3-mpki", | ||
nrs: vec![L1_ANY_FILLS_DRAM], | ||
drs: vec![INSTRUCTIONS], | ||
scale: 1000 | ||
}, | ||
NamedCtr { | ||
name: "stall_frontend_pkc", | ||
nrs: vec![STALL_FRONTEND], | ||
drs: vec![CYCLES], | ||
scale: 1000 | ||
}, | ||
NamedCtr { | ||
name: "inst-tlb-mpki", | ||
nrs: vec![INSTRUCTION_TLB_MISS], | ||
drs: vec![INSTRUCTIONS], | ||
scale: 1000 | ||
}, | ||
NamedCtr { | ||
name: "inst-tlb-tw-mpki", | ||
nrs: vec![INSTRUCTION_TLB_TW_MISS], | ||
drs: vec![INSTRUCTIONS], | ||
scale: 1000 | ||
}, | ||
NamedCtr { | ||
name: "data-tlb-mpki", | ||
nrs: vec![DATA_TLB_MISS], | ||
drs: vec![INSTRUCTIONS], | ||
scale: 1000 | ||
}, | ||
NamedCtr { | ||
name: "data-tlb-tw-pki", | ||
nrs: vec![DATA_TLB_TW_MISS], | ||
drs: vec![INSTRUCTIONS], | ||
scale: 1000 | ||
}, | ||
] | ||
.to_vec(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is really weird, why this value instead of just 1000? The ones below for milan are just 1000.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure, I think its from each cycle being able to dispatch 6 instructions? This scale was from our documentation and AMD documentation.