-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fortran-lang:master' into intrinsics
- Loading branch information
Showing
103 changed files
with
562,598 additions
and
528,921 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 |
---|---|---|
|
@@ -25,17 +25,16 @@ jobs: | |
- {compiler: gcc, version: 11} | ||
- {compiler: gcc, version: 12} | ||
- {compiler: gcc, version: 13} | ||
- {compiler: intel, version: '2024.1'} | ||
- {compiler: intel-classic, version: '2021.9'} | ||
build: [cmake] | ||
- {compiler: intel, version: '2024.1'} | ||
build: [cmake] | ||
include: | ||
- os: ubuntu-22.04 | ||
build: cmake | ||
toolchain: {compiler: intel-classic, version: '2021.10'} | ||
- os: ubuntu-latest | ||
build: cmake-inline | ||
toolchain: | ||
- {compiler: gcc, version: 10} | ||
toolchain: {compiler: gcc, version: 10} | ||
exclude: | ||
- os: macos-13 | ||
toolchain: {compiler: intel-classic, version: '2021.9'} | ||
- os: macos-13 | ||
toolchain: {compiler: intel, version: '2024.1'} | ||
- os: macos-13 | ||
|
@@ -56,7 +55,7 @@ jobs: | |
run: pip install --upgrade fypp ninja | ||
|
||
- name: Setup Fortran compiler | ||
uses: fortran-lang/[email protected].1 | ||
uses: fortran-lang/[email protected].2 | ||
id: setup-fortran | ||
with: | ||
compiler: ${{ matrix.toolchain.compiler }} | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#### | ||
|
||
set(dir "${CMAKE_CURRENT_SOURCE_DIR}") | ||
|
||
list(APPEND fppFiles | ||
blas/stdlib_blas_constants.fypp | ||
) | ||
|
||
list(APPEND cppFiles | ||
blas/stdlib_blas.fypp | ||
blas/stdlib_blas_level1.fypp | ||
blas/stdlib_blas_level2_ban.fypp | ||
blas/stdlib_blas_level2_gen.fypp | ||
blas/stdlib_blas_level2_pac.fypp | ||
blas/stdlib_blas_level2_sym.fypp | ||
blas/stdlib_blas_level2_tri.fypp | ||
blas/stdlib_blas_level3_gen.fypp | ||
blas/stdlib_blas_level3_sym.fypp | ||
blas/stdlib_blas_level3_tri.fypp | ||
blas/stdlib_linalg_blas_aux.fypp | ||
) | ||
|
||
set(fppFiles "${fppFiles}" PARENT_SCOPE) | ||
set(cppFiles "${cppFiles}" PARENT_SCOPE) |
Oops, something went wrong.