Skip to content

Commit 3cc4010

Browse files
authored
Merge pull request #57 from NVIDIA/update-version
Release version 6.2.0
2 parents bac0eb3 + 6f9f4a1 commit 3cc4010

File tree

5 files changed

+23
-23
lines changed

5 files changed

+23
-23
lines changed

README.md

Lines changed: 12 additions & 12 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.1.1
61+
nvidia-bobber==6.2.0
6262
```
6363

6464
Bobber 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
7070
positional 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.
9393
In some scenarios, Bobber could be updated well before the next `nvidia-pyindex`
9494
release. 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
9797
copy 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
100100
remote 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
114114
Building 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

119119
After 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

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.1.1'
2+
__version__ = '6.2.0'

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.1.1'.
45+
'6.2.0'.
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.1.1'.
55+
Returns a ``string`` of the Bobber version tested, such as '6.2.0'.
5656
5757
Raises
5858
------

docs/building.md

Lines changed: 4 additions & 4 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.1.1`, this will generated a new
63+
If the current version of the package is `6.2.0`, 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.1.1.dev20210222113637` depending on the time the script was
65+
with the version `6.2.0.dev20210323084016` depending on the time the script was
6666
run.
6767

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

74-
will generate a wheel in `dist/` with version `6.1.2.dev20210222113637` and
74+
will generate a wheel in `dist/` with version `6.2.1.dev20210323084016` and
7575

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

80-
will generate a wheel in `dist/` with version `6.2.0.dev20210222113637`.
80+
will generate a wheel in `dist/` with version `6.3.0.dev20210323084016`.
8181

8282
To generate a wheel manually without altering the version number, run
8383

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.1.1
12+
6.2.0
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.1.1 c697a75ee482 36 minutes ago 12.4GB
20+
nvidia/bobber 6.2.0 c697a75ee482 36 minutes ago 12.4GB
2121
```
2222

23-
If the above command does not contain output or the second column (`6.1.1` in
23+
If the above command does not contain output or the second column (`6.2.0` 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.1.1 "/usr/local/bin/nvid..." 4 days ago Up 4 days bobber
33+
1ab2b10f8eb1 nvidia/bobber:6.2.0 "/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)