Skip to content

Commit

Permalink
remove fermi and add newer gen cards
Browse files Browse the repository at this point in the history
  • Loading branch information
JRPan committed Jan 26, 2024
1 parent 77aefac commit 1bdb39a
Showing 1 changed file with 36 additions and 15 deletions.
51 changes: 36 additions & 15 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,47 +13,68 @@ 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:
# 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-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:
# 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-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:
Expand Down

0 comments on commit 1bdb39a

Please sign in to comment.