Enable kokkos trace/features from rocprofv3 in rocprof-compute. (#545)

Signed-off-by: Xuan Chen <xuchen@amd.com>
This commit is contained in:
xuchen-amd
2025-01-29 13:14:57 -05:00
committed by GitHub
parent 0a52e6f19d
commit da1bd045ab
2 changed files with 25 additions and 1 deletions
+16
View File
@@ -139,6 +139,22 @@ Examples:
required=False,
help="\t\t\tSpecify the type of subpath to save workload: node_name, gpu_model.",
)
profile_group.add_argument(
"--hip-trace",
dest="hip_trace",
required=False,
default=False,
action="store_true",
help="\t\t\tHIP trace, execturion trace for the entire application at the HIP level.",
)
profile_group.add_argument(
"--kokkos-trace",
dest="kokkos_trace",
required=False,
default=False,
action="store_true",
help="\t\t\tKokkos trace, traces Kokkos API calls.",
)
profile_group.add_argument(
"-k",
"--kernel",