Skip to content

Commit

Permalink
Change normal_unit default to per_kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
feizheng10 authored Feb 27, 2025
1 parent bec537e commit 6ece52f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ Full documentation for ROCm Compute Profiler is available at [https://rocm.docs.

## Unreleased

* Add Docker files to package the application and dependencies into a single portable and executable standalone binary file
### Added

* Add Docker files to package the application and dependencies into a single portable and executable standalone binary file

### Changed

* Change normal_unit default to per_kernel


## (Unreleased) ROCm Compute Profiler 3.1.0 for ROCm 6.4.0

Expand Down
4 changes: 2 additions & 2 deletions src/argparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,9 +535,9 @@ def omniarg_parser(
"--normal-unit",
dest="normal_unit",
metavar="",
default="per_wave",
default="per_kernel",
choices=["per_wave", "per_cycle", "per_second", "per_kernel"],
help="\t\tSpecify the normalization unit: (DEFAULT: per_wave)\n\t\t per_wave\n\t\t per_cycle\n\t\t per_second\n\t\t per_kernel",
help="\t\tSpecify the normalization unit: (DEFAULT: per_kernel)\n\t\t per_wave\n\t\t per_cycle\n\t\t per_second\n\t\t per_kernel",
)
analyze_advanced_group.add_argument(
"-t",
Expand Down

0 comments on commit 6ece52f

Please sign in to comment.