summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/rocmlir/package.py
diff options
context:
space:
mode:
authorSreenivasa Murthy Kolam <sreenivasamurthy.kolam@amd.com>2023-07-27 22:12:17 +0530
committerGitHub <noreply@github.com>2023-07-27 09:42:17 -0700
commit8908b7584ebd299a038f25cfdbd2478881e5419d (patch)
tree5e4067813d2925dda2c72bc438406fb1229b8330 /var/spack/repos/builtin/packages/rocmlir/package.py
parent936c6045fc0686e683c6b3da20967d2e30a7ec87 (diff)
downloadspack-8908b7584ebd299a038f25cfdbd2478881e5419d.tar.gz
spack-8908b7584ebd299a038f25cfdbd2478881e5419d.tar.bz2
spack-8908b7584ebd299a038f25cfdbd2478881e5419d.tar.xz
spack-8908b7584ebd299a038f25cfdbd2478881e5419d.zip
Updates to rocm recipes for rocm-5.5.0 and rocm-5.5.1 releases (#37910)
* initial commit for rocm-5.5.0 release * fix the hipsparse build error for 5.5.0 * fix build error for amrex .add hiprand as a dependency * modify the patch for rocprofiler-dev * add hiprand for +rocm build * initial commit for rocm-5.5.1 release * bump up the version for rocm-5.5.1 release. * bump up the version for rocmlir.miopen to use this backend only till 5.5 * add new recipe py-barectf and add it as dependency for rocprofiler-dev * revert the changes for rocprofiler-dev for 5.5.0/1 for now as it depends on hsa-amdaqlprofile.so which is a closed source and no spack recipe is available for now. * add rocm-core as dependency for rocm packages from 5.5.0 onwards * avoid download of the gtest for building unit tests
Diffstat (limited to 'var/spack/repos/builtin/packages/rocmlir/package.py')
-rw-r--r--var/spack/repos/builtin/packages/rocmlir/package.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/rocmlir/package.py b/var/spack/repos/builtin/packages/rocmlir/package.py
index a01392a0be..36eab9ff6c 100644
--- a/var/spack/repos/builtin/packages/rocmlir/package.py
+++ b/var/spack/repos/builtin/packages/rocmlir/package.py
@@ -14,10 +14,11 @@ class Rocmlir(CMakePackage):
homepage = "https://github.com/ROCmSoftwarePlatform/rocMLIR"
git = "https://github.com/ROCmSoftwarePlatform/rocMLIR.git"
- url = "https://github.com/ROCmSoftwarePlatform/rocMLIR/archive/refs/tags/rocm-5.4.3.tar.gz"
+ url = "https://github.com/ROCmSoftwarePlatform/rocMLIR/archive/refs/tags/rocm-5.5.0.tar.gz"
maintainers("srekolam")
-
+ version("5.5.1", commit="8c29325e7e68e3248e863172bf0e7f97055d45ee")
+ version("5.5.0", sha256="a5f62769d28a73e60bc8d61022820f050e97c977c8f6f6275488db31512e1f42")
version("5.4.3", sha256="c0ba0f565e1c6614c9e6091a24cbef67b734a29e4a4ed7a8a57dc43f58ed8d53")
version("5.4.0", sha256="3823f455ee392118c3281e27d45fa0e5381f3c4070eb4e06ba13bc6b34a90a60")
version("5.3.0", sha256="e8471a13cb39d33adff34730d3162adaa5d20f9544d61a6a94b39b9b5762ad6d")
@@ -46,7 +47,7 @@ class Rocmlir(CMakePackage):
depends_on("half")
depends_on("pkgconfig", type="build")
- for ver in ["5.3.0", "5.4.0", "5.4.3"]:
+ for ver in ["5.3.0", "5.4.0", "5.4.3", "5.5.0", "5.5.1"]:
depends_on("hip@" + ver, when="@" + ver)
depends_on("llvm-amdgpu@" + ver, when="@" + ver)
depends_on("hsa-rocr-dev@" + ver, when="@" + ver)