@@ -58,14 +58,14 @@ The installation can be verified with `pip3 freeze` after completion:
5858
5959``` bash
6060$ pip3 freeze | grep bobber
61- nvidia-bobber==6.1.1
61+ nvidia-bobber==6.2.0
6262```
6363
6464Bobber can also be verified by printing the usage statement:
6565
6666```
6767$ bobber --help
68- usage: Bobber Version: 6.1.1 [-h] command ...
68+ usage: Bobber Version: 6.2.0 [-h] command ...
6969
7070positional arguments:
7171 command
@@ -88,19 +88,19 @@ optional arguments:
8888 -h, --help show this help message and exit
8989```
9090
91- ### Installing the binary directly (optional)
91+ ### Installing the wheel directly (optional)
9292` nvidia-pyindex ` is updated monthly to include the latest version of all wheels.
9393In some scenarios, Bobber could be updated well before the next ` nvidia-pyindex `
9494release. To install the latest release directly, go to the
9595[ releases] ( https://github.com/NVIDIA/Bobber/releases ) page on the repository and
96- find the latest release. Look for the "Binary " section in the release notes and
96+ find the latest release. Look for the "Assets " section in the release notes and
9797copy the link to the latest wheel.
9898
99- Using ` pip3 ` , install the binary using the address from the previous step to all
99+ Using ` pip3 ` , install the wheel using the address from the previous step to all
100100remote machines which will be tested, for example:
101101
102102``` bash
103- pip3 install https://github.com/NVIDIA/Bobber/releases/download/v6.1.1 /nvidia_bobber-6.1.1 -py3-none-any.whl
103+ pip3 install https://github.com/NVIDIA/Bobber/releases/download/v6.2.0 /nvidia_bobber-6.2.0 -py3-none-any.whl
104104```
105105
106106## Build Bobber container (includes OSU Tests, NCCL Tests, fio, mdtest, DALI RN50 Pipeline, and the base NGC TensorFlow container)
@@ -113,14 +113,14 @@ tests, run the command on the node to be tested.
113113$ bobber build
114114Building a new image. This may take a while...
115115...
116- nvidia/bobber:6.1.1 successfully built
116+ nvidia/bobber:6.2.0 successfully built
117117```
118118
119119After building, verify the image is accessible in Docker:
120120
121121``` bash
122122$ docker images | grep nvidia/bobber
123- nvidia/bobber 6.1.1 c697a75ee482 36 minutes ago 12.4GB
123+ nvidia/bobber 6.2.0 c697a75ee482 36 minutes ago 12.4GB
124124```
125125
126126## Save container
@@ -135,10 +135,10 @@ If running on a single node, this step is not required.
135135
136136``` bash
137137$ bobber export
138- Exporting nvidia/bobber:6.1.1 to " nvidia_bobber_6.1.1 .tar" . This may take a while...
139- nvidia/bobber:6.1.1 saved to nvidia_bobber_6.1.1 .tar
138+ Exporting nvidia/bobber:6.2.0 to " nvidia_bobber_6.2.0 .tar" . This may take a while...
139+ nvidia/bobber:6.2.0 saved to nvidia_bobber_6.2.0 .tar
140140$ ls
141- nvidia_bobber_6.1.1 .tar
141+ nvidia_bobber_6.2.0 .tar
142142```
143143
144144## Copy container to other nodes
@@ -170,7 +170,7 @@ On all other nodes, load the copied Docker image.
170170``` bash
171171$ docker load < nvidia_bobber_{version}.tar
172172$ docker images | grep bobber
173- nvidia/bobber 6.1.1 c697a75ee482 36 minutes ago 12.4GB
173+ nvidia/bobber 6.2.0 c697a75ee482 36 minutes ago 12.4GB
174174```
175175
176176## Ensure shared filesystem is mounted, if necessary
0 commit comments