Skip to content

Commit ce3f02d

Browse files
committed
Don't build the apps - because we need this ancient gcc for the 4.2 stuff. Just use the prebuilt apps that already exist on the docker image.
1 parent 82c20da commit ce3f02d

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,26 @@ matrix:
1313
- CONFIG=GTX480
1414
- CUDA_INSTALL_PATH=/usr/local/cuda-4.2/
1515
- PTXAS_CUDA_INSTALL_PATH=/usr/local/cuda-4.2/
16+
- GPUAPPS_ROOT=/home/runner/gpgpu-sim_simulations/benchmarks
1617
- services: docker
1718
env:
1819
- CONFIG=TITANV
1920
- CUDA_INSTALL_PATH=/usr/local/cuda-9.1/
2021
- PTXAS_CUDA_INSTALL_PATH=/usr/local/cuda-9.1/
22+
- GPUAPPS_ROOT=/home/runner/gpgpu-sim_simulations/benchmarks
2123
- services: docker
2224
env:
2325
- CONFIG=TITANV-LOCALXBAR
2426
- CUDA_INSTALL_PATH=/usr/local/cuda-9.1/
2527
- PTXAS_CUDA_INSTALL_PATH=/usr/local/cuda-9.1/
28+
- GPUAPPS_ROOT=/home/runner/gpgpu-sim_simulations/benchmarks
2629

2730
script:
2831
- >
2932
docker run
3033
--env CONFIG=$CONFIG
3134
--env PTXAS_CUDA_INSTALL_PATH=$PTXAS_CUDA_INSTALL_PATH
3235
--env CUDA_INSTALL_PATH=$CUDA_INSTALL_PATH
36+
--env GPUAPPS_ROOT=$GPUAPPS_ROOT
3337
-v `pwd`:/gpgpu-sim:rw tgrogers/gpgpu-sim_regress:volta_update
3438
/bin/bash travis.sh

travis.sh

+5-6
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,15 @@ if [ ! -n "$CONFIG" ]; then
88
exit;
99
fi
1010

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+
1116
export PATH=$CUDA_INSTALL_PATH/bin:$PATH
1217
source ./setup_environment
1318
make -j
1419

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-
2120
pip install psutil
2221
rm -rf accel-sim-framework
2322
git clone https://github.com/accel-sim/accel-sim-framework.git

0 commit comments

Comments
 (0)