Changes
2 changed files (+15/-10)
-
-
@@ -1,6 +1,6 @@pkgbase = rccl pkgdesc = ROCm Communication Collectives Library pkgver = 4.2.0 pkgver = 4.3.0 pkgrel = 1 url = https://github.com/ROCmSoftwarePlatform/rccl arch = x86_64
-
@@ -8,8 +8,8 @@ pkgbase = rcclmakedepends = cmake makedepends = python makedepends = gtest depends = hip source = rccl-4.2.0.tar.gz::https://github.com/ROCmSoftwarePlatform/rccl/archive/rocm-4.2.0.tar.gz sha256sums = 2829fae40ebc1d8be201856d2193a941c87e9cf38dca0a2f4414e675c1742f20 depends = hip-rocclr source = rccl-4.3.0.tar.gz::https://github.com/ROCmSoftwarePlatform/rccl/archive/rocm-4.3.0.tar.gz sha256sums = b5231d8c5ab034a583feceebcef68d0cc0b05ec5a683f802fc7747c89f27d5f6 pkgname = rccl
-
-
-
@@ -1,26 +1,31 @@# Maintainer: Markus Näther <naetherm@informatik.uni-freiburg.de> # Maintainer: Torsten Keßler <t dot kessler at posteo dot de> # Contriubtor: Markus Näther <naetherm@informatik.uni-freiburg.de> # Contributor: acxz <akashpatel2008 at yahoo dot com> pkgname=rccl pkgver=4.2.0 pkgver=4.3.0 pkgrel=1 pkgdesc="ROCm Communication Collectives Library" arch=('x86_64') url="https://github.com/ROCmSoftwarePlatform/rccl" license=('custom') depends=('hip') depends=('hip-rocclr') makedepends=('cmake' 'python' 'gtest') source=("$pkgname-$pkgver.tar.gz::$url/archive/rocm-$pkgver.tar.gz") sha256sums=('2829fae40ebc1d8be201856d2193a941c87e9cf38dca0a2f4414e675c1742f20') sha256sums=('b5231d8c5ab034a583feceebcef68d0cc0b05ec5a683f802fc7747c89f27d5f6') _dirname="$(basename $url)-$(basename ${source[0]} .tar.gz)" build() { # -fcf-protection is not supported by HIP, see # https://github.com/ROCm-Developer-Tools/HIP/blob/rocm-4.2.x/docs/markdown/clang_options.md CXX=/opt/rocm/bin/hipcc \ # https://github.com/ROCm-Developer-Tools/HIP/blob/rocm-4.3.x/docs/markdown/clang_options.md # With version 3.21, HIP support was added to CMake that breaks the current scripts, see # https://github.com/ROCmSoftwarePlatform/rocRAND/issues/198#issuecomment-893573440 CXX=/opt/rocm/hip/bin/hipcc \ CXXFLAGS="${CXXFLAGS} -fcf-protection=none" \ cmake -B build -Wno-dev \ -S "$_dirname" \ -D__skip_rocmclang=ON \ -DCMAKE_INSTALL_PREFIX=/opt/rocm \ -DBUILD_TESTS=OFF
-