-
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.15.0: (123 commits) Disable PGI build from travis ci Print more configuration information Reduce test times Remove warnings related to unreachable statements detected by PGI compiler Fix various warnings shown by pgi/18.4 -- still failing tests for pgi Version 0.15.0 Fix a wrong template type Apply clang-format ATLAS-165 Fix intents in Fortran functions ATLAS-164 Array uses raw C pointer rather than std::vector and is initialised with signaling_NaN for debug builds ATLAS-163 Recompute weights on edges ATLAS-163 Introduce bit reproducibility for parallel interpolation for coinciding meshes ATLAS-163 Introduce bit reproducibility for parallel interpolation merging spectral U and V before the transform is now the default added option to merge U,V,scalars before transform with old vd2uv; this should be faster because the size of the dgemm calls is bigger work in progress: merging all spectral data into one array with vdoption Avoid inclusion of fftw3.h in TransLocal.h some clean-up. Unstructured grids are currently not working (ATLAS-162) fixed vd2uv for reduced grids and improved its performance by moving loop over wavenumbers inside vd2uv some cleanup ...
- Loading branch information
Showing
147 changed files
with
4,454 additions
and
1,453 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
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ Atlas | |
|
||
[![travis master](https://img.shields.io/travis/ecmwf/atlas/master.svg?label=master&logo=travis)](http://travis-ci.org/ecmwf/atlas "master") | ||
[![travis develop](https://img.shields.io/travis/ecmwf/atlas/develop.svg?label=develop&logo=travis)](http://travis-ci.org/ecmwf/atlas "develop") | ||
[![codecov](https://codecov.io/gh/ecmwf/atlas/branch/develop/graph/badge.svg)](https://codecov.io/gh/ecmwf/atlas) | ||
|
||
Project home: https://software.ecmwf.int/wiki/display/ATLAS | ||
Contact: Willem Deconinck ([email protected]) | ||
|
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,11 +1,16 @@ | ||
# Initialise module environment if it is not | ||
#!/bin/bash | ||
|
||
# initialise module environment if it is not | ||
if [[ ! $(command -v module > /dev/null 2>&1) ]]; then | ||
. /usr/local/apps/module/init/bash | ||
fi | ||
# unload modules not available for intel | ||
|
||
module unload grib_api | ||
module unload eccodes | ||
module unload emos | ||
module unload fftw | ||
module unload libemos | ||
|
||
module switch gnu intel/16.0.3 | ||
module load cmake/3.10.2 | ||
|
||
module switch gnu intel/16.0.3 |
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.