From 1bdb39acb89ce1203d4fc96a00ce3c3f51fe72b8 Mon Sep 17 00:00:00 2001 From: JRPan <25518778+JRPan@users.noreply.github.com> Date: Fri, 26 Jan 2024 15:49:30 -0500 Subject: [PATCH] remove fermi and add newer gen cards --- .github/workflows/main.yml | 51 +++++++++++++++++++++++++++----------- 1 file changed, 36 insertions(+), 15 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 382095e0c..742a90613 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,15 +13,12 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - build-GTX480: + build-TITANV: runs-on: ubuntu-latest container: image: tgrogers/accel-sim_regress:Ubuntu-22.04-cuda-11.7 env: - CONFIG: GTX480 - # CUDA_INSTALL_PATH: /usr/local/cuda-4.2/ - # PTXAS_CUDA_INSTALL_PATH: /usr/local/cuda-4.2/ - # GPUAPPS_ROOT: /home/runner/gpgpu-sim_simulations/benchmarks + CONFIG: TITANV # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -29,15 +26,13 @@ jobs: - uses: actions/checkout@v4 - name: Run Simulation run: /bin/bash $GITHUB_WORKSPACE/short-tests.sh - build-TITANV: + + build-TITANV-LOCALXBAR: runs-on: ubuntu-latest container: image: tgrogers/accel-sim_regress:Ubuntu-22.04-cuda-11.7 env: - CONFIG: TITANV - # CUDA_INSTALL_PATH: /usr/local/cuda-9.1/ - # PTXAS_CUDA_INSTALL_PATH: /usr/local/cuda-9.1/ - # GPUAPPS_ROOT: /home/runner/gpgpu-sim_simulations/benchmarks + CONFIG: TITANV-LOCALXBAR # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -45,15 +40,41 @@ jobs: - uses: actions/checkout@v4 - name: Run Simulation run: /bin/bash $GITHUB_WORKSPACE/short-tests.sh - build-TITANV-LOCALXBAR: + + build-QV100: runs-on: ubuntu-latest container: image: tgrogers/accel-sim_regress:Ubuntu-22.04-cuda-11.7 env: - CONFIG: TITANV-LOCALXBAR - # CUDA_INSTALL_PATH: /usr/local/cuda-9.1/ - # PTXAS_CUDA_INSTALL_PATH: /usr/local/cuda-9.1/ - # GPUAPPS_ROOT: /home/runner/gpgpu-sim_simulations/benchmarks + CONFIG: QV100 + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v4 + - name: Run Simulation + run: /bin/bash $GITHUB_WORKSPACE/short-tests.sh + + build-2060: + runs-on: ubuntu-latest + container: + image: tgrogers/accel-sim_regress:Ubuntu-22.04-cuda-11.7 + env: + CONFIG: RTX2060 + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v4 + - name: Run Simulation + run: /bin/bash $GITHUB_WORKSPACE/short-tests.sh + + build-3070: + runs-on: ubuntu-latest + container: + image: tgrogers/accel-sim_regress:Ubuntu-22.04-cuda-11.7 + env: + CONFIG: RTX3070 # Steps represent a sequence of tasks that will be executed as part of the job steps: