From 97969346c748e8830f050a10d437293da7aafe3b Mon Sep 17 00:00:00 2001 From: Giovanni LB Date: Mon, 22 Jan 2024 13:20:43 -0300 Subject: [PATCH] Fixing V1 not allowed Navi cards for traces Change-Id: I6ffcdd645d2eb2ac37af5408148960753fd86cc8 [ROCm/rocprofiler commit: d2cc6ba458b26139ab19852eb5b79893181a72c8] --- projects/rocprofiler/bin/rpl_run.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/projects/rocprofiler/bin/rpl_run.sh b/projects/rocprofiler/bin/rpl_run.sh index 6b236ed00f..1258323c12 100755 --- a/projects/rocprofiler/bin/rpl_run.sh +++ b/projects/rocprofiler/bin/rpl_run.sh @@ -37,7 +37,7 @@ ROCM_LIB_PATH=$ROOT_DIR/lib PROF_BIN_DIR=$ROOT_DIR/libexec/rocprofiler # check if rocprof is supportd on this gpu arch -V1_SUPPORTED_GPU_ARCHS=("gfx80x","gfx90x","gfx10xx","gfx94x") +V1_SUPPORTED_GPU_ARCHS=("gfx80x","gfx90x","gfx94x") CURRENT_AGENTS_LIST=$($BIN_DIR/rocm_agent_enumerator) IS_SUPPORTED="false" @@ -256,9 +256,12 @@ run() { done if [[ $IS_SUPPORTED == "false" ]]; then - echo "rocprof(v1) is not supported on this device." - echo "Please refer project's README for a list of supported architecures or use rocprofv2" - exit 1 + echo "" + echo "------------ ------------ ------------" + echo "WARNING: rocprof(v1) is not supported on this device. Recommended use: rocprofv2" + echo "Please refer project's README for a list of supported architecures." + echo "------------ ------------ ------------" + echo "" fi export ROCP_INPUT="$1"