-
Notifications
You must be signed in to change notification settings - Fork 82
44 lines (38 loc) · 1.24 KB
/
pytorch_tests.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
name: PyTorch CI Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
branches: [main]
jobs:
PyTorch-Tests:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
# Runs a set of commands using the runners shell
- name: Install dependencies
shell: bash -l {0}
run: |
sudo apt-get update
sudo apt install -y python3-pip python3-dev
pip3 install torch torchvision --extra-index-url https://download.pytorch.org/whl/cpu
pip3 install -r requirements.txt --upgrade
pip3 install .
- name: Unit tests
shell: bash -l {0}
run: |
find tests -name '*.py' -exec python {} \;
- name: Training workloads
shell: bash -l {0}
run: |
./run --config=configs/MNIST/fedavg_lenet5.yml
./run --config=configs/MNIST/fedavg_cross_silo_lenet5.yml
./run --config=configs/MNIST/fedavg_async_lenet5.yml
./run --config=configs/MNIST/fedavg_lenet5_noniid.yml
./run --config=configs/MNIST/mistnet_lenet5.yml