File tree 2 files changed +9
-6
lines changed
2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -13,22 +13,26 @@ matrix:
13
13
- CONFIG=GTX480
14
14
- CUDA_INSTALL_PATH=/usr/local/cuda-4.2/
15
15
- PTXAS_CUDA_INSTALL_PATH=/usr/local/cuda-4.2/
16
+ - GPUAPPS_ROOT=/home/runner/gpgpu-sim_simulations/benchmarks
16
17
- services : docker
17
18
env :
18
19
- CONFIG=TITANV
19
20
- CUDA_INSTALL_PATH=/usr/local/cuda-9.1/
20
21
- PTXAS_CUDA_INSTALL_PATH=/usr/local/cuda-9.1/
22
+ - GPUAPPS_ROOT=/home/runner/gpgpu-sim_simulations/benchmarks
21
23
- services : docker
22
24
env :
23
25
- CONFIG=TITANV-LOCALXBAR
24
26
- CUDA_INSTALL_PATH=/usr/local/cuda-9.1/
25
27
- PTXAS_CUDA_INSTALL_PATH=/usr/local/cuda-9.1/
28
+ - GPUAPPS_ROOT=/home/runner/gpgpu-sim_simulations/benchmarks
26
29
27
30
script :
28
31
- >
29
32
docker run
30
33
--env CONFIG=$CONFIG
31
34
--env PTXAS_CUDA_INSTALL_PATH=$PTXAS_CUDA_INSTALL_PATH
32
35
--env CUDA_INSTALL_PATH=$CUDA_INSTALL_PATH
36
+ --env GPUAPPS_ROOT=$GPUAPPS_ROOT
33
37
-v `pwd`:/gpgpu-sim:rw tgrogers/gpgpu-sim_regress:volta_update
34
38
/bin/bash travis.sh
Original file line number Diff line number Diff line change @@ -8,16 +8,15 @@ if [ ! -n "$CONFIG" ]; then
8
8
exit ;
9
9
fi
10
10
11
+ if [ ! -n " $GPUAPPS_ROOT " ]; then
12
+ echo " ERROR ** GPUAPPS_ROOT to a location where the apps have been compiled" ;
13
+ exit ;
14
+ fi
15
+
11
16
export PATH=$CUDA_INSTALL_PATH /bin:$PATH
12
17
source ./setup_environment
13
18
make -j
14
19
15
- rm -rf gpu-app-collection
16
- git clone https://github.com/accel-sim/gpu-app-collection.git
17
- source gpu-app-collection/src/setup_environment
18
- make rodinia_2.0-ft -j -C gpu-app-collection/src
19
- ./gpu-app-collection/get_regression_data.sh
20
-
21
20
pip install psutil
22
21
rm -rf accel-sim-framework
23
22
git clone https://github.com/accel-sim/accel-sim-framework.git
You can’t perform that action at this time.
0 commit comments