-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f8dfce
commit ed79780
Showing
59 changed files
with
162 additions
and
106 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,36 @@ | ||
# This workflow will upload a Python Package using Twine when a release is created | ||
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | ||
|
||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
name: Upload Python Package | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
deploy: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.x' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install build | ||
- name: Build package | ||
run: python -m build | ||
- name: Publish package | ||
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} |
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,12 @@ | ||
name: Merlin | ||
|
||
icon: https://raw.githubusercontent.com/LLNL/merlin/main/docs/images/merlin_icon.png | ||
|
||
headline: Enabling Machine Learning HPC Workflows | ||
|
||
description: The Merlin workflow framework targets large-scale scientific machine learning (ML) workflows in High Performance Computing (HPC) environments. Merlin is a producer-consumer workflow model that enables multi-machine, cross-batch job, dynamically allocated yet persistent workflows capable of utilizing surge-compute resources. Key features are a flexible and intuitive HPC-centric interface, low per-task overhead, multi-tiered fault recovery, and a hierarchical sampling algorithm that allows for highly scalable task execution and queuing to ensembles of millions of tasks. | ||
|
||
documentation: | ||
general: https://merlin.readthedocs.io/ | ||
installation: https://merlin.readthedocs.io/en/latest/modules/installation/installation.html | ||
tutorial: https://merlin.readthedocs.io/en/latest/tutorial.html |
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,12 +1,12 @@ | ||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
@@ -191,7 +191,7 @@ reqlist: | |
|
||
|
||
release: | ||
$(PYTHON) setup.py sdist bdist_wheel | ||
$(PYTHON) -m build . | ||
|
||
|
||
clean-release: | ||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,12 +1,12 @@ | ||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
@@ -38,7 +38,7 @@ | |
import sys | ||
|
||
|
||
__version__ = "1.8.3" | ||
__version__ = "1.8.4" | ||
VERSION = __version__ | ||
PATH_TO_PROJ = os.path.join(os.path.dirname(__file__), "") | ||
|
||
|
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,12 +1,12 @@ | ||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
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,12 +1,12 @@ | ||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
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,12 +1,12 @@ | ||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
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,12 +1,12 @@ | ||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
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,12 +1,12 @@ | ||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
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,14 +1,14 @@ | ||
#!/usr/bin/env python | ||
|
||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
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,14 +1,14 @@ | ||
#!/usr/bin/env python | ||
|
||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
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,12 +1,12 @@ | ||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
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,12 +1,12 @@ | ||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
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,12 +1,12 @@ | ||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
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,12 +1,12 @@ | ||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
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,12 +1,12 @@ | ||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
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,12 +1,12 @@ | ||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
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,12 +1,12 @@ | ||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
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,12 +1,12 @@ | ||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
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,12 +1,12 @@ | ||
############################################################################### | ||
# Copyright (c) 2019, Lawrence Livermore National Security, LLC. | ||
# Copyright (c) 2022, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Written by the Merlin dev team, listed in the CONTRIBUTORS file. | ||
# <[email protected]> | ||
# | ||
# LLNL-CODE-797170 | ||
# All rights reserved. | ||
# This file is part of Merlin, Version: 1.8.3. | ||
# This file is part of Merlin, Version: 1.8.4. | ||
# | ||
# For details, see https://github.com/LLNL/merlin. | ||
# | ||
|
Oops, something went wrong.