-
-
Notifications
You must be signed in to change notification settings - Fork 787
119 lines (107 loc) · 3.75 KB
/
smoke_test_simulation_mpi_linux.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# This is a basic workflow to help you get started with Actions
name: MPI - On Linux
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
schedule:
# Nightly build at 12:12 A.M.
- cron: "12 12 */1 * *"
pull_request:
branches: [ master, test/v0.7.0 ]
workflow_run:
workflows: [ CROSS-DEVICE-MNN-Linux ]
types:
- completed
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# https://github.com/mpi4py/mpi4py/actions/runs/34979774/workflow
mpi_run:
runs-on: [self-hosted, Linux]
timeout-minutes: 15
# defaults:
# run:
# shell: bash
# working-directory: python
strategy:
matrix:
python-version: [3.8]
mpi: [mpich]
# mpi: [mpich, openmpi]
os: [ ubuntu-latest ]
include:
- os: ubuntu-latest
mpi: mpich
install-mpi: |
sudo apt-get update
sudo apt install -y mpich libmpich-dev
# - os: ubuntu-latest
# mpi: openmpi
# install-mpi: sudo apt install -y openmpi-bin libopenmpi-dev
steps:
- name: Extract branch name
shell: bash
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >>$GITHUB_OUTPUT
id: extract_branch
- id: fedml_source_code_home
name: cd to master or dev branch and git pull
shell: bash
run: |
ls
echo ${{ steps.extract_branch.outputs.branch }}
if [[ ${{ steps.extract_branch.outputs.branch }} == "master" ]]; then
echo "running on master"
path=/home/actions-runner/fedml-master
cd $path
echo "dir=$path" >> $GITHUB_OUTPUT
else
echo "running on dev"
path=/home/actions-runner/fedml-dev
cd $path
echo "dir=$path" >> $GITHUB_OUTPUT
fi
- name: sync git repo to local pip
working-directory: ${{ steps.fedml_source_code_home.outputs.dir }}
run: |
homepath=${{ format('{0}', steps.fedml_source_code_home.outputs.dir) }}
echo $Homepath
cd $homepath
bash ./devops/scripts/sync-fedml-pip.sh
- name: Test package - FedAvg
working-directory: ${{ steps.fedml_source_code_home.outputs.dir }}
run: |
pwd
cd python
cd examples/simulation/mpi_torch_fedavg_mnist_lr_example
sh run_custom_data_and_model_example.sh 4
- name: Test package - Base
working-directory: ${{ steps.fedml_source_code_home.outputs.dir }}
run: |
cd python
cd examples/simulation/mpi_base_framework_example
sh run.sh 4
- name: Test package - Decentralized
working-directory: ${{ steps.fedml_source_code_home.outputs.dir }}
run: |
cd python
cd examples/simulation/mpi_decentralized_fl_example
sh run.sh 4
- name: Test package - FedOPT
working-directory: ${{ steps.fedml_source_code_home.outputs.dir }}
run: |
cd python
cd examples/simulation/mpi_fedopt_datasets_and_models_example
sh run_step_by_step_example.sh 4 config/mnist_lr/fedml_config.yaml
- name: Test package - FedProx
working-directory: ${{ steps.fedml_source_code_home.outputs.dir }}
run: |
cd python
cd examples/simulation/mpi_fedprox_datasets_and_models_example
sh run_step_by_step_example.sh 4 config/mnist_lr/fedml_config.yaml
- name: Test package - FedGAN
working-directory: ${{ steps.fedml_source_code_home.outputs.dir }}
run: |
cd python
cd examples/simulation/mpi_torch_fedgan_mnist_gan_example
sh run_step_by_step_example.sh 4