From 4ace90aa8e392077296e61679e98cf1778c6e491 Mon Sep 17 00:00:00 2001 From: Maneesh Gupta Date: Mon, 13 Dec 2021 12:49:26 +0530 Subject: [PATCH 1/2] Update Jenkinsfile (#2436) Temporarily disable tests that fail due to infra issues. [ROCm/hip commit: 84721f7ab5ede326e31d0c54baaf897ebf767d49] --- projects/hip/.jenkins/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/hip/.jenkins/Jenkinsfile b/projects/hip/.jenkins/Jenkinsfile index 54d9433136..a7f808603c 100644 --- a/projects/hip/.jenkins/Jenkinsfile +++ b/projects/hip/.jenkins/Jenkinsfile @@ -57,7 +57,7 @@ def hipBuildTest(String backendLabel) { set -x # Check if backend label contains string "amd" or backend host is a server with amd gpu if [[ $backendLabel =~ amd ]]; then - LLVM_PATH=/opt/rocm/llvm make test + LLVM_PATH=/opt/rocm/llvm ctest -E 'saxpy.tst|hiprtcGetLoweredName.tst' else make test fi @@ -97,7 +97,7 @@ def hipBuildTest(String backendLabel) { set -x # Check if backend label contains string "amd" or backend host is a server with amd gpu if [[ $backendLabel =~ amd ]]; then - LLVM_PATH=/opt/rocm/llvm make test + LLVM_PATH=/opt/rocm/llvm ctest -E 'Unit_hiprtc_saxpy' else make test fi From 4f3740036379e76e9e6056711be5abf6a4fae181 Mon Sep 17 00:00:00 2001 From: Maneesh Gupta Date: Mon, 13 Dec 2021 13:56:55 +0530 Subject: [PATCH 2/2] Bump HIP version to 5.0 (#2435) [ROCm/hip commit: df2e7fa198944e30271ebd72e230f3656ca2e686] --- projects/hip/bin/hipvars.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/hip/bin/hipvars.pm b/projects/hip/bin/hipvars.pm index 4d79262ea0..961f45bb68 100644 --- a/projects/hip/bin/hipvars.pm +++ b/projects/hip/bin/hipvars.pm @@ -25,8 +25,8 @@ use Getopt::Long; use Cwd; use File::Basename; -$HIP_BASE_VERSION_MAJOR = "4"; -$HIP_BASE_VERSION_MINOR = "4"; +$HIP_BASE_VERSION_MAJOR = "5"; +$HIP_BASE_VERSION_MINOR = "0"; $HIP_BASE_VERSION_PATCH = "0"; #---