File tree Expand file tree Collapse file tree 8 files changed +12
-18
lines changed
model_analyzer/config/input Expand file tree Collapse file tree 8 files changed +12
-18
lines changed Original file line number Diff line number Diff line change 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:22.02 -py3
16- ARG TRITONSDK_BASE_IMAGE=nvcr.io/nvidia/tritonserver:22.02 -py3-sdk
15+ ARG BASE_IMAGE=nvcr.io/nvidia/tritonserver:22.03 -py3
16+ ARG TRITONSDK_BASE_IMAGE=nvcr.io/nvidia/tritonserver:22.03 -py3-sdk
1717
18- ARG MODEL_ANALYZER_VERSION=1.14.0dev
19- ARG MODEL_ANALYZER_CONTAINER_VERSION=22.03dev
18+ ARG MODEL_ANALYZER_VERSION=1.14.0
19+ ARG MODEL_ANALYZER_CONTAINER_VERSION=22.03
2020
2121FROM ${TRITONSDK_BASE_IMAGE} as sdk
2222
Original file line number Diff line number Diff line change @@ -18,12 +18,6 @@ limitations under the License.
1818
1919# Triton Model Analyzer
2020
21- ** LATEST RELEASE: You are currently on the main branch which tracks
22- under-development progress towards the next release. The latest
23- release of the Triton Model Analyzer is 1.13.0 and is available on
24- branch
25- [ r22.02] ( https://github.com/triton-inference-server/model_analyzer/tree/r22.02 ) .**
26-
2721Triton Model Analyzer is a CLI tool to help with better understanding of the
2822compute and memory requirements of the
2923[ Triton Inference Server] ( https://github.com/triton-inference-server/server/ ) models. These
Original file line number Diff line number Diff line change 1- 1.14.0dev
1+ 1.14.0
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ profile_models: <comma-delimited-string-list>
123123[ reload_model_disable: <bool> | default: false]
124124
125125# Triton Docker image tag used when launching using Docker mode
126- [ triton_docker_image: <string> | default: nvcr.io/nvidia/tritonserver:22.02 -py3 ]
126+ [ triton_docker_image: <string> | default: nvcr.io/nvidia/tritonserver:22.03 -py3 ]
127127
128128# Triton Server HTTP endpoint url used by Model Analyzer client. Will be ignored if server-launch-mode is not 'remote'".
129129[ triton_http_endpoint: <string> | default: localhost:8000 ]
Original file line number Diff line number Diff line change @@ -55,15 +55,15 @@ Catalog](https://ngc.nvidia.com/catalog/containers/nvidia:tritonserver). You can
5555pull and run the SDK container with the following commands:
5656
5757```
58- $ docker pull nvcr.io/nvidia/tritonserver:22.02 -py3-sdk
58+ $ docker pull nvcr.io/nvidia/tritonserver:22.03 -py3-sdk
5959```
6060
6161If you are not planning to run Model Analyzer with
6262` --triton-launch-mode=docker ` , You can run the SDK container with the following
6363command:
6464
6565```
66- $ docker run -it --gpus all --net=host nvcr.io/nvidia/tritonserver:22.02 -py3-sdk
66+ $ docker run -it --gpus all --net=host nvcr.io/nvidia/tritonserver:22.03 -py3-sdk
6767```
6868
6969You will need to build and install the Triton server binary inside the SDK
@@ -88,7 +88,7 @@ following:
8888$ docker run -it --gpus all \
8989 -v /var/run/docker.sock:/var/run/docker.sock \
9090 -v <path-to-output-model-repo>:<path-to-output-model-repo> \
91- --net=host nvcr.io/nvidia/tritonserver:22.02 -py3-sdk
91+ --net=host nvcr.io/nvidia/tritonserver:22.03 -py3-sdk
9292```
9393
9494Model Analyzer uses ` pdfkit ` for report generation. If you are running Model
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ images:
7979
8080 triton:
8181 image: nvcr.io/nvidia/tritonserver
82- tag: 22.02 -py3
82+ tag: 22.03 -py3
8383```
8484
8585The 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.
Original file line number Diff line number Diff line change @@ -41,4 +41,4 @@ images:
4141
4242 triton :
4343 image : nvcr.io/nvidia/tritonserver
44- tag : 22.02 -py3
44+ tag : 22.03 -py3
Original file line number Diff line number Diff line change 4343DEFAULT_RUN_CONFIG_SEARCH_DISABLE = False
4444DEFAULT_RUN_CONFIG_PROFILE_MODELS_CONCURRENTLY_ENABLE = False
4545DEFAULT_TRITON_LAUNCH_MODE = 'local'
46- DEFAULT_TRITON_DOCKER_IMAGE = 'nvcr.io/nvidia/tritonserver:22.02 -py3'
46+ DEFAULT_TRITON_DOCKER_IMAGE = 'nvcr.io/nvidia/tritonserver:22.03 -py3'
4747DEFAULT_TRITON_HTTP_ENDPOINT = 'localhost:8000'
4848DEFAULT_TRITON_GRPC_ENDPOINT = 'localhost:8001'
4949DEFAULT_TRITON_METRICS_URL = 'http://localhost:8002/metrics'
You can’t perform that action at this time.
0 commit comments