Skip to content

Commit

Permalink
Jenkinsfile: Update oneccl stages
Browse files Browse the repository at this point in the history
Instead of running a single stage, separated the stages
to run different providers on different partitions

Signed-off-by: Juee Himalbhai Desai <[email protected]>
  • Loading branch information
Juee14Desai committed Jan 31, 2025
1 parent bb9c9e2 commit 5a22c3a
Showing 1 changed file with 49 additions and 16 deletions.
65 changes: 49 additions & 16 deletions contrib/intel/jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,33 @@ pipeline {
}
}
}
stage ('oneccl-water') {
steps {
script {
dir (CI_LOCATION) {
build_ci("pr_build_oneccl_water.json")
}
}
}
}
stage ('oneccl-grass') {
steps {
script {
dir (CI_LOCATION) {
build_ci("pr_build_oneccl_grass.json")
}
}
}
}
stage ('oneccl-electric') {
steps {
script {
dir (CI_LOCATION) {
build_ci("pr_build_oneccl_electric.json")
}
}
}
}
stage ('mpich-water') {
steps {
script {
Expand Down Expand Up @@ -836,24 +863,30 @@ pipeline {
}
}
}
stage ('oneCCL') {
stage ('oneccl_grass') {
steps {
script {
dir (RUN_LOCATION) {
run_middleware([["verbs", null]], "oneCCL",
"oneccl", "water",
"squirtle,wartortle,articuno", "2")
run_middleware([["shm", null]], "oneCCL",
"oneccl", "grass", "bulbasaur,ivysaur", "1")
run_middleware([["psm3", null]], "oneCCL",
"oneccl", "water",
"squirtle,wartortle,articuno", "2")
run_middleware([["tcp", null]], "oneCCL",
"oneccl", "grass", "bulbasaur,ivysaur", "2")
run_middleware([["shm", null]], "oneCCL_DSA",
"oneccl", "electric", "pikachu", "1", null, null,
"""CCL_ATL_SHM=1 FI_SHM_DISABLE_CMA=1 \
FI_SHM_USE_DSA_SAR=1 FI_LOG_LEVEL=warn""")
dir (CI_LOCATION) {
run_ci("CI_oneccl_grass", "pr_oneccl_grass_tcp.json")
run_ci("CI_oneccl_grass", "pr_oneccl_grass_shm.json")
}
}
}
}
stage ('oneccl_water') {
steps {
script {
dir (CI_LOCATION) {
run_ci("CI_oneccl_water", "pr_oneccl_water.json")
}
}
}
}
stage ('oneccl_electric') {
steps {
script {
dir (CI_LOCATION) {
run_ci("CI_oneccl_electric", "pr_oneccl_electric.json")
}
}
}
Expand Down

0 comments on commit 5a22c3a

Please sign in to comment.