-
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.16.0: (202 commits) Update changelog Version 0.16.0 Fix failing tests introduced since commit 6060345 ATLAS-220 ATLAS_FINALISES_MPI environment variable ATLAS-219 Fix broken parallel interpolation from regular lonlat grids bug fix: number of levels needed min instead of max Fix compilation for travis clang build Fix compilation for travis clang build Fix compilation for travis clang build Provide Trans::listBackends( std::ostream& ) Fix compilation with GPU Cleanup interpolation method factories Cleanup TransFactory Add missing license headers ATLAS-218 Remove atlas_mpi_module ATLAS-217 Remove error handling Fix compilation reported by Nils on Summit with gnu 8.1 Be more explicit about which clang-format is used apply clang-format (5.0.1) Fix warnings ...
- Loading branch information
Showing
614 changed files
with
27,190 additions
and
18,823 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 |
---|---|---|
|
@@ -5,3 +5,6 @@ doc/html | |
doc/latex | ||
*.sublime-workspace | ||
.nfs* | ||
build/* | ||
install/* | ||
env.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
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,12 @@ | ||
Atlas | ||
===== | ||
|
||
[![atlas release version](https://img.shields.io/github/release/ecmwf/atlas.svg)](https://github.com/ecmwf/atlas/releases/latest) | ||
[![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 | ||
Project home: https://confluence.ecmwf.int/display/ATLAS | ||
Contact: Willem Deconinck ([email protected]) | ||
Publication: | ||
> [Deconinck et al, 2017](https://doi.org/10.1016/j.cpc.2017.07.006) --- | ||
|
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,15 +1,24 @@ | ||
# No module environment on the Mac | ||
[[ $(uname) == "Darwin" ]] && return | ||
# Initialise module environment if it is not | ||
#!/bin/bash | ||
|
||
if [[ $(uname) == "Darwin" ]]; then | ||
# Up to date CMake version required | ||
export PATH=${HOME}/Applications/CMake.app/Contents/bin:${PATH} | ||
# No module environment on the Mac | ||
return | ||
fi | ||
|
||
# initialise module environment if it is not | ||
if [[ ! $(command -v module > /dev/null 2>&1) ]]; then | ||
. /usr/local/apps/module/init/bash | ||
fi | ||
|
||
module unload grib_api | ||
module unload eccodes | ||
module unload emos | ||
module unload fftw | ||
module unload libemos | ||
module unload metview | ||
|
||
module switch gnu clang | ||
export FC=/usr/local/apps/gcc/6.3.0/bin/gfortran | ||
module load cmake/3.10.2 | ||
|
||
module switch gnu clang |
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,4 @@ | ||
file( GLOB_RECURSE bamboo_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*" ) | ||
|
||
ecbuild_add_resources( TARGET ${PROJECT_NAME}_bamboo | ||
SOURCES_DONT_PACK ${bamboo_files} ) |
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,17 @@ | ||
#!/bin/bash | ||
|
||
[[ $(uname) == "Darwin" ]] && return | ||
|
||
# initialise module environment if it is not | ||
if [[ ! $(command -v module > /dev/null 2>&1) ]]; then | ||
. /usr/local/apps/module/init/bash | ||
fi | ||
|
||
module unload grib_api | ||
module unload eccodes | ||
module unload emos | ||
module unload fftw | ||
module unload libemos | ||
module unload metview | ||
|
||
module load cmake/3.10.2 |
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,4 @@ | ||
#!/usr/bin/env bash | ||
|
||
# export ctest_parallel="no" | ||
|
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
4 changes: 2 additions & 2 deletions
4
doc/user-guide/core-functionalities/meshes/meshes-Structured.cc
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.