You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cczoo/horizontal_fl/README.md
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -83,13 +83,13 @@ Recommendation System and Image Classification.
83
83
84
84
```shell
85
85
cd<horizontal_fl dir>
86
-
sudo ./setup_azure_vm.sh
86
+
./setup_azure_vm.sh
87
87
```
88
88
89
89
After Intel SGX DCAP is setup, verify the Intel Architectural Enclave Service Manager is active (running)::
90
90
91
91
```shell
92
-
sudo systemctl status aesmd
92
+
systemctl status aesmd
93
93
```
94
94
95
95
- EPC size: 64GB for image classification solution, 256GB for recommendation system solution
@@ -141,26 +141,31 @@ If running locally, please fill in the local PCCS server address in `<PCCS ip ad
141
141
142
142
```shell
143
143
./start_container.sh ps0 <PCCS ip addr><ubuntu/anolisos>
144
+
docker exec -it ps0 bash
144
145
cd recommendation_system
145
146
test-sgx.sh ps0
146
147
```
147
148
```shell
148
149
./start_container.sh worker0 <PCCS ip addr><ubuntu/anolisos>
150
+
docker exec -it worker0 bash
149
151
cd recommendation_system
150
152
test-sgx.sh worker0
151
153
```
152
154
```shell
153
155
./start_container.sh worker1 <PCCS ip addr><ubuntu/anolisos>
156
+
docker exec -it worker1 bash
154
157
cd recommendation_system
155
158
test-sgx.sh worker1
156
159
```
157
160
```shell
158
161
./start_container.sh worker2 <PCCS ip addr><ubuntu/anolisos>
162
+
docker exec -it worker2 bash
159
163
cd recommendation_system
160
164
test-sgx.sh worker2
161
165
```
162
166
```shell
163
167
./start_container.sh worker3 <PCCS ip addr><ubuntu/anolisos>
168
+
docker exec -it worker3 bash
164
169
cd recommendation_system
165
170
test-sgx.sh worker3
166
171
```
@@ -200,16 +205,19 @@ Start three containers (ps0, worker0, worker1) and run the script for the corres
200
205
If running locally, please fill in the local PCCS server address in `<PCCS ip addr>`. If running in the cloud (except for Microsoft Azure), please modify the `PCCS server address` in the `sgx_default_qcnl.conf` file and fill in the PCCS address of the cloud and ignore the `<PCCS ip addr>` parameter.
201
206
```shell
202
207
./start_container.sh ps0 <PCCS ip addr> latest <ubuntu/anolisos>
208
+
docker exec -it ps0 bash
203
209
cd image_classification
204
210
test-sgx.sh ps0
205
211
```
206
212
```shell
207
213
./start_container.sh worker0 <PCCS ip addr> latest <ubuntu/anolisos>
214
+
docker exec -it worker0 bash
208
215
cd image_classification
209
216
test-sgx.sh worker0
210
217
```
211
218
```shell
212
219
./start_container.sh worker1 <PCCS ip addr> latest <ubuntu/anolisos>
0 commit comments