Skip to content

Commit

Permalink
Fix typo and CHANGELOG modification
Browse files Browse the repository at this point in the history
After meeting with the DevOps team, I've added the Unreleased keyword to new CHANGELOG section per their request

Signed-off-by: coleramos425 <colramos@amd.com>
  • Loading branch information
coleramos425 committed Aug 28, 2024
1 parent 8d47770 commit 04088fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/utils/roofline_calc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]])

Expand Down

0 comments on commit 04088fa

Please sign in to comment.