Skip to content

Commit a66700f

Browse files
authored
Update main branch post 24.11 (#948)
* Update README and versions for 1.46.0 / 24.11 (#942) * Update base versions (#944) * Remove pip upgrade (#945) * Lock grpcio version (#946)
1 parent 0e14d5f commit a66700f

File tree

11 files changed

+20
-21
lines changed

11 files changed

+20
-21
lines changed

Dockerfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
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:24.10-py3
16-
ARG TRITONSDK_BASE_IMAGE=nvcr.io/nvidia/tritonserver:24.10-py3-sdk
15+
ARG BASE_IMAGE=nvcr.io/nvidia/tritonserver:24.11-py3
16+
ARG TRITONSDK_BASE_IMAGE=nvcr.io/nvidia/tritonserver:24.11-py3-sdk
1717

1818
ARG MODEL_ANALYZER_VERSION=1.47.0dev
1919
ARG MODEL_ANALYZER_CONTAINER_VERSION=24.12dev
@@ -26,7 +26,7 @@ ARG BASE_IMAGE
2626
ARG TRITONSDK_BASE_IMAGE
2727

2828
# DCGM version to install for Model Analyzer
29-
ENV DCGM_VERSION=3.2.6
29+
ENV DCGM_VERSION=3.3.6
3030

3131
# Ensure apt-get won't prompt for selecting options
3232
ENV DEBIAN_FRONTEND=noninteractive
@@ -41,7 +41,7 @@ RUN mkdir -p /opt/triton-model-analyzer
4141

4242
RUN [ "$(uname -m)" != "x86_64" ] && arch="sbsa" || arch="x86_64" && \
4343
curl -o /tmp/cuda-keyring.deb \
44-
https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/$arch/cuda-keyring_1.0-1_all.deb && \
44+
https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/$arch/cuda-keyring_1.1-1_all.deb && \
4545
apt-get install /tmp/cuda-keyring.deb && rm /tmp/cuda-keyring.deb && \
4646
apt-get update && apt-get install -y --no-install-recommends software-properties-common && \
4747
apt-get install -y datacenter-gpu-manager=1:${DCGM_VERSION};
@@ -70,8 +70,7 @@ RUN chmod +x /opt/triton-model-analyzer/nvidia_entrypoint.sh
7070
RUN chmod +x build_wheel.sh && \
7171
./build_wheel.sh perf_analyzer true && \
7272
rm -f perf_analyzer
73-
RUN python3 -m pip install --upgrade pip && \
74-
python3 -m pip install nvidia-pyindex && \
73+
RUN python3 -m pip install nvidia-pyindex && \
7574
python3 -m pip install wheels/triton_model_analyzer-*-manylinux*.whl
7675
#Other pip packages
7776
RUN python3 -m pip install coverage

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ limitations under the License.
2323
> ##### LATEST RELEASE
2424
>
2525
> You are currently on the `main` branch which tracks under-development progress towards the next release. <br>
26-
> The latest release of the Triton Model Analyzer is 1.45.0 and is available on branch
27-
> [r24.10](https://github.com/triton-inference-server/model_analyzer/tree/r24.10).
26+
> The latest release of the Triton Model Analyzer is 1.46.0 and is available on branch
27+
> [r24.11](https://github.com/triton-inference-server/model_analyzer/tree/r24.11).
2828
2929
Triton Model Analyzer is a CLI tool which can help you find a more optimal configuration, on a given piece of hardware, for single, multiple, ensemble, or BLS models running on a [Triton Inference Server](https://github.com/triton-inference-server/server/). Model Analyzer will also generate reports to help you better understand the trade-offs of the different configurations along with their compute and memory requirements.
3030
<br><br>

docs/bls_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:24.10-py3-sdk
52+
docker pull nvcr.io/nvidia/tritonserver:24.11-py3-sdk
5353
```
5454

5555
**2. Run the SDK container**
@@ -59,7 +59,7 @@ docker run -it --gpus 1 \
5959
--shm-size 2G \
6060
-v /var/run/docker.sock:/var/run/docker.sock \
6161
-v $(pwd)/examples/quick-start:$(pwd)/examples/quick-start \
62-
--net=host nvcr.io/nvidia/tritonserver:24.10-py3-sdk
62+
--net=host nvcr.io/nvidia/tritonserver:24.11-py3-sdk
6363
```
6464

6565
**Important:** The example above uses a single GPU. If you are running on multiple GPUs, you may need to increase the shared memory size accordingly<br><br>

docs/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ cpu_only_composing_models: <comma-delimited-string-list>
153153
[ reload_model_disable: <bool> | default: false]
154154
155155
# Triton Docker image tag used when launching using Docker mode
156-
[ triton_docker_image: <string> | default: nvcr.io/nvidia/tritonserver:24.10-py3 ]
156+
[ triton_docker_image: <string> | default: nvcr.io/nvidia/tritonserver:24.11-py3 ]
157157
158158
# Triton Server HTTP endpoint url used by Model Analyzer client"
159159
[ triton_http_endpoint: <string> | default: localhost:8000 ]

docs/ensemble_quick_start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ mkdir examples/quick-start/ensemble_add_sub/1
5555
**1. Pull the SDK container:**
5656

5757
```
58-
docker pull nvcr.io/nvidia/tritonserver:24.10-py3-sdk
58+
docker pull nvcr.io/nvidia/tritonserver:24.11-py3-sdk
5959
```
6060

6161
**2. Run the SDK container**
@@ -65,7 +65,7 @@ docker run -it --gpus 1 \
6565
--shm-size 1G \
6666
-v /var/run/docker.sock:/var/run/docker.sock \
6767
-v $(pwd)/examples/quick-start:$(pwd)/examples/quick-start \
68-
--net=host nvcr.io/nvidia/tritonserver:24.10-py3-sdk
68+
--net=host nvcr.io/nvidia/tritonserver:24.11-py3-sdk
6969
```
7070

7171
**Important:** The example above uses a single GPU. If you are running on multiple GPUs, you may need to increase the shared memory size accordingly<br><br>

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: 24.10-py3
82+
tag: 24.11-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:24.10-py3-sdk
52+
docker pull nvcr.io/nvidia/tritonserver:24.11-py3-sdk
5353
```
5454

5555
**2. Run the SDK container**
@@ -58,7 +58,7 @@ docker pull nvcr.io/nvidia/tritonserver:24.10-py3-sdk
5858
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 \
61-
--net=host nvcr.io/nvidia/tritonserver:24.10-py3-sdk
61+
--net=host nvcr.io/nvidia/tritonserver:24.11-py3-sdk
6262
```
6363

6464
## `Step 3:` Profile both models concurrently

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:24.10-py3-sdk
52+
docker pull nvcr.io/nvidia/tritonserver:24.11-py3-sdk
5353
```
5454

5555
**2. Run the SDK container**
@@ -58,7 +58,7 @@ docker pull nvcr.io/nvidia/tritonserver:24.10-py3-sdk
5858
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 \
61-
--net=host nvcr.io/nvidia/tritonserver:24.10-py3-sdk
61+
--net=host nvcr.io/nvidia/tritonserver:24.11-py3-sdk
6262
```
6363

6464
## `Step 3:` Profile the `add_sub` model

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: 24.10-py3
44+
tag: 24.11-py3

model_analyzer/config/input/config_defaults.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
DEFAULT_REQUEST_RATE_SEARCH_ENABLE = False
6464
DEFAULT_CONCURRENCY_SWEEP_DISABLE = False
6565
DEFAULT_TRITON_LAUNCH_MODE = "local"
66-
DEFAULT_TRITON_DOCKER_IMAGE = "nvcr.io/nvidia/tritonserver:24.10-py3"
66+
DEFAULT_TRITON_DOCKER_IMAGE = "nvcr.io/nvidia/tritonserver:24.11-py3"
6767
DEFAULT_TRITON_HTTP_ENDPOINT = "localhost:8000"
6868
DEFAULT_TRITON_GRPC_ENDPOINT = "localhost:8001"
6969
DEFAULT_TRITON_METRICS_URL = "http://localhost:8002/metrics"

0 commit comments

Comments
 (0)