* Bump up the version for ROCm-6.0.0 * Adding patch files * Style check failure fix * Style check fixes * Style check error fixes * Patch to remove hipblas client file installation in 6.0 * Patch need to be applied on all 5.7 relases * 6.0 update for math libs and other packages, new github url etc * Correct package-audit failures * Correcting shasum for rocfft patch and limiting patch in rocblas * Reverting updates in rocprofiler-dev due to ci-gitlab failure * Fixes for ci-gitlab failure due to disabling hip backward compatibilit * Adding patch file to Change HIP_PLATFORM from HCC to AMD and NVCC to NVIDIA * Use the gcnArchName inplace of gcnArch as gcnArch is deprecated from rocm-6.0.0 * Patches to fix magma and blaspp build error with rocm 6.0.0 * Patch for mfem and arborx for rocm 6.0 * Style check error fix * Correcting style check errors * Uodating dependent version * Update for petsc to build with rocm 6.0 Need reverting-operator-mixup-fix-for-slate.patch for rocm 6.0 * Reverting the change in url for 2.7.4-rocm-enhanced * hip-tensor 6.0.0 update
27 lines
1.2 KiB
Diff
27 lines
1.2 KiB
Diff
From e7fa7ea37423d3d17d77334ac849c5df00feb20e Mon Sep 17 00:00:00 2001
|
|
From: sreenivasa murthy kolam <sreenivasamurthy.kolam@amd.com>
|
|
Date: Tue, 16 Jan 2024 10:09:34 +0000
|
|
Subject: [PATCH] use the gcnArchName inplace of gcnArch as gcnArch is
|
|
deprecated from rocm-6.0.0
|
|
|
|
---
|
|
packages/kokkos/core/src/HIP/Kokkos_HIP_Instance.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/packages/kokkos/core/src/HIP/Kokkos_HIP_Instance.cpp b/packages/kokkos/core/src/HIP/Kokkos_HIP_Instance.cpp
|
|
index 7840ad9..882d143 100644
|
|
--- a/packages/kokkos/core/src/HIP/Kokkos_HIP_Instance.cpp
|
|
+++ b/packages/kokkos/core/src/HIP/Kokkos_HIP_Instance.cpp
|
|
@@ -86,7 +86,7 @@ void HIPInternal::print_configuration(std::ostream &s) const {
|
|
KOKKOS_IMPL_HIP_SAFE_CALL(hipGetDeviceProperties(&hipProp, i));
|
|
|
|
s << "Kokkos::HIP[ " << i << " ] "
|
|
- << "gcnArch " << hipProp.gcnArch << ", Total Global Memory: "
|
|
+ << "gcnArchName " << hipProp.gcnArchName << ", Total Global Memory: "
|
|
<< ::Kokkos::Impl::human_memory_size(hipProp.totalGlobalMem)
|
|
<< ", Shared Memory per Block: "
|
|
<< ::Kokkos::Impl::human_memory_size(hipProp.sharedMemPerBlock);
|
|
--
|
|
2.39.3
|
|
|