Add grid size option and cmd line option for --join-type

Signed-off-by: coleramos425 <colramos@amd.com>
Cette révision appartient à :
coleramos425
2023-05-11 13:00:30 -05:00
Parent 8c173446d2
révision 419e2fcac6
3 fichiers modifiés avec 24 ajouts et 4 suppressions
+8
Voir le fichier
@@ -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,