diff options
-rw-r--r-- | var/spack/repos/builtin/packages/amduprof/package.py | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/var/spack/repos/builtin/packages/amduprof/package.py b/var/spack/repos/builtin/packages/amduprof/package.py index 8bd08ffb9f..ffd9ba5cca 100644 --- a/var/spack/repos/builtin/packages/amduprof/package.py +++ b/var/spack/repos/builtin/packages/amduprof/package.py @@ -3,28 +3,31 @@ # # SPDX-License-Identifier: (Apache-2.0 OR MIT) +import os + from spack.package import * class Amduprof(Package): - """AMD uProf ("MICRO-prof") is a software profiling analysis tool for - x86 applications running on Windows, Linux and FreeBSD operating systems - and provides event information unique to the AMD "Zen"-based processors - and AMD Instinct(tm) MI Series accelerators. - """ + """AMD uProf ("MICRO-prof") is a software profiling analysis tool for x86 + applications running on Windows, Linux and FreeBSD operating systems and + provides event information unique to the AMD "Zen"-based processors and AMD + Instinct(tm) MI Series accelerators. AMD uProf enables the developer to better + understand the limiters of application performance and evaluate + improvements.""" homepage = "https://developer.amd.com/amd-uprof/" - url = "https://download.amd.com/developer/eula/uprof/AMDuProf_Linux_x64_4.2.850.tar.bz2" + url = f"file://{os.getcwd()}/AMDuProf_Linux_x64_4.2.850.tar.bz2" + manual_download = True - maintainers("zzzoom") + maintainers("amd-toolchain-support") version("4.2.850", sha256="f2d7c4eb9ec9c32845ff8f19874c1e6bcb0fa8ab2c12e73addcbf23a6d1bd623") - # TODO: build Power Profiling driver on Linux - # TODO: ROCm for GPU tracing and profiling - # TODO: BCC and eBPF for OS tracing + depends_on("binutils@2.27:", type="run") conflicts("platform=darwin") + requires("target=x86_64:", msg="AMD uProf available only on x86_64") def install(self, spec, prefix): install_tree(".", prefix) |