Merge pull request #125 from AMDResearch/separate-pmc-perf

Manually join rocprof runs
This commit is contained in:
Cole Ramos
2023-05-16 16:51:46 -05:00
committed by GitHub
3 changed files with 211 additions and 17 deletions
+8
View File
@@ -182,6 +182,14 @@ def parse(my_parser):
required=False,
help="\t\t\tDispatch ID filtering.",
)
profile_group.add_argument(
"--join-type",
metavar="",
required=False,
choices=["kernel", "grid"],
default="grid",
help="\t\t\tChoose how to join rocprof runs: (DEFAULT: grid)\n\t\t\t kernel (i.e. By unique kernel name dispatches)\n\t\t\t grid (i.e. By unique kernel name + grid size dispatches)",
)
profile_group.add_argument(
"--no-roof",
required=False,