Skip to content

Commit

Permalink
docs: Fix file seperators and add clarifying details (#257)
Browse files Browse the repository at this point in the history
Fixes backslashes to forward slashes per unix convention for file
path seperation and adds clarification that "parameter server"
corresponds to `ps0`.
  • Loading branch information
elliotxjones authored Nov 15, 2023
1 parent d626e1e commit a764fbd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions documents/readthedoc/docs/source/Solutions/tdx-hfl/tdx-hfl.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export VIRTUAL_FS=/root/vfs
./create_encrypted_vfs.sh ${VIRTUAL_FS}
```

Replace `<loop device>` with the loop device name provided by `create_encrypted_vfs.sh` (for example, `\dev\loop0`).
Replace `<loop device>` with the loop device name provided by `create_encrypted_vfs.sh` (for example, `/dev/loop0`).
Replace `<role>` with the role of the container (either `ps0`, `worker0`, or `worker1`).

```bash
Expand All @@ -208,7 +208,7 @@ Format the block device as ext4. Enter the passphrase when prompted to decrypt t
./mount_encrypted_vfs.sh ${LOOP_DEVICE} format ${ROLE}
```

Mount the encrypted volume. Enter the passphrase from earlier when prompted.
Remount the encrypted volume. Enter the passphrase from earlier when prompted.

```bash
./unmount_encrypted_vfs.sh ${ROLE}
Expand All @@ -219,7 +219,7 @@ Mount the encrypted volume. Enter the passphrase from earlier when prompted.

Run the training script from each container.

From the parameter server container:
From the parameter server (`ps0`) container:

```bash
cd /hfl-tensorflow
Expand Down

0 comments on commit a764fbd

Please sign in to comment.