We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efcd3ab commit 48d5e6cCopy full SHA for 48d5e6c
1 file changed
projects/rocprofiler-compute/src/rocprof_compute_base.py
@@ -148,6 +148,7 @@ def sanitize(self) -> None:
148
if self.__args.mode is None and not (
149
getattr(self.__args, "list_metrics", False)
150
or getattr(self.__args, "list_blocks", False)
151
+ or getattr(self.__args, "specs", False)
152
):
153
self.__parser.print_help(sys.stderr)
154
console_error(
@@ -213,6 +214,7 @@ def sanitize(self) -> None:
213
214
and not getattr(self.__args, "list_available_metrics", False)
215
and not getattr(self.__args, "list_sets", False)
216
and not getattr(self.__args, "list_blocks", False)
217
+ and not getattr(self.__args, "specs", False)
218
219
if self.__args.name is None and self.__args.output_directory == str(
220
Path.cwd() / "workloads"
0 commit comments