Change-Id: I5e4999fc2d27b68afa0bf70b65e2d97cd7f2b01d
Этот коммит содержится в:
gobhardw
2023-12-07 05:29:07 +00:00
родитель fd7aa5758f
Коммит 6f033b4295
3 изменённых файлов: 4 добавлений и 1 удалений
+2
Просмотреть файл
@@ -306,6 +306,7 @@ Example for file plugin output:
- Added Tool versioning to be able to run rocprofv2 using rocprof. See README for more information.
- Added Plugin Versioning way in rocprofv2. See README for more details.
- Added --version in the rocprof and rocprofv2 to be able to see the current rocprof/v2 version along with ROCm version information.
- Extended rocprof(v1) support for MI300.
## ROCprofiler for rocm 6.1
@@ -318,3 +319,4 @@ Example for file plugin output:
- ATT: Network mode, since it was redundant with file mode.
- ATT: Generated isa.s file, since the functionality was moved from collection to parsing time.
+1
Просмотреть файл
@@ -89,6 +89,7 @@ export ROCPROFILER_TRACE=1
- gfx906 (AMD Vega 7nm also referred to as AMD Vega 20)
- gfx908 (AMD Instinct™ MI100 accelerator)
- gfx90a (AMD Instinct™ MI200)
- gfx94x (AMD Instinct™ MI300)
***
Note: ROCProfiler V1 tool usage documentation is available at [Click Here](doc/rocprof_tool.md)
+1 -1
Просмотреть файл
@@ -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")
V1_SUPPORTED_GPU_ARCHS=("gfx80x","gfx90x","gfx10xx","gfx94x")
CURRENT_AGENTS_LIST=$($BIN_DIR/rocm_agent_enumerator)
IS_SUPPORTED="false"