From 80aeb0fcd03bd53eff6d3bfc3bfae3c7d065e480 Mon Sep 17 00:00:00 2001 From: Illia Silin <98187287+illsilin@users.noreply.github.com> Date: Thu, 2 Apr 2026 09:06:44 -0700 Subject: [PATCH] Use ck_pytorch docker from private repo. (#6103) ## Motivation Move the pytorch docker image used for CK testing into private repo. ## Technical Details ## Test Plan ## Test Result ## Submission Checklist - [ ] Look over the contributing guidelines at https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests. --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3a1982713f..069a06bfd9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -430,7 +430,7 @@ def buildDocker(install_prefix){ dockerArgs = dockerArgs + " --no-cache -f projects/composablekernel/Dockerfile.aiter --build-arg AITER_BRANCH='${params.aiter_branch}' --build-arg CK_AITER_BRANCH='${params.ck_aiter_branch}' . " } else if(params.RUN_PYTORCH_TESTS){ - image_name = "${env.CK_DOCKERHUB}:ck_pytorch" + image_name = "${env.CK_DOCKERHUB_PRIVATE}:ck_pytorch" dockerArgs = dockerArgs + " --no-cache -f projects/composablekernel/Dockerfile.pytorch --build-arg CK_PYTORCH_BRANCH='${params.ck_pytorch_branch}' . " } else{ @@ -1140,7 +1140,7 @@ def run_pytorch_tests(Map conf=[:]){ show_node_info() checkoutComposableKernel() //use the latest pytorch-nightly image - def image = "${env.CK_DOCKERHUB}:ck_pytorch" + def image = "${env.CK_DOCKERHUB_PRIVATE}:ck_pytorch" def dockerOpts=get_docker_options() + ' --group-add irc ' gitStatusWrapper(credentialsId: "${env.ck_git_creds}", gitHubContext: "${env.STAGE_NAME}", account: 'ROCm', repo: 'rocm-libraries') {