Skip to content

Commit

Permalink
updates kernel testing
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpeter committed Nov 14, 2024
1 parent a4cd1c7 commit 6810f5f
Showing 1 changed file with 47 additions and 15 deletions.
62 changes: 47 additions & 15 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,31 @@ jobs:
run: ./.github/scripts/run_tests.sh
shell: bash

linuxTest_5:
name: Test 5 - kernel HIP GPU homogeneous acoustic
linuxTest_5a:
name: Test 5a - kernel homogeneous acoustic
runs-on: ubuntu-latest
needs: [linuxCheck]

steps:
- uses: actions/checkout@v4

- name: Install packages
run: ./.github/scripts/run_install.sh
shell: bash

- name: Run build
run: ./.github/scripts/run_build.sh
shell: bash

- name: Run test kernel
env:
TESTDIR: EXAMPLES/applications/homogeneous_acoustic/
RUN_KERNEL: true
run: ./.github/scripts/run_tests.sh
shell: bash

linuxTest_5b:
name: Test 5b - kernel homogeneous acoustic GPU HIP
runs-on: ubuntu-latest
needs: [linuxCheck]

Expand All @@ -436,23 +459,39 @@ jobs:
run: ./.github/scripts/run_build.sh
shell: bash

- name: Run test kernel
- name: Run test kernel w/ GPU
env:
TESTDIR: EXAMPLES/applications/homogeneous_acoustic/
RUN_KERNEL: true
GPU: true
run: ./.github/scripts/run_tests.sh
shell: bash

- name: Run test kernel w/ GPU
linuxTest_6a:
name: Test 6a - kernel homogeneous halfspace
runs-on: ubuntu-latest
needs: [linuxCheck]

steps:
- uses: actions/checkout@v4

- name: Install packages
run: ./.github/scripts/run_install.sh
shell: bash

- name: Run build
run: ./.github/scripts/run_build.sh
shell: bash

- name: Run test kernel
env:
TESTDIR: EXAMPLES/applications/homogeneous_acoustic/
TESTDIR: EXAMPLES/applications/homogeneous_halfspace/
RUN_KERNEL: true
GPU: true
run: ./.github/scripts/run_tests.sh
shell: bash

linuxTest_6:
name: Test 6 - kernel HIP GPU homogeneous halfspace
linuxTest_6b:
name: Test 6b - kernel homogeneous halfspace GPU HIP
runs-on: ubuntu-latest
needs: [linuxCheck]

Expand All @@ -473,13 +512,6 @@ jobs:
run: ./.github/scripts/run_build.sh
shell: bash

- name: Run test kernel
env:
TESTDIR: EXAMPLES/applications/homogeneous_halfspace/
RUN_KERNEL: true
run: ./.github/scripts/run_tests.sh
shell: bash

- name: Run test kernel w/ GPU
env:
TESTDIR: EXAMPLES/applications/homogeneous_halfspace/
Expand Down

0 comments on commit 6810f5f

Please sign in to comment.