From 153219ca2024ea710820f5f3b636f2bab860c955 Mon Sep 17 00:00:00 2001 From: Gregor von Laszewski Date: Fri, 31 Mar 2023 11:38:46 -0400 Subject: [PATCH 01/18] Update README.md --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index 13846dbb..12a7dca0 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,25 @@ Jacques Fleischer $^*$ Corresponding author +## Citation + + +``` +@misc{las-2022-hybrid-cc, + title = {Hybrid Reusable Computational Analytics Workflow + Management with Cloudmesh}, + author = {Gregor von Laszewski and J. P. Fleischer and + Geoffrey C. Fox}, + year = 2022, + eprint = {2210.16941}, + archivePrefix ={arXiv}, + primaryClass = {cs.DC}, + url = {https://arxiv.org/pdf/2210.16941}, + urlOPT = + {https://github.com/cyberaide/paper-cloudmesh-cc/raw/main/vonLaszewski-cloudmesh-cc.pdf} +} +``` + ## Background From 6107460d9f1ab82aca0b56700b22474e4efc9515 Mon Sep 17 00:00:00 2001 From: Gregor von Laszewski Date: Fri, 31 Mar 2023 11:39:20 -0400 Subject: [PATCH 02/18] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 12a7dca0..19511dd6 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,8 @@ $^*$ Corresponding author ## Citation - +* +* ``` @misc{las-2022-hybrid-cc, title = {Hybrid Reusable Computational Analytics Workflow From 31639d195f727bee62aff6b6fd76cccea4d0aa4d Mon Sep 17 00:00:00 2001 From: Gregor von Laszewski Date: Fri, 31 Mar 2023 11:39:32 -0400 Subject: [PATCH 03/18] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 19511dd6..ffd7d3c3 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ $^*$ Corresponding author ## Citation * -* + ``` @misc{las-2022-hybrid-cc, title = {Hybrid Reusable Computational Analytics Workflow From 5987be18ef731d1423bc30aae6e7541e09dc9ac8 Mon Sep 17 00:00:00 2001 From: Gregor von Laszewski Date: Fri, 31 Mar 2023 11:40:04 -0400 Subject: [PATCH 04/18] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ffd7d3c3..67fe88f8 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,8 @@ $^*$ Corresponding author ## Citation -* +* +* ``` @misc{las-2022-hybrid-cc, From adb7dfd0858195ac18919e7d1169d9e66531c801 Mon Sep 17 00:00:00 2001 From: "J.P" <70083705+stapmoshun@users.noreply.github.com> Date: Fri, 7 Jul 2023 09:41:24 -0400 Subject: [PATCH 05/18] fix documentation and deprecated post method --- cloudmesh/cc/service/service.py | 4 ++-- docs/source/cloudmask.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cloudmesh/cc/service/service.py b/cloudmesh/cc/service/service.py index 5a5b1f30..341ed2b2 100644 --- a/cloudmesh/cc/service/service.py +++ b/cloudmesh/cc/service/service.py @@ -899,8 +899,8 @@ def list_workflows(output: str = None): # 4.2 they are uncompressed just as if they were to do an individual upload. # name is optional because the name is determined on what is provided @app.post("/workflow", include_in_schema=include_portal_tag_in_schema) -@app.post("/workflow/{workflow_name}", - tags=['workflow']) +# @app.post("/workflow/{workflow_name}", +# tags=['workflow']) @app.post("/workflow/upload", include_in_schema=include_portal_tag_in_schema) def upload_workflow(directory: str = Query(None, description='path to workflow dir ' diff --git a/docs/source/cloudmask.md b/docs/source/cloudmask.md index 7288692d..5c3e14c8 100644 --- a/docs/source/cloudmask.md +++ b/docs/source/cloudmask.md @@ -35,7 +35,7 @@ and run the workflow: me@mycomputer $ cd ~/cm me@mycomputer $ git clone --config core.autocrlf=false https://github.com/laszewsk/mlcommons.git me@mycomputer $ cd mlcommons -me@mycomputer $ pytest -v -x --capture=no benchmarks/cloudmask/target/rivanna/run_cloudmask_workflow.py +me@mycomputer $ pytest -v -x --capture=no benchmarks/cloudmask/target/rivanna-cloudmesh-cc/rivanna/run_cloudmask_workflow.py ``` The workflow iterates through the five GPUs available From 3cd019c9cbe5295da6e835b6b7e0a354b4b3772b Mon Sep 17 00:00:00 2001 From: "J.P" <70083705+stapmoshun@users.noreply.github.com> Date: Sat, 8 Jul 2023 01:11:00 -0400 Subject: [PATCH 06/18] upgrade to bootstrap 5 --- cloudmesh/cc/service/templates/base.html | 5 +- .../cc/service/templates/include/sidebar.html | 33 +++- cloudmesh/cc/service/templates/watcher.html | 186 ++++++++++-------- .../cc/service/templates/workflow-table.html | 133 +++++++------ 4 files changed, 210 insertions(+), 147 deletions(-) diff --git a/cloudmesh/cc/service/templates/base.html b/cloudmesh/cc/service/templates/base.html index 309ad72a..3ce6afba 100644 --- a/cloudmesh/cc/service/templates/base.html +++ b/cloudmesh/cc/service/templates/base.html @@ -13,8 +13,9 @@ - + + + diff --git a/cloudmesh/cc/service/templates/include/sidebar.html b/cloudmesh/cc/service/templates/include/sidebar.html index 1bca3b46..24030223 100644 --- a/cloudmesh/cc/service/templates/include/sidebar.html +++ b/cloudmesh/cc/service/templates/include/sidebar.html @@ -1,17 +1,34 @@ - + +