diff options
| author | Tim Rogers <[email protected]> | 2018-10-05 13:42:03 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-10-05 13:42:03 -0400 |
| commit | 77a18471d485b2a5bad8cf140185d41fd9d35055 (patch) | |
| tree | 70c9ab71a18695fe1b6c23b9665a664c9328ce86 /.travis.yml | |
| parent | 2f2345eef7e40e2fcd0cf5558adfa0fd4ff728d1 (diff) | |
| parent | 6ac985565bf5cb6d621487cc4d13163f63d5b646 (diff) | |
Merge pull request #76 from tgrogers/dev
Changes to allow correct occupancy with newer cards, while still running PTXPlus
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 32 |
1 files changed, 25 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index 3f2fb6c..7a12a1c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,17 +9,35 @@ language: cpp matrix: include: - services: docker - env: CONFIG=configs.gtx480.yml + env: + - CONFIG=configs.gtx480.yml + - CUDA_INSTALL_PATH=/usr/local/cuda-4.2/ + - PTXAS_CUDA_INSTALL_PATH=/usr/local/cuda-4.2/ # This config is just taking far too long... # - services: docker -# env: CONFIG=configs.gtx750ti.yml +# env: +# - CONFIG=configs.gtx750ti.yml +# - CUDA_INSTALL_PATH=/usr/local/cuda-4.2/ +# - PTXAS_CUDA_INSTALL_PATH=/usr/local/cuda-4.2/ - services: docker - env: CONFIG=configs.quadro5600.yml + env: + - CONFIG=configs.quadro5600.yml + - CUDA_INSTALL_PATH=/usr/local/cuda-4.2/ + - PTXAS_CUDA_INSTALL_PATH=/usr/local/cuda-4.2/ - services: docker - env: CONFIG=configs.quadro5800.yml + env: + - CONFIG=configs.quadro5800.yml + - CUDA_INSTALL_PATH=/usr/local/cuda-4.2/ + - PTXAS_CUDA_INSTALL_PATH=/usr/local/cuda-4.2/ - services: docker - env: CONFIG=configs.teslac2050.yml + env: + - CONFIG=configs.teslac2050.yml + - CUDA_INSTALL_PATH=/usr/local/cuda-4.2/ + - PTXAS_CUDA_INSTALL_PATH=/usr/local/cuda-4.2/ - services: docker - env: CONFIG=configs.gtx1080ti.yml + env: + - CONFIG=configs.gtx1080ti.yml + - CUDA_INSTALL_PATH=/usr/local/cuda-4.2/ + - PTXAS_CUDA_INSTALL_PATH=/usr/local/cuda-9.1/ -script: docker run -v `pwd`:/home/runner/gpgpu-sim_distribution:rw tgrogers/gpgpu-sim_regress:latest /bin/bash -c "./start_torque.sh; chown -R runner /home/runner/gpgpu-sim_distribution; su - runner -c 'export CUDA_INSTALL_PATH=/usr/local/cuda-4.2/ && source /home/runner/gpgpu-sim_distribution/setup_environment && make -j -C /home/runner/gpgpu-sim_distribution && cd /home/runner/gpgpu-sim_simulations/ && git pull && /home/runner/gpgpu-sim_simulations/util/job_launching/run_simulations.py -c /home/runner/gpgpu-sim_simulations/util/job_launching/regression_recipies/rodinia_2.0-ft/$CONFIG -N regress && /home/runner/gpgpu-sim_simulations/util/job_launching/monitor_func_test.py -v -N regress'" +script: docker run -v `pwd`:/home/runner/gpgpu-sim_distribution:rw tgrogers/gpgpu-sim_regress:latest /bin/bash -c "./start_torque.sh; chown -R runner /home/runner/gpgpu-sim_distribution; su - runner -c 'export CUDA_INSTALL_PATH=$CUDA_INSTALL_PATH && export PTXAS_CUDA_INSTALL_PATH=$PTXAS_CUDA_INSTALL_PATH && source /home/runner/gpgpu-sim_distribution/setup_environment && make -j -C /home/runner/gpgpu-sim_distribution && cd /home/runner/gpgpu-sim_simulations/ && git pull && /home/runner/gpgpu-sim_simulations/util/job_launching/run_simulations.py -c /home/runner/gpgpu-sim_simulations/util/job_launching/regression_recipies/rodinia_2.0-ft/$CONFIG -N regress && /home/runner/gpgpu-sim_simulations/util/job_launching/monitor_func_test.py -v -N regress'" |
