Upgrade to ROCm7.1.1 as default compiler. (#3370)

* upgrade to rocm7.1.1 as new default compiler

* fix jenkinsfile
This commit is contained in:
Illia Silin
2025-12-09 07:35:32 -08:00
committed by GitHub
parent 50ca3f83eb
commit 7582c9e73f
4 changed files with 9 additions and 9 deletions

8
Jenkinsfile vendored
View File

@@ -288,7 +288,7 @@ def getBaseDockerImageName(){
}
else{
def ROCM_numeric = parseVersion("${params.ROCMVERSION}")
if ( ROCM_numeric.major <= 7 && ROCM_numeric.minor < 1 ){
if ( ROCM_numeric.major <= 7 && ROCM_numeric.minor < 2 ){
img = "${env.CK_DOCKERHUB}:ck_ub24.04_rocm${params.ROCMVERSION}"
}
else{
@@ -434,7 +434,7 @@ def buildDocker(install_prefix){
}
catch(Exception ex){
echo "Unable to locate image: ${image_name}. Building image now"
retimage = docker.build("${image_name}", dockerArgs + ' .')
retimage = docker.build("${image_name}", dockerArgs)
withDockerRegistry([ credentialsId: "ck_docker_cred", url: "" ]) {
retimage.push()
}
@@ -1121,8 +1121,8 @@ pipeline {
description: 'If you want to use a custom docker image, please specify it here (default: leave blank).')
string(
name: 'ROCMVERSION',
defaultValue: '7.0.1',
description: 'Specify which ROCM version to use: 7.0.1 (default).')
defaultValue: '7.1.1',
description: 'Specify which ROCM version to use: 7.1.1 (default).')
string(
name: 'COMPILER_VERSION',
defaultValue: '',