blob: 86ca78fa99bc20d828f1d9ce841b5634a7fdcdf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
pipeline {
agent {
label "purdue-cluster"
}
stages {
stage('4.2-regress') {
steps {
sh 'source /home/tgrogers-raid/a/common/gpgpu-sim-setup/4.2_env_setup.sh && source `pwd`/setup_environment && make -j && git clone https://github.com/tgrogers/gpgpu-sim_simulations.git && cd gpgpu-sim_simulations && git checkout purdue-cluster && make -j -C ./benchmarks/src all && ./util/job_launching/run_simulations.py -N regress &&./util/job_launching/monitor_func_test.py -v -N regress'
}
}
}
}
|