From 266c91e41d85f4d485825ed32acfcafde398269f Mon Sep 17 00:00:00 2001 From: Robert Clark Date: Mon, 21 Mar 2022 16:23:01 -0500 Subject: [PATCH] Release version 6.3.1 Signed-Off-By: Robert Clark --- README.md | 16 ++++++++-------- bobber/__version__.py | 2 +- bobber/lib/analysis/common.py | 4 ++-- docs/building.md | 6 +++--- docs/troubleshooting.md | 8 ++++---- 5 files changed, 18 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 761d0da..f1c95dc 100644 --- a/README.md +++ b/README.md @@ -58,14 +58,14 @@ The installation can be verified with `pip3 freeze` after completion: ```bash $ pip3 freeze | grep bobber -nvidia-bobber==6.3.0 +nvidia-bobber==6.3.1 ``` Bobber can also be verified by printing the usage statement: ``` $ bobber --help -usage: Bobber Version: 6.3.0 [-h] command ... +usage: Bobber Version: 6.3.1 [-h] command ... positional arguments: command @@ -100,7 +100,7 @@ Using `pip3`, install the wheel using the address from the previous step to all remote machines which will be tested, for example: ```bash -pip3 install https://github.com/NVIDIA/Bobber/releases/download/v6.3.0/nvidia_bobber-6.3.0-py3-none-any.whl +pip3 install https://github.com/NVIDIA/Bobber/releases/download/v6.3.1/nvidia_bobber-6.3.1-py3-none-any.whl ``` ## 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: ```bash $ docker images | grep nvidia/bobber -nvidia/bobber 6.3.0 8e545fee7a4d 10 minutes ago 5.23GB +nvidia/bobber 6.3.1 a467a25ff008 10 minutes ago 5.23GB ``` ## Save container @@ -135,10 +135,10 @@ If running on a single node, this step is not required. ```bash $ bobber export -Exporting nvidia/bobber:6.3.0 to "nvidia_bobber_6.3.0.tar". This may take a while... -nvidia/bobber:6.3.0 saved to nvidia_bobber_6.3.0.tar +Exporting nvidia/bobber:6.3.1 to "nvidia_bobber_6.3.1.tar". This may take a while... +nvidia/bobber:6.3.1 saved to nvidia_bobber_6.3.1.tar $ ls -nvidia_bobber_6.3.0.tar +nvidia_bobber_6.3.1.tar ``` ## Copy container to other nodes @@ -170,7 +170,7 @@ On all other nodes, load the copied Docker image. ```bash $ docker load < nvidia_bobber_{version}.tar $ docker images | grep bobber -nvidia/bobber 6.3.0 8e545fee7a4d 10 minutes ago 5.23GB +nvidia/bobber 6.3.1 a467a25ff008 10 minutes ago 5.23GB ``` ## Ensure shared filesystem is mounted, if necessary diff --git a/bobber/__version__.py b/bobber/__version__.py index cbd9056..7eb19ab 100644 --- a/bobber/__version__.py +++ b/bobber/__version__.py @@ -1,2 +1,2 @@ # SPDX-License-Identifier: MIT -__version__ = '6.3.0' +__version__ = '6.3.1' diff --git a/bobber/lib/analysis/common.py b/bobber/lib/analysis/common.py index 37abc09..b1af96c 100644 --- a/bobber/lib/analysis/common.py +++ b/bobber/lib/analysis/common.py @@ -42,7 +42,7 @@ def num_systems(log: str) -> int: def _bobber_version(log: str) -> str: """ Returns a ``string`` representation of the Bobber version tested, such as - '6.3.0'. + '6.3.1'. Parameters ---------- @@ -52,7 +52,7 @@ def _bobber_version(log: str) -> str: Returns ------- str - Returns a ``string`` of the Bobber version tested, such as '6.3.0'. + Returns a ``string`` of the Bobber version tested, such as '6.3.1'. Raises ------ diff --git a/docs/building.md b/docs/building.md index bf5dc6e..0eb78e0 100644 --- a/docs/building.md +++ b/docs/building.md @@ -60,9 +60,9 @@ run: ./build-dev-wheel ``` -If the current version of the package is `6.3.0`, this will generated a new +If the current version of the package is `6.3.1`, this will generated a new wheel in the local `dist/` directory (which will be created if not already done) -with the version `6.3.0.dev20210323084016` depending on the time the script was +with the version `6.3.1.dev20210323084016` depending on the time the script was run. Likewise, running @@ -71,7 +71,7 @@ Likewise, running ./build-dev-wheel patch ``` -will generate a wheel in `dist/` with version `6.3.1.dev20210323084016` and +will generate a wheel in `dist/` with version `6.3.2.dev20210323084016` and ``` ./build-dev-wheel minor diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index e662b0b..4a31158 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -9,7 +9,7 @@ and matches the version of the Bobber wheel. Check the Bobber version with: ``` $ bobber --version -6.3.0 +6.3.1 ``` The version number is listed in the first line. Check the Bobber image is built @@ -17,10 +17,10 @@ and matches the version above with: ``` $ docker images | grep nvidia/bobber -nvidia/bobber 6.3.0 c697a75ee482 36 minutes ago 12.4GB +nvidia/bobber 6.3.1 a467a25ff008 10 minutes ago 5.23GB ``` -If the above command does not contain output or the second column (`6.3.0` in +If the above command does not contain output or the second column (`6.3.1` in the example) does not match the version of Bobber from the first step, the image needs to be built. Run `bobber build` to build the image and verify using the steps above once complete. @@ -30,7 +30,7 @@ This can be verified with: ``` $ docker ps | grep bobber -1ab2b10f8eb1 nvidia/bobber:6.3.0 "/usr/local/bin/nvid..." 4 days ago Up 4 days bobber +1ab2b10f8eb1 nvidia/bobber:6.3.1 "/usr/local/bin/nvid..." 4 days ago Up 4 days bobber ``` If the above command does not contain output, the container needs to be launched