summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/main.yml51
1 files changed, 36 insertions, 15 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 382095e..742a906 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: