-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add example config and template test config (#13)
Add prerequisites configuration files Add command line interface local, report, test groups Add integration tests for local multiprocess mode Add gRPC arbiter Add tests and configs CLI Local and distributed launch Add docstings, add metrics to Prometheus Add distributed experiment example Add README.md and docs Add tox, liner, code formatter, type checker Add loop to member, change communicator interface Make batcher available for members Fix grpc based communicator according to changed interfaces Fix PartyMaster/MemberImpl and launch Fix local communicator interfaces Co-authored-by: zakharova-anastasiia <nastyazakharova.nz@gmail.com>
- Loading branch information
1 parent
9d50422
commit f30c879
Showing
45 changed files
with
2,224 additions
and
1,961 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,27 @@ | ||
name: CI pipeline | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
run-tests: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ['3.9', '3.10', '3.11'] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install tox tox-gh-actions | ||
- name: Test with tox | ||
run: tox |
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,34 @@ | ||
{ | ||
"site_package_search_strategy": "pep561", | ||
"source_directories": [ | ||
"./stalactite" | ||
], | ||
"ignore_all_errors": [ | ||
".*/generated_code/.*" | ||
], | ||
"search_path": [ | ||
".", | ||
{ | ||
"site-package": "tenseal" | ||
}, | ||
{ | ||
"site-package": "grpc" | ||
}, | ||
{ | ||
"site-package": "mlflow" | ||
}, | ||
{ | ||
"site-package": "sklearn" | ||
}, | ||
{ | ||
"site-package": "docker" | ||
}, | ||
{ | ||
"site-package": "scipy" | ||
}, | ||
{ | ||
"site-package": "datasets" | ||
} | ||
] | ||
} | ||
|
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.