-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/interpolation_comparisons
- Loading branch information
Showing
151 changed files
with
8,974 additions
and
1,212 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,22 +1,27 @@ | ||
build: | ||
modules: | ||
- ecbuild | ||
- ninja | ||
modules_package: | ||
- atlas:fftw,eigen | ||
dependencies: | ||
- ecmwf/eckit@develop | ||
parallel: 64 | ||
matrix: | ||
- mpi_on | ||
- mpi_off | ||
|
||
nvidia-22.11: | ||
mpi_on: | ||
build: | ||
modules: | ||
- ecbuild | ||
- ninja | ||
modules_package: | ||
- atlas:fftw,eigen/3.4.0 | ||
- atlas:fftw,eigen,openmpi | ||
- eckit:openmpi | ||
dependencies: | ||
- ecmwf/ecbuild@develop | ||
- ecmwf/eckit@develop | ||
parallel: 64 | ||
ntasks: 16 | ||
|
||
mpi_off: | ||
build: | ||
modules: | ||
- ninja | ||
modules_package: | ||
- atlas:fftw,eigen | ||
dependencies: | ||
- ecmwf/ecbuild@develop | ||
- ecmwf/eckit@develop | ||
parallel: 64 | ||
env: | ||
- ATLAS_FPE=0 |
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,11 @@ | ||
name: cd | ||
|
||
on: | ||
push: | ||
tags: | ||
- '**' | ||
|
||
jobs: | ||
deploy: | ||
uses: ecmwf-actions/reusable-workflows/.github/workflows/create-package.yml@v2 | ||
secrets: inherit |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1 +1 @@ | ||
0.33.0 | ||
0.34.0 |
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,35 @@ | ||
if( atlas_HAVE_ATLAS_TRANS ) | ||
|
||
### trans ... | ||
|
||
if( NOT DEFINED ENABLE_ECTRANS AND DEFINED ENABLE_TRANS ) | ||
ecbuild_warn("Atlas option ENABLE_TRANS is deprecated in favour of ENABLE_ECTRANS") | ||
set( ENABLE_ECTRANS ${ENABLE_TRANS} ) | ||
endif() | ||
if( NOT DEFINED ATLAS_ENABLE_ECTRANS AND DEFINED ATLAS_ENABLE_TRANS ) | ||
ecbuild_warn("Atlas option ATLAS_ENABLE_TRANS is deprecated in favour of ATLAS_ENABLE_ECTRANS") | ||
set( ATLAS_ENABLE_TRANS ${ENABLE_TRANS} ) | ||
endif() | ||
|
||
set( atlas_HAVE_PACKAGE_ECTRANS 0 ) | ||
if( atlas_HAVE_ATLAS_FUNCTIONSPACE AND (ENABLE_ECTRANS OR NOT DEFINED ENABLE_ECTRANS) ) | ||
find_package( ectrans 1.1 COMPONENTS transi double QUIET ) | ||
if( TARGET transi_dp ) | ||
set( transi_FOUND TRUE ) | ||
if( NOT TARGET transi ) | ||
get_target_property( transi_dp_IMPORTED transi_dp IMPORTED ) | ||
if( transi_dp_IMPORTED ) | ||
set_target_properties( transi_dp PROPERTIES IMPORTED_GLOBAL TRUE) # required for aliasing imports | ||
endif() | ||
add_library( transi ALIAS transi_dp ) | ||
endif() | ||
set( atlas_HAVE_PACKAGE_ECTRANS 1 ) | ||
else() | ||
find_package( transi 0.8 QUIET ) | ||
endif() | ||
endif() | ||
ecbuild_add_option( FEATURE ECTRANS | ||
DESCRIPTION "Support for IFS spectral transforms" | ||
CONDITION atlas_HAVE_ATLAS_FUNCTIONSPACE AND transi_FOUND ) | ||
|
||
endif() |
Oops, something went wrong.