From 027544097b97c92489b9b34d991f7e29d84a0b26 Mon Sep 17 00:00:00 2001 From: Misha Chornyi <99709299+mc-nv@users.noreply.github.com> Date: Fri, 4 Nov 2022 07:52:19 -0700 Subject: [PATCH] Update README and versions for 22.10 release (#554) --- README.md | 4 ++-- VERSION | 2 +- docs/config.md | 2 +- docs/kubernetes_deploy.md | 2 +- docs/quick_start.md | 4 ++-- helm-chart/values.yaml | 2 +- model_analyzer/config/input/config_defaults.py | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 25b2a6ec9..e7a249083 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,9 @@ limitations under the License. **LATEST RELEASE: You are currently on the main branch which tracks under-development progress towards the next release. The latest -release of the Triton Model Analyzer is 1.20.0 and is available on +release of the Triton Model Analyzer is 1.21.0 and is available on branch -[r22.09](https://github.com/triton-inference-server/model_analyzer/tree/r22.09).** +[r22.10](https://github.com/triton-inference-server/model_analyzer/tree/r22.10).** Triton Model Analyzer is a CLI tool to help with better understanding of the compute and memory requirements of the diff --git a/VERSION b/VERSION index 5b3551f65..3500250a4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.21.0dev +1.21.0 diff --git a/docs/config.md b/docs/config.md index ca6710add..b354f4339 100644 --- a/docs/config.md +++ b/docs/config.md @@ -130,7 +130,7 @@ profile_models: [ reload_model_disable: | default: false] # Triton Docker image tag used when launching using Docker mode -[ triton_docker_image: | default: nvcr.io/nvidia/tritonserver:22.09-py3 ] +[ triton_docker_image: | default: nvcr.io/nvidia/tritonserver:22.10-py3 ] # Triton Server HTTP endpoint url used by Model Analyzer client.". [ triton_http_endpoint: | default: localhost:8000 ] diff --git a/docs/kubernetes_deploy.md b/docs/kubernetes_deploy.md index 928586955..7f6deebb7 100644 --- a/docs/kubernetes_deploy.md +++ b/docs/kubernetes_deploy.md @@ -79,7 +79,7 @@ images: triton: image: nvcr.io/nvidia/tritonserver - tag: 22.09-py3 + tag: 22.10-py3 ``` The model analyzer executable uses the config file defined in `helm-chart/templates/config-map.yaml`. This config can be modified to supply arguments to model analyzer. Only the content under the `config.yaml` section of the file should be modified. diff --git a/docs/quick_start.md b/docs/quick_start.md index fbc579ed8..091a9aed4 100644 --- a/docs/quick_start.md +++ b/docs/quick_start.md @@ -49,7 +49,7 @@ git pull origin main **1. Pull the SDK container:** ``` -docker pull nvcr.io/nvidia/tritonserver:22.09-py3-sdk +docker pull nvcr.io/nvidia/tritonserver:22.10-py3-sdk ``` **2. Run the SDK container** @@ -59,7 +59,7 @@ docker run -it --gpus all \ -v /var/run/docker.sock:/var/run/docker.sock \ -v $(pwd)/examples/quick-start:$(pwd)/examples/quick-start \ -v : \ - --net=host nvcr.io/nvidia/tritonserver:22.09-py3-sdk + --net=host nvcr.io/nvidia/tritonserver:22.10-py3-sdk ``` **Replacing** `` with the diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index 00ee780fa..3619bb5a5 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -41,4 +41,4 @@ images: triton: image: nvcr.io/nvidia/tritonserver - tag: 22.09-py3 + tag: 22.10-py3 diff --git a/model_analyzer/config/input/config_defaults.py b/model_analyzer/config/input/config_defaults.py index a4132ea26..e2542b25d 100644 --- a/model_analyzer/config/input/config_defaults.py +++ b/model_analyzer/config/input/config_defaults.py @@ -49,7 +49,7 @@ DEFAULT_RUN_CONFIG_SEARCH_MODE = 'brute' DEFAULT_RUN_CONFIG_PROFILE_MODELS_CONCURRENTLY_ENABLE = False DEFAULT_TRITON_LAUNCH_MODE = 'local' -DEFAULT_TRITON_DOCKER_IMAGE = 'nvcr.io/nvidia/tritonserver:22.09-py3' +DEFAULT_TRITON_DOCKER_IMAGE = 'nvcr.io/nvidia/tritonserver:22.10-py3' DEFAULT_TRITON_HTTP_ENDPOINT = 'localhost:8000' DEFAULT_TRITON_GRPC_ENDPOINT = 'localhost:8001' DEFAULT_TRITON_METRICS_URL = 'http://localhost:8002/metrics'