-
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.
* release/0.23.0: (44 commits) Update CHANGELOG.md Fixes for Cray 8.5 Version 0.23.0 clang-format ATLAS-301 [sandbox] atlas-parallel-interpolation: add 'fixup' option ATLAS-301 [sandbox] atlas-parallel-interpolation: Use default meshgenerator specified by grid ATLAS-301 atlas-meshgen: --fixup option e.g for ORCA grid custom fixes ATLAS-301 Gmsh output only non-missing values ATLAS-301 Do not add INVALID elements to kdtree ATLAS-301 Add INVALID topology flag ATLAS-301 Use new eckit Plugin system, requires eckit 1.15.0 ATLAS-315 Normalise target grid longitudes to source grid in StructuredInterpolation2D ATLAS-318 cleanup ATLAS-318 Example use of sparse_matrix_multiply in test_interpolation_finite_element_cached to do the interpolation manually ATLAS-318 atlas::linalg::sparse_matrix_multiply to abstract different implementations ATLAS-321 Implement eckit::KDTree::size() useful to compute KDTree memory footprint() ATLAS-321 Interpolation IndexKDTreeCache and use it within GridBoxAverage ATLAS-321 Interpolation MatrixCache and use it with FiniteElement Avoid costly polygon tests in case mpi::size() == 1 ATLAS_TRACE_MEMORY=1 to enable logging of some memory usage, also requires ATLAS_TRACE=1 ...
- Loading branch information
Showing
116 changed files
with
4,174 additions
and
591 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
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.22.1 | ||
0.23.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,21 @@ | ||
### trans ... | ||
|
||
ecbuild_find_package( NAME transi VERSION 0.4.4 QUIET ) | ||
if( ENABLE_TRANS OR NOT DEFINED ENABLE_TRANS ) | ||
find_package( trans 47.2 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() | ||
else() | ||
find_package( transi 0.8 QUIET ) | ||
endif() | ||
endif() | ||
|
||
ecbuild_add_option( FEATURE TRANS | ||
DESCRIPTION "Support for spectral transforms" | ||
DESCRIPTION "Support for IFS spectral transforms" | ||
CONDITION transi_FOUND ) |
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,5 +1,5 @@ | ||
|
||
Usage: | ||
|
||
atlas_DIR=<path-to-install-or-build-tree> ./build_hello_world.sh | ||
atlas_ROOT=<path-to-install-or-build-tree> ./build_hello_world.sh | ||
|
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
2 changes: 1 addition & 1 deletion
2
doc/example-projects/project_hello_world_fortran/CMakeLists.txt
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
Oops, something went wrong.