825440e7ba
- Update filenames.
- Update executable to `rocprof-compute`
- Update update package to `rocprofiler-compute`
- Update name in application output and logs
- Update name in README files
- Update testing and workflows
---------
Signed-off-by: Xuan Chen <xuchen@amd.com>
[ROCm/rocprofiler-compute commit: 31b4de1a38]
33 خطوط
920 B
Plaintext
33 خطوط
920 B
Plaintext
local help_message = [[
|
|
|
|
ROCm Compute Profiler is an open-source performance analysis tool for profiling
|
|
machine learning/HPC workloads running on AMD MI GPUs.
|
|
|
|
Version @ROCPROFCOMPUTE_FULL_VERSION@
|
|
]]
|
|
|
|
help(help_message,"\n")
|
|
|
|
whatis("Name: @PROJECT_NAME@")
|
|
whatis("Version: @ROCPROFCOMPUTE_FULL_VERSION@")
|
|
whatis("Keywords: Profiling, Performance, GPU")
|
|
whatis("Description: tool for GPU performance profiling")
|
|
whatis("URL: https://github.com/ROCm/rocprofiler-compute")
|
|
|
|
-- Export environmental variables
|
|
local topDir="@CMAKE_INSTALL_PREFIX@"
|
|
local binDir="@CMAKE_INSTALL_FULL_BINDIR@"
|
|
local shareDir="@CMAKE_INSTALL_FULL_DATADIR@"
|
|
local pythonDeps="@PYTHON_DEPS@"
|
|
|
|
setenv("ROCPROFCOMPUTE_DIR",topDir)
|
|
setenv("ROCPROFCOMPUTE_BIN",binDir)
|
|
setenv("ROCPROFCOMPUTE_SHARE",shareDir)
|
|
|
|
-- Update relevant PATH variables
|
|
prepend_path("PATH",binDir)
|
|
if ( pythonDeps ~= "" ) then
|
|
prepend_path("PYTHONPATH",pythonDeps)
|
|
end
|
|
|