-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #434 from CFD-GO/develop
Version 6.6
- Loading branch information
Showing
71 changed files
with
3,661 additions
and
1,925 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
ignore: | ||
- "**/pugi*" # ignore pugixml | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
threshold: 100% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,5 @@ runs: | |
steps: | ||
- shell: bash | ||
id: compile | ||
name: "Compile" | ||
run: make ${{ inputs.model }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,5 @@ runs: | |
using: 'composite' | ||
steps: | ||
- shell: bash | ||
name: Run tests | ||
run: tools/tests.sh ${{ inputs.model }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: HIP | ||
|
||
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 ] | ||
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 | ||
hip: 5.4.1 | ||
- name: Configure | ||
uses: ./.github/actions/configure | ||
with: | ||
hip: true | ||
paranoid: true | ||
- name: Compile | ||
uses: ./.github/actions/compile | ||
with: | ||
model: ${{ matrix.model }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Storage | ||
|
||
on: [ push, pull_request ] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
model: [d2q9] | ||
precision: [float, double] | ||
storage: ['same', 'half', 'half-shift', "float", "float-shift", 'double'] | ||
gpu: [true, false] | ||
exclude: | ||
- gpu: false | ||
storage: 'half' | ||
- gpu: false | ||
storage: 'half-shift' | ||
- precision: 'float' | ||
storage: 'double' | ||
steps: | ||
- name: Git checkout | ||
uses: actions/checkout@v3 | ||
- name: Install dependencies | ||
uses: ./.github/actions/install | ||
with: | ||
r: true | ||
rdep: true | ||
openmpi: true | ||
rinside: true | ||
cuda: ${{ matrix.gpu }} | ||
- name: Configure | ||
uses: ./.github/actions/configure | ||
with: | ||
gpu: ${{ matrix.gpu }} | ||
cuda_arch: sm_60 | ||
paranoid: true | ||
precision: ${{ matrix.precision }} | ||
storage: ${{ matrix.storage }} | ||
- name: Compile | ||
uses: ./.github/actions/compile | ||
with: | ||
model: ${{ matrix.model }} |
Oops, something went wrong.