Skip to content

Commit bc15466

Browse files
authored
Merge pull request #2804 from su2code/develop
Update master
2 parents 8f6da27 + 12eb826 commit bc15466

1,114 files changed

Lines changed: 11403 additions & 6707 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/regression.yml

Lines changed: 78 additions & 52 deletions
Large diffs are not rendered by default.

.github/workflows/release-management.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,30 +12,30 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
os_bin: [macos64, macos64-mpi, linux64, linux64-mpi, win64, win64-mpi]
15+
os_bin: [macos64, macos64-mpi, linux64-omp, linux64-mpi, win64-omp, win64-mpi]
1616
include:
17-
- os_bin: win64
18-
flags: '-Dwith-mpi=disabled --cross-file=/hostfiles/hostfile_windows'
17+
- os_bin: win64-omp
18+
flags: '-Dcpu-arch=haswell -Dwith-omp=true -Dwith-mpi=disabled --cross-file=/hostfiles/hostfile_windows'
1919
- os_bin: win64-mpi
20-
flags: '-Dcustom-mpi=true --cross-file=/hostfiles/hostfile_windows_mpi'
20+
flags: '-Dcpu-arch=haswell -Dcustom-mpi=true --cross-file=/hostfiles/hostfile_windows_mpi'
2121
- os_bin: macos64
22-
flags: '-Dwith-mpi=disabled --cross-file=/hostfiles/hostfile_darwin'
22+
flags: '-Dcpu-arch= -Dwith-mpi=disabled --cross-file=/hostfiles/hostfile_darwin'
2323
- os_bin: macos64-mpi
24-
flags: '-Dcustom-mpi=true --cross-file=/hostfiles/hostfile_darwin_mpi'
25-
- os_bin: linux64
26-
flags: '-Dwith-mpi=disabled -Dstatic-cgns-deps=true --cross-file=/hostfiles/hostfile_linux'
24+
flags: '-Dcpu-arch= -Dcustom-mpi=true --cross-file=/hostfiles/hostfile_darwin_mpi'
25+
- os_bin: linux64-omp
26+
flags: '-Dcpu-arch=haswell -Dwith-omp=true -Dwith-mpi=disabled -Dstatic-cgns-deps=true --cross-file=/hostfiles/hostfile_linux'
2727
- os_bin: linux64-mpi
28-
flags: '-Dcustom-mpi=true --cross-file=/hostfiles/hostfile_linux_mpi'
28+
flags: '-Dcpu-arch=haswell -Dcustom-mpi=true --cross-file=/hostfiles/hostfile_linux_mpi'
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Cache Object Files
32-
uses: actions/cache@v4
32+
uses: actions/cache@v5
3333
with:
3434
path: ccache
3535
key: ${{ matrix.os_bin }}-${{ github.sha }}
3636
restore-keys: ${{ matrix.os_bin }}
3737
- name: Build
38-
uses: docker://ghcr.io/su2code/su2/build-su2-cross:250717-1402
38+
uses: docker://ghcr.io/su2code/su2/build-su2-cross:260405-0054
3939
with:
4040
args: -b ${{ github.sha }} -f "${{matrix.flags}}"
4141
- name: Create Archive
@@ -44,7 +44,7 @@ jobs:
4444
zip -r ../${{matrix.os_bin}}.zip bin/*
4545
# Uploads binaries as artifacts (just as a backup)
4646
- name: Upload Binaries
47-
uses: actions/upload-artifact@v5
47+
uses: actions/upload-artifact@v7
4848
with:
4949
name: ${{matrix.os_bin}}
5050
path: ${{matrix.os_bin}}.zip

AUTHORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ Amit Sachdeva
5252
Ana Lourenco
5353
Andrew Burkett
5454
Andrew Wendorff
55+
Angelo Passariello
5556
Aniket C. Aranake
5657
Antonio Rubino
5758
Arne Bachmann

Common/include/CConfig.hpp

Lines changed: 109 additions & 61 deletions
Large diffs are not rendered by default.

Common/include/adt/CADTBaseClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* \file CADTBaseClass.hpp
33
* \brief Base class for storing an ADT in an arbitrary number of dimensions.
44
* \author E. van der Weide
5-
* \version 8.4.0 "Harrier"
5+
* \version 8.5.0 "Harrier"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*

Common/include/adt/CADTComparePointClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* \file CADTComparePointClass.hpp
33
* \brief subroutines for comparing two points in an alternating digital tree (ADT).
44
* \author E. van der Weide
5-
* \version 8.4.0 "Harrier"
5+
* \version 8.5.0 "Harrier"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*

Common/include/adt/CADTElemClass.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* \file CADTElemClass.hpp
33
* \brief Class for storing an ADT of (linear) elements in an arbitrary number of dimensions.
44
* \author E. van der Weide
5-
* \version 8.4.0 "Harrier"
5+
* \version 8.5.0 "Harrier"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*
@@ -36,7 +36,7 @@
3636
* \ingroup ADT
3737
* \brief Class for storing an ADT of (linear) elements in an arbitrary number of dimensions.
3838
* \author E. van der Weide
39-
* \version 8.4.0 "Harrier"
39+
* \version 8.5.0 "Harrier"
4040
*/
4141
class CADTElemClass : public CADTBaseClass {
4242
private:

Common/include/adt/CADTNodeClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* \file CADTNodeClass.hpp
33
* \brief Class for storing the information needed in a node of an ADT.
44
* \author E. van der Weide
5-
* \version 8.4.0 "Harrier"
5+
* \version 8.5.0 "Harrier"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*

Common/include/adt/CADTPointsOnlyClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* \file CADTPointsOnlyClass.hpp
33
* \brief Class for storing an ADT of only points in an arbitrary number of dimensions.
44
* \author E. van der Weide
5-
* \version 8.4.0 "Harrier"
5+
* \version 8.5.0 "Harrier"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*

Common/include/adt/CBBoxTargetClass.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* \brief Class for storing the information of a possible bounding box candidate
44
during a minimum distance search.
55
* \author E. van der Weide
6-
* \version 8.4.0 "Harrier"
6+
* \version 8.5.0 "Harrier"
77
*
88
* SU2 Project Website: https://su2code.github.io
99
*
@@ -35,7 +35,7 @@
3535
* \brief Class for storing the information of a possible bounding box candidate
3636
during a minimum distance search.
3737
* \author E. van der Weide
38-
* \version 8.4.0 "Harrier"
38+
* \version 8.5.0 "Harrier"
3939
*/
4040
struct CBBoxTargetClass {
4141
unsigned long boundingBoxID; /*!< \brief Corresponding bounding box ID. */

0 commit comments

Comments
 (0)