Skip to content

Commit

Permalink
Intel/CI: Update DMABUF stage to use torchic partition
Browse files Browse the repository at this point in the history
DMABUF tests require to use new node which is available with
torchic partition.
There is no need for 2 node tests hence the two node tests have
been removed.
Log file name has been changed and node has been removed.

Signed-off-by: Juee Himalbhai Desai <[email protected]>
  • Loading branch information
Juee14Desai committed May 31, 2024
1 parent 7ae2c59 commit 52d527d
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions contrib/intel/jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def checkout_ci_resources() {
rm -rf ${env.WORKSPACE}/ci_resources && mkdir ${env.WORKSPACE}/ci_resources
fi
git clone ${env.CI_RESOURCES} ${env.WORKSPACE}/ci_resources
git clone -b master ${env.JDESAI_CI_RESOURCES} ${env.WORKSPACE}/ci_resources
"""
}
Expand All @@ -175,7 +175,7 @@ def checkout_ci() {
rm -rf ${env.WORKSPACE}/ci && mkdir ${env.WORKSPACE}/ci
fi
git clone --recurse-submodules ${env.CI} ${env.WORKSPACE}/ci
git clone -b master --recurse-submodules ${env.JDESAI_CI} ${env.WORKSPACE}/ci
"""
}

Expand Down Expand Up @@ -427,7 +427,7 @@ pipeline {
}
}
}
stage ('build-water') {
/*stage ('build-water') {
environment {
build_type = "water"
}
Expand Down Expand Up @@ -520,7 +520,7 @@ pipeline {
}
}
}
}
}*/
stage ('build-gpu') {
agent {
node {
Expand All @@ -547,7 +547,7 @@ pipeline {
stage('parallel-tests') {
when { equals expected: true, actual: DO_RUN }
parallel {
stage ('CI_MPI_verbs-rxm_IMB') {
/*stage ('CI_MPI_verbs-rxm_IMB') {
environment {
build_type = "water"
}
Expand Down Expand Up @@ -806,7 +806,7 @@ pipeline {
}
}
}
}
}*/
stage ('DMABUF-Tests') {
agent { node { label 'ze' } }
options { skipDefaultCheckout() }
Expand All @@ -816,15 +816,13 @@ pipeline {
dmabuf_output = "${LOG_DIR}/DMABUF-Tests_verbs-rxm_dmabuf"
cmd = """ python3.9 runtests.py --test=dmabuf \
--prov=verbs --util=rxm --build_hw=gpu"""
slurm_batch("fabrics-ci", "1", "${dmabuf_output}_1_reg",
"${cmd}")
slurm_batch("fabrics-ci", "2", "${dmabuf_output}_2_reg",
slurm_batch("torchic", "1", "${dmabuf_output}_reg",
"${cmd}")
}
}
}
}
stage ('cuda-shm-v1') {
/*stage ('cuda-shm-v1') {
steps {
script {
dir (RUN_LOCATION) {
Expand Down Expand Up @@ -879,7 +877,7 @@ pipeline {
}
}
}
}
}*/
}
}
stage ('Summary') {
Expand All @@ -891,7 +889,7 @@ pipeline {
gather_logs("${env.ZE_ADDR}", "${env.ZE_KEY}", "${env.LOG_DIR}",
"${env.LOG_DIR}")

summarize("all", verbose=false, release=RELEASE,
summarize("all", verbose=true, release=RELEASE,
send_mail=env.WEEKLY.toBoolean())
if (RELEASE) {
save_summary()
Expand Down

0 comments on commit 52d527d

Please sign in to comment.