Skip to content

Commit 39435ee

Browse files
authored
Merge pull request #83 from NVIDIA/update-version
Release version 6.3.1
2 parents 0d2808e + 266c91e commit 39435ee

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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.3.0
61+
nvidia-bobber==6.3.1
6262
```
6363

6464
Bobber can also be verified by printing the usage statement:
6565

6666
```
6767
$ bobber --help
68-
usage: Bobber Version: 6.3.0 [-h] command ...
68+
usage: Bobber Version: 6.3.1 [-h] command ...
6969
7070
positional arguments:
7171
command
@@ -100,7 +100,7 @@ Using `pip3`, install the wheel using the address from the previous step to all
100100
remote machines which will be tested, for example:
101101

102102
```bash
103-
pip3 install https://github.com/NVIDIA/Bobber/releases/download/v6.3.0/nvidia_bobber-6.3.0-py3-none-any.whl
103+
pip3 install https://github.com/NVIDIA/Bobber/releases/download/v6.3.1/nvidia_bobber-6.3.1-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)
@@ -120,7 +120,7 @@ After building, verify the image is accessible in Docker:
120120

121121
```bash
122122
$ docker images | grep nvidia/bobber
123-
nvidia/bobber 6.3.0 8e545fee7a4d 10 minutes ago 5.23GB
123+
nvidia/bobber 6.3.1 a467a25ff008 10 minutes ago 5.23GB
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.3.0 to "nvidia_bobber_6.3.0.tar". This may take a while...
139-
nvidia/bobber:6.3.0 saved to nvidia_bobber_6.3.0.tar
138+
Exporting nvidia/bobber:6.3.1 to "nvidia_bobber_6.3.1.tar". This may take a while...
139+
nvidia/bobber:6.3.1 saved to nvidia_bobber_6.3.1.tar
140140
$ ls
141-
nvidia_bobber_6.3.0.tar
141+
nvidia_bobber_6.3.1.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.3.0 8e545fee7a4d 10 minutes ago 5.23GB
173+
nvidia/bobber 6.3.1 a467a25ff008 10 minutes ago 5.23GB
174174
```
175175

176176
## Ensure shared filesystem is mounted, if necessary

bobber/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# SPDX-License-Identifier: MIT
2-
__version__ = '6.3.0'
2+
__version__ = '6.3.1'

bobber/lib/analysis/common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def num_systems(log: str) -> int:
4242
def _bobber_version(log: str) -> str:
4343
"""
4444
Returns a ``string`` representation of the Bobber version tested, such as
45-
'6.3.0'.
45+
'6.3.1'.
4646
4747
Parameters
4848
----------
@@ -52,7 +52,7 @@ def _bobber_version(log: str) -> str:
5252
Returns
5353
-------
5454
str
55-
Returns a ``string`` of the Bobber version tested, such as '6.3.0'.
55+
Returns a ``string`` of the Bobber version tested, such as '6.3.1'.
5656
5757
Raises
5858
------

docs/building.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ run:
6060
./build-dev-wheel
6161
```
6262

63-
If the current version of the package is `6.3.0`, this will generated a new
63+
If the current version of the package is `6.3.1`, this will generated a new
6464
wheel in the local `dist/` directory (which will be created if not already done)
65-
with the version `6.3.0.dev20210323084016` depending on the time the script was
65+
with the version `6.3.1.dev20210323084016` depending on the time the script was
6666
run.
6767

6868
Likewise, running
@@ -71,7 +71,7 @@ Likewise, running
7171
./build-dev-wheel patch
7272
```
7373

74-
will generate a wheel in `dist/` with version `6.3.1.dev20210323084016` and
74+
will generate a wheel in `dist/` with version `6.3.2.dev20210323084016` and
7575

7676
```
7777
./build-dev-wheel minor

docs/troubleshooting.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ and matches the version of the Bobber wheel. Check the Bobber version with:
99

1010
```
1111
$ bobber --version
12-
6.3.0
12+
6.3.1
1313
```
1414

1515
The version number is listed in the first line. Check the Bobber image is built
1616
and matches the version above with:
1717

1818
```
1919
$ docker images | grep nvidia/bobber
20-
nvidia/bobber 6.3.0 c697a75ee482 36 minutes ago 12.4GB
20+
nvidia/bobber 6.3.1 a467a25ff008 10 minutes ago 5.23GB
2121
```
2222

23-
If the above command does not contain output or the second column (`6.3.0` in
23+
If the above command does not contain output or the second column (`6.3.1` in
2424
the example) does not match the version of Bobber from the first step, the image
2525
needs to be built. Run `bobber build` to build the image and verify using the
2626
steps above once complete.
@@ -30,7 +30,7 @@ This can be verified with:
3030

3131
```
3232
$ docker ps | grep bobber
33-
1ab2b10f8eb1 nvidia/bobber:6.3.0 "/usr/local/bin/nvid..." 4 days ago Up 4 days bobber
33+
1ab2b10f8eb1 nvidia/bobber:6.3.1 "/usr/local/bin/nvid..." 4 days ago Up 4 days bobber
3434
```
3535

3636
If the above command does not contain output, the container needs to be launched

0 commit comments

Comments
 (0)