Support MI 350 profiling (#632)
* Add MI 350 hardware information
* Refactor MI GPU YAML file and corresponding interface
* Add SoC file for gfx950 architecture
* Add analysis report configs for MI 350 containing existing metrics
* Add placeholder None valued metrics for previous architectures to make
baseline comparison work
* Enable testing on MI 350
* Analysis config metric changes
- SPI changes
- Update metric formula for default SPI pipe counter
- Use efficiently collected pipe wise SPI counters
- Add SPI Wave Occupancy
- Add Scheduler-Pipe Wave Utilization
- Update formula for VGPR Writes
- Add Scheduler-Pipe FIFO Full Rate
- CPC changes
- Add CPC SYNC FIFO Full Rate
- Add CPC CANE Stall Rate
- Add CPC ADC Utilization
- SQ changes
- Add VALU co-issue efficiency
- Add F6F4 datatype metrics
- Update formula for total FLOPs by adding F6F4 counters
- Add LDS STORE / LOAD / ATOMIC metrics
- Add LDS STORE / LOAD / ATOMIC bandwidth
- Add LDS FIFO and TA ADDR / CMD / DATA FIFO full rates
* Collect TCP_TCP_LATENCY_sum only for gfx950 (MI 350)
* Do not inject SQ_ACCUM_PREV_HIRES unnecesarily
* Do not hardcode memory and shader clock speeds
* Write num_hbm_channels to sysinfo.csv instead of hbm_bw while profiling
* Move generate sysinfo.csv to pre processing step of profiling
* Add warnings to use --specs-correction for missing sysinfo.csv values during analysis phase
* Update CHANGELOG
* Analysis phase warning to use --specs-correction when needed
[ROCm/rocprofiler-compute commit: f9aa7be97c]
This commit is contained in:
@@ -15,6 +15,7 @@ indirs = [
|
||||
"tests/workloads/vcopy/MI200",
|
||||
"tests/workloads/vcopy/MI300A_A1",
|
||||
"tests/workloads/vcopy/MI300X_A1",
|
||||
"tests/workloads/vcopy/MI350",
|
||||
]
|
||||
|
||||
|
||||
@@ -255,9 +256,13 @@ def test_dispatch_5(binary_handler_analyze_rocprof_compute):
|
||||
@pytest.mark.misc
|
||||
def test_gpu_ids(binary_handler_analyze_rocprof_compute):
|
||||
for dir in indirs:
|
||||
if dir.endswith("MI350"):
|
||||
gpu_id = "0"
|
||||
else:
|
||||
gpu_id = "2"
|
||||
workload_dir = test_utils.setup_workload_dir(dir)
|
||||
code = binary_handler_analyze_rocprof_compute(
|
||||
["analyze", "--path", workload_dir, "--gpu-id", "2"]
|
||||
["analyze", "--path", workload_dir, "--gpu-id", gpu_id]
|
||||
)
|
||||
assert code == 0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user