Skip to content

Commit 64d7572

Browse files
committed
Update README and versions for 23.04 branch
1 parent 8cb5d42 commit 64d7572

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
ARG BASE_IMAGE=nvcr.io/nvidia/tritonserver:23.03-py3
16-
ARG TRITONSDK_BASE_IMAGE=nvcr.io/nvidia/tritonserver:23.03-py3-sdk
15+
ARG BASE_IMAGE=nvcr.io/nvidia/tritonserver:23.04-py3
16+
ARG TRITONSDK_BASE_IMAGE=nvcr.io/nvidia/tritonserver:23.04-py3-sdk
1717

18-
ARG MODEL_ANALYZER_VERSION=1.27.0dev
19-
ARG MODEL_ANALYZER_CONTAINER_VERSION=23.04dev
18+
ARG MODEL_ANALYZER_VERSION=1.27.0
19+
ARG MODEL_ANALYZER_CONTAINER_VERSION=23.04
2020

2121
FROM ${TRITONSDK_BASE_IMAGE} as sdk
2222

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.27.0dev
1+
1.27.0

docs/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ bls_composing_models: <comma-delimited-string-list>
147147
[ reload_model_disable: <bool> | default: false]
148148
149149
# Triton Docker image tag used when launching using Docker mode
150-
[ triton_docker_image: <string> | default: nvcr.io/nvidia/tritonserver:23.03-py3 ]
150+
[ triton_docker_image: <string> | default: nvcr.io/nvidia/tritonserver:23.04-py3 ]
151151
152152
# Triton Server HTTP endpoint url used by Model Analyzer client"
153153
[ triton_http_endpoint: <string> | default: localhost:8000 ]

docs/kubernetes_deploy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ images:
7979
8080
triton:
8181
image: nvcr.io/nvidia/tritonserver
82-
tag: 23.03-py3
82+
tag: 23.04-py3
8383
```
8484

8585
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.

docs/mm_quick_start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ git pull origin main
4949
**1. Pull the SDK container:**
5050

5151
```
52-
docker pull nvcr.io/nvidia/tritonserver:23.03-py3-sdk
52+
docker pull nvcr.io/nvidia/tritonserver:23.04-py3-sdk
5353
```
5454

5555
**2. Run the SDK container**
@@ -59,7 +59,7 @@ docker run -it --gpus all \
5959
-v /var/run/docker.sock:/var/run/docker.sock \
6060
-v $(pwd)/examples/quick-start:$(pwd)/examples/quick-start \
6161
-v <path-to-output-model-repo>:<path-to-output-model-repo> \
62-
--net=host nvcr.io/nvidia/tritonserver:23.03-py3-sdk
62+
--net=host nvcr.io/nvidia/tritonserver:23.04-py3-sdk
6363
```
6464

6565
**Replacing** `<path-to-output-model-repo>` with the

docs/quick_start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ git pull origin main
4949
**1. Pull the SDK container:**
5050

5151
```
52-
docker pull nvcr.io/nvidia/tritonserver:23.03-py3-sdk
52+
docker pull nvcr.io/nvidia/tritonserver:23.04-py3-sdk
5353
```
5454

5555
**2. Run the SDK container**
@@ -59,7 +59,7 @@ docker run -it --gpus all \
5959
-v /var/run/docker.sock:/var/run/docker.sock \
6060
-v $(pwd)/examples/quick-start:$(pwd)/examples/quick-start \
6161
-v <path-to-output-model-repo>:<path-to-output-model-repo> \
62-
--net=host nvcr.io/nvidia/tritonserver:23.03-py3-sdk
62+
--net=host nvcr.io/nvidia/tritonserver:23.04-py3-sdk
6363
```
6464

6565
**Replacing** `<path-to-output-model-repo>` with the

helm-chart/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ images:
4141

4242
triton:
4343
image: nvcr.io/nvidia/tritonserver
44-
tag: 23.03-py3
44+
tag: 23.04-py3

model_analyzer/config/input/config_defaults.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
DEFAULT_RUN_CONFIG_SEARCH_MODE = 'brute'
5050
DEFAULT_RUN_CONFIG_PROFILE_MODELS_CONCURRENTLY_ENABLE = False
5151
DEFAULT_TRITON_LAUNCH_MODE = 'local'
52-
DEFAULT_TRITON_DOCKER_IMAGE = 'nvcr.io/nvidia/tritonserver:23.03-py3'
52+
DEFAULT_TRITON_DOCKER_IMAGE = 'nvcr.io/nvidia/tritonserver:23.04-py3'
5353
DEFAULT_TRITON_HTTP_ENDPOINT = 'localhost:8000'
5454
DEFAULT_TRITON_GRPC_ENDPOINT = 'localhost:8001'
5555
DEFAULT_TRITON_METRICS_URL = 'http://localhost:8002/metrics'

0 commit comments

Comments
 (0)