forked from CFD-GO/TCLB
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (37 loc) · 814 Bytes
/
gpu_comp.yml
File metadata and controls
39 lines (37 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: CUDA
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
model:
- d2q9
- d2q9_bc
- d3q27_cumulant
- d3q27_cumulant_AVG_IB_SMAG
- d3q27_pf_velocity
- d3q27_PSM_NEBB
steps:
- name: Git checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Install dependencies
uses: ./.github/actions/install
with:
r: true
rdep: true
openmpi: true
rinside: true
cuda: true
- name: Configure
uses: ./.github/actions/configure
with:
gpu: true
paranoid: true
- name: Compile
uses: ./.github/actions/compile
with:
model: ${{ matrix.model }}