From 04088fa2a4e1c28718e8ba08cdb4812a54dbacde Mon Sep 17 00:00:00 2001 From: coleramos425 Date: Wed, 28 Aug 2024 16:41:05 +0000 Subject: [PATCH] Fix typo and CHANGELOG modification After meeting with the DevOps team, I've added the Unreleased keyword to new CHANGELOG section per their request Signed-off-by: coleramos425 --- CHANGELOG.md | 2 +- src/utils/roofline_calc.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 310397fe1..455c8965f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Full documentation for Omniperf is available at [https://rocm.docs.amd.com/projects/omniperf/en/latest/](https://rocm.docs.amd.com/projects/omniperf/en/latest/). -## Omniperf 2.0.1 for ROCm 6.2.0 +## (Unreleased) Omniperf 2.0.1 for ROCm 6.2.0 ### Changes diff --git a/src/utils/roofline_calc.py b/src/utils/roofline_calc.py index 012884540..a07c8482a 100644 --- a/src/utils/roofline_calc.py +++ b/src/utils/roofline_calc.py @@ -113,7 +113,7 @@ def calc_ceilings(roofline_parameters, dtype, benchmark_data): peakOps = float(benchmark_data[dtype + "Flops"][roofline_parameters["device_id"]]) for i in range(0, len(cacheHierarchy)): # Plot BW line - console_debug("roofline" "Current cache level is %s" % cacheHierarchy[i]) + console_debug("roofline", "Current cache level is %s" % cacheHierarchy[i]) curr_bw = cacheHierarchy[i] + "Bw" peakBw = float(benchmark_data[curr_bw][roofline_parameters["device_id"]])