From ee0d92f8fcfe864a3699ce810282df89d32250ec Mon Sep 17 00:00:00 2001 From: Illia Silin <98187287+illsilin@users.noreply.github.com> Date: Tue, 9 Dec 2025 14:39:08 -0800 Subject: [PATCH] use hipTensor from monorepo for daily builds (#3386) [ROCm/composable_kernel commit: 934ba1208ab7cfc82c20f73b14994b64c3843d2d] --- Jenkinsfile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3f94820095..5f03310cab 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -834,12 +834,14 @@ def Build_CK(Map conf=[:]){ if (params.hipTensor_test && arch == "gfx90a" ){ // build and test hipTensor on gfx90a node sh """#!/bin/bash - rm -rf "${params.hipTensor_branch}".zip - rm -rf hipTensor-"${params.hipTensor_branch}" - wget https://github.com/ROCm/hipTensor/archive/refs/heads/"${params.hipTensor_branch}".zip - unzip -o "${params.hipTensor_branch}".zip + rm -rf rocm-libraries + git clone --no-checkout --filter=blob:none https://github.com/ROCm/rocm-libraries.git + cd rocm-libraries + git sparse-checkout init --cone + git sparse-checkout set projects/hiptensor + git checkout "${params.hipTensor_branch}" """ - dir("hipTensor-${params.hipTensor_branch}"){ + dir("rocm-libraries/projects/hiptensor"){ sh """#!/bin/bash mkdir -p build ls -ltr