-
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.34.0: (78 commits) Version 0.34.0 Fix global indexing for meshes from structured grids with pole patch Fix cells().global_index() metadata for RegularLonLat grids in StructuredMeshGenerator BuildHalo: mark interior added cells as ghost Add example-plugin in doc Introduce colon-separated environment variable ATLAS_PLUGIN_PATH to simplify plugin detection Interpolate from cubedsphere mesh to structured columns (#146) Fix FieldSet::field(std::string) when field has been renamed (fixes #147) Further separate compilation features Field with functionspace optional Introduce features to disable compilation of structural components Remove interdependencies between structural components CMake cleanup Move files to correct places Introduce atlas::mdspan, contributed from github.com/kokkos/mdspan Disable GHA "nvhpc-22.11" as there are random compilation errors, probably related to insufficient disk or memory space atlas_io: fix test command in standalone build Fix and test some use cases with / without calling atlas::initialise() Access to atlas::Library::dataPath without initialising Enable latitude normalisation in KDTree coordinate transform (#140) ...
- Loading branch information
Showing
187 changed files
with
13,073 additions
and
2,397 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
dependencies: | | ||
ecmwf/ecbuild | ||
ecmwf/eckit | ||
dependency_branch: develop | ||
parallelism_factor: 8 |
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,27 @@ | ||
matrix: | ||
- mpi_on | ||
- mpi_off | ||
|
||
mpi_on: | ||
build: | ||
modules: | ||
- ninja | ||
modules_package: | ||
- 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 |
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: Check VERSION file | ||
|
||
on: | ||
push: | ||
branches: | ||
- "release/**" | ||
- "hotfix/**" | ||
|
||
jobs: | ||
check_version: | ||
uses: ecmwf-actions/reusable-workflows/.github/workflows/check-release-version.yml@v2 |
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 |
---|---|---|
@@ -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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,8 @@ | |
|
||
#pragma once | ||
|
||
#include <cstdint> | ||
|
||
#include "eckit/io/Buffer.h" | ||
|
||
namespace atlas { | ||
|
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.