quick fix how to call v3 with pc sampling

[ROCm/rocprofiler-compute commit: 3a40e4b58c]
Este commit está contenido en:
Fei Zheng
2025-07-31 08:17:06 -06:00
cometido por GitHub
padre deefddf2ff
commit 94ce792f39
Se han modificado 2 ficheros con 6 adiciones y 2 borrados
@@ -27,6 +27,7 @@ import glob
import logging
import os
import re
import shlex
import shutil
import time
from abc import ABC, abstractmethod
@@ -462,7 +463,9 @@ class RocProfCompute_Base:
method=self.get_args().pc_sampling_method,
interval=self.get_args().pc_sampling_interval,
workload_dir=self.get_args().path,
appcmd=self.get_args().remaining,
appcmd=shlex.split(
self.get_args().remaining
), # FIXME: the right solution is applying it when argparsing once!
rocprofiler_sdk_library_path=self.get_args().rocprofiler_sdk_library_path,
)
end_run_prof = time.time()