Skip to content

Commit 06219bc

Browse files
committed
Merge branch 'AddLicense' into 'master'
Added LLNL open source license and auspices statement See merge request ExaAM/exaca!49 Former-commit-id: 7221177e03684dc8be81f367108e1faf9fcdcb4d
2 parents 76cd36e + 9eff9fa commit 06219bc

18 files changed

+138
-2
lines changed

CONTRIBUTING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Contributing
2+
3+
When contributing to ExaCA, please first discuss the changes you wish to make via issue (or directly with the ExaCA developers).
4+
Changes should be made through opening a pull request with `master` as the destination branch.
5+
Coding style from .clang-format and review from at least one ExaCA developer are required.
6+
7+
ExaCA is distributed under the terms of the MIT license. All new contributions must be made under this license.

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
MIT License
2+
3+
Copyright (c) 2021, Lawrence Livermore National Security, LLC
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+

NOTICE

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
This work was produced under the auspices of the U.S. Department of
2+
Energy by Lawrence Livermore National Laboratory under Contract
3+
DE-AC52-07NA27344 and supported in part by the Exascale Computing Project
4+
(17-SC-20-SC), a collaborative effort of the U.S. DOE Office of Science
5+
and the NNSA.
6+
7+
This work was prepared as an account of work sponsored by an agency of
8+
the United States Government. Neither the United States Government nor
9+
Lawrence Livermore National Security, LLC, nor any of their employees
10+
makes any warranty, expressed or implied, or assumes any legal liability
11+
or responsibility for the accuracy, completeness, or usefulness of any
12+
information, apparatus, product, or process disclosed, or represents that
13+
its use would not infringe privately owned rights.
14+
15+
Reference herein to any specific commercial product, process, or service
16+
by trade name, trademark, manufacturer, or otherwise does not necessarily
17+
constitute or imply its endorsement, recommendation, or favoring by the
18+
United States Government or Lawrence Livermore National Security, LLC.
19+
20+
The views and opinions of authors expressed herein do not necessarily
21+
state or reflect those of the United States Government or Lawrence
22+
Livermore National Security, LLC, and shall not be used for advertising
23+
or product endorsement purposes.

README.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# ExaCA-Kokkos
1+
# ExaCA
2+
## An exascale-capable cellular automaton for nucleation and grain growth
23
ExaCA is a cellular automata (CA) code for grain growth under additive
34
manufacturing conditions by ExaAM within the Exascale Computing Project.
45

@@ -108,7 +109,7 @@ cd ../..
108109

109110
## Run
110111

111-
ExaCA-Kokkos runs using an input file, passed on the command line. Three examples problems are given in the `examples/` directory:
112+
ExaCA-Kokkos runs using an input file, passed on the command line. Example problems are provided in the `examples/` directory:
112113

113114
* `Inp_AMBenchMultilayer.txt` simulates 4 layers of a representative even-odd layer alternating scan pattern for AM builds
114115
* `Inp_SimpleRaster.txt` simulates a single layer consisting of four overlapping melt pools
@@ -119,3 +120,16 @@ Run by calling the created executable from the ExaCA root directory:
119120
```
120121
mpiexec -n 1 ./build/install/bin/ExaCA-Kokkos examples/Inp_DirSolidification.txt
121122
```
123+
124+
## Contributing
125+
126+
We encourage you to contribute to ExaCA! Please check the
127+
[contribution guidelines](CONTRIBUTING.md).
128+
129+
## License
130+
131+
ExaCA is distributed under an [MIT license](LICENSE).
132+
133+
## Release
134+
135+
LLNL-CODE-821827

src/CAfunctions.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright 2021 Lawrence Livermore National Security, LLC and other ExaCA Project Developers.
2+
// See the top-level LICENSE file for details.
3+
//
4+
// SPDX-License-Identifier: MIT
5+
16
#include "CAfunctions.hpp"
27

38
#include "mpi.h"

src/CAfunctions.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright 2021 Lawrence Livermore National Security, LLC and other ExaCA Project Developers.
2+
// See the top-level LICENSE file for details.
3+
//
4+
// SPDX-License-Identifier: MIT
5+
16
#ifndef EXACA_FUNCTIONS_HPP
27
#define EXACA_FUNCTIONS_HPP
38

src/CAghostnodes.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright 2021 Lawrence Livermore National Security, LLC and other ExaCA Project Developers.
2+
// See the top-level LICENSE file for details.
3+
//
4+
// SPDX-License-Identifier: MIT
5+
16
#include "CAghostnodes.hpp"
27

38
#include "mpi.h"

src/CAghostnodes.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright 2021 Lawrence Livermore National Security, LLC and other ExaCA Project Developers.
2+
// See the top-level LICENSE file for details.
3+
//
4+
// SPDX-License-Identifier: MIT
5+
16
#ifndef EXACA_GHOST_HPP
27
#define EXACA_GHOST_HPP
38

src/CAinitialize.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright 2021 Lawrence Livermore National Security, LLC and other ExaCA Project Developers.
2+
// See the top-level LICENSE file for details.
3+
//
4+
// SPDX-License-Identifier: MIT
5+
16
#include "CAinitialize.hpp"
27

38
#include "CAfunctions.hpp"

src/CAinitialize.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright 2021 Lawrence Livermore National Security, LLC and other ExaCA Project Developers.
2+
// See the top-level LICENSE file for details.
3+
//
4+
// SPDX-License-Identifier: MIT
5+
16
#ifndef EXACA_INIT_HPP
27
#define EXACA_INIT_HPP
38

0 commit comments

Comments
 (0)