Skip to content

Commit ed30e90

Browse files
committed
Update README for 22.09 release
1 parent 3051326 commit ed30e90

File tree

2 files changed

+342
-2
lines changed

2 files changed

+342
-2
lines changed

README.md

+220-2
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,223 @@
2828

2929
# Triton Inference Server
3030

31-
**NOTE: You are currently on the r22.09 branch which tracks stabilization
32-
towards the next release. This branch is not usable during stabilization.**
31+
[![License](https://img.shields.io/badge/License-BSD3-lightgrey.svg)](https://opensource.org/licenses/BSD-3-Clause)
32+
33+
**LATEST RELEASE: You are currently on the main branch which tracks
34+
under-development progress towards the next release. The current release is
35+
version [2.26.0](https://github.com/triton-inference-server/server/tree/r22.09)
36+
and corresponds to the 22.09 container release on
37+
[NVIDIA GPU Cloud (NGC)](https://catalog.ngc.nvidia.com/orgs/nvidia/containers/tritonserver).**
38+
39+
----
40+
Triton Inference Server is an open source inference serving software that
41+
streamlines AI inferencing. Triton enables teams to deploy any AI model from
42+
multiple deep learning and machine learning frameworks, including TensorRT,
43+
TensorFlow, PyTorch, ONNX, OpenVINO, Python, RAPIDS FIL, and more. Triton
44+
supports inference across cloud, data center,edge and embedded devices on NVIDIA
45+
GPUs, x86 and ARM CPU, or AWS Inferentia. Triton delivers optimized performance
46+
for many query types, including real time, batched, ensembles and audio/video
47+
streaming.
48+
49+
Major features include:
50+
51+
- [Supports multiple deep learning
52+
frameworks](https://github.com/triton-inference-server/backend#where-can-i-find-all-the-backends-that-are-available-for-triton)
53+
- [Supports multiple machine learning
54+
frameworks](https://github.com/triton-inference-server/fil_backend)
55+
- [Concurrent model
56+
execution](docs/user_guide/architecture.md#concurrent-model-execution)
57+
- [Dynamic batching](docs/user_guide/model_configuration.md#dynamic-batcher)
58+
- [Sequence batching](docs/user_guide/model_configuration.md#sequence-batcher) and
59+
[implicit state management](docs/user_guide/architecture.md#implicit-state-management)
60+
for stateful models
61+
- Provides [Backend API](https://github.com/triton-inference-server/backend) that
62+
allows adding custom backends and pre/post processing operations
63+
- Model pipelines using
64+
[Ensembling](docs/user_guide/architecture.md#ensemble-models) or [Business
65+
Logic Scripting
66+
(BLS)](https://github.com/triton-inference-server/python_backend#business-logic-scripting)
67+
- [HTTP/REST and GRPC inference
68+
protocols](docs/customization_guide/inference_protocols.md) based on the community
69+
developed [KServe
70+
protocol](https://github.com/kserve/kserve/tree/master/docs/predict-api/v2)
71+
- A [C API](docs/customization_guide/inference_protocols.md#in-process-triton-server-api) and
72+
[Java API](docs/customization_guide/inference_protocols.md#java-bindings-for-in-process-triton-server-api)
73+
allow Triton to link directly into your application for edge and other in-process use cases
74+
- [Metrics](docs/user_guide/metrics.md) indicating GPU utilization, server
75+
throughput, server latency, and more
76+
77+
Join the [Triton and TensorRT community](https://www.nvidia.com/en-us/deep-learning-ai/triton-tensorrt-newsletter/) and
78+
stay current on the latest product updates, bug fixes, content, best practices,
79+
and more. Need enterprise support? NVIDIA global support is available for Triton
80+
Inference Server with the
81+
[NVIDIA AI Enterprise software suite](https://www.nvidia.com/en-us/data-center/products/ai-enterprise/).
82+
83+
## Serve a Model in 3 Easy Steps
84+
85+
```bash
86+
# Step 1: Create the example model repository
87+
git clone -b r22.09 https://github.com/triton-inference-server/server.git
88+
cd server/docs/examples
89+
./fetch_models.sh
90+
91+
# Step 2: Launch triton from the NGC Triton container
92+
docker run --gpus=1 --rm --net=host -v ${PWD}/model_repository:/models nvcr.io/nvidia/tritonserver:22.09-py3 tritonserver --model-repository=/models
93+
94+
# Step 3: Sending an Inference Request
95+
# In a separate console, launch the image_client example from the NGC Triton SDK container
96+
docker run -it --rm --net=host nvcr.io/nvidia/tritonserver:22.09-py3-sdk
97+
/workspace/install/bin/image_client -m densenet_onnx -c 3 -s INCEPTION /workspace/images/mug.jpg
98+
99+
# Inference should return the following
100+
Image '/workspace/images/mug.jpg':
101+
15.346230 (504) = COFFEE MUG
102+
13.224326 (968) = CUP
103+
10.422965 (505) = COFFEEPOT
104+
```
105+
Please read the [QuickStart](docs/getting_started/quickstart.md) guide for additional information
106+
regarding this example. The quickstart guide also contains an example of how to launch Triton on [CPU-only systems](docs/getting_started/quickstart.md#run-on-cpu-only-system). New to Triton and wondering where to get started? Watch the [Getting Started video](https://youtu.be/NQDtfSi5QF4).
107+
108+
## Examples and Tutorials
109+
110+
Check out [NVIDIA LaunchPad](https://www.nvidia.com/en-us/data-center/products/ai-enterprise-suite/trial/)
111+
for free access to a set of hands-on labs with Triton Inference Server hosted on
112+
NVIDIA infrastructure.
113+
114+
Specific end-to-end examples for popular models, such as ResNet, BERT, and DLRM
115+
are located in the
116+
[NVIDIA Deep Learning Examples](https://github.com/NVIDIA/DeepLearningExamples)
117+
page on GitHub. The
118+
[NVIDIA Developer Zone](https://developer.nvidia.com/nvidia-triton-inference-server)
119+
contains additional documentation, presentations, and examples.
120+
121+
## Documentation
122+
123+
### Build and Deploy
124+
125+
The recommended way to build and use Triton Inference Server is with Docker
126+
images.
127+
128+
- [Install Triton Inference Server with Docker containers](docs/customization_guide/build.md#building-triton-with-docker) (*Recommended*)
129+
- [Install Triton Inference Server without Docker containers](docs/customization_guide/build.md#building-triton-without-docker)
130+
- [Build a custom Triton Inference Server Docker container](docs/customization_guide/compose.md)
131+
- [Build Triton Inference Server from source](docs/customization_guide/build.md#building-on-unsupported-platforms)
132+
- [Build Triton Inference Server for Windows 10](docs/customization_guide/build.md#building-for-windows-10)
133+
- Examples for deploying Triton Inference Server with Kubernetes and Helm on [GCP](deploy/gcp/README.md),
134+
[AWS](deploy/aws/README.md), and [NVIDIA FleetCommand](deploy/fleetcommand/README.md)
135+
136+
### Using Triton
137+
138+
#### Preparing Models for Triton Inference Server
139+
140+
The first step in using Triton to serve your models is to place one or
141+
more models into a [model repository](docs/user_guide/model_repository.md). Depending on
142+
the type of the model and on what Triton capabilities you want to enable for
143+
the model, you may need to create a [model
144+
configuration](docs/user_guide/model_configuration.md) for the model.
145+
146+
- [Add custom operations to Triton if needed by your model](docs/user_guide/custom_operations.md)
147+
- Enable model pipelining with [Model Ensemble](docs/user_guide/architecture.md#ensemble-models)
148+
and [Business Logic Scripting (BLS)](https://github.com/triton-inference-server/python_backend#business-logic-scripting)
149+
- Optimize your models setting [scheduling and batching](docs/user_guide/architecture.md#models-and-schedulers)
150+
parameters and [model instances](docs/user_guide/model_configuration.md#instance-groups).
151+
- Use the [Model Analyzer tool](https://github.com/triton-inference-server/model_analyzer)
152+
to help optimize your model configuration with profiling
153+
- Learn how to [explicitly manage what models are available by loading and
154+
unloading models](docs/user_guide/model_management.md)
155+
156+
#### Configure and Use Triton Inference Server
157+
158+
- Read the [Quick Start Guide](docs/getting_started/quickstart.md) to run Triton Inference
159+
Server on both GPU and CPU
160+
- Triton supports multiple execution engines, called
161+
[backends](https://github.com/triton-inference-server/backend#where-can-i-find-all-the-backends-that-are-available-for-triton), including
162+
[TensorRT](https://github.com/triton-inference-server/tensorrt_backend),
163+
[TensorFlow](https://github.com/triton-inference-server/tensorflow_backend),
164+
[PyTorch](https://github.com/triton-inference-server/pytorch_backend),
165+
[ONNX](https://github.com/triton-inference-server/onnxruntime_backend),
166+
[OpenVINO](https://github.com/triton-inference-server/openvino_backend),
167+
[Python](https://github.com/triton-inference-server/python_backend), and more
168+
- Not all the above backends are supported on every platform supported by Triton.
169+
Look at the
170+
[Backend-Platform Support Matrix](https://github.com/triton-inference-server/backend/blob/main/docs/backend_platform_support_matrix.md)
171+
to learn which backends are supported on your target platform.
172+
- Learn how to [optimize performance](docs/user_guide/optimization.md) using the
173+
[Performance Analyzer](docs/user_guide/perf_analyzer.md) and
174+
[Model Analyzer](https://github.com/triton-inference-server/model_analyzer)
175+
- Learn how to [manage loading and unloading models](docs/user_guide/model_management.md) in
176+
Triton
177+
- Send requests directly to Triton with the [HTTP/REST JSON-based
178+
or gRPC protocols](docs/customization_guide/inference_protocols.md#httprest-and-grpc-protocols)
179+
180+
#### Client Support and Examples
181+
182+
A Triton *client* application sends inference and other requests to Triton. The
183+
[Python and C++ client libraries](https://github.com/triton-inference-server/client)
184+
provide APIs to simplify this communication.
185+
186+
- Review client examples for [C++](https://github.com/triton-inference-server/client/blob/main/src/c%2B%2B/examples),
187+
[Python](https://github.com/triton-inference-server/client/blob/main/src/python/examples),
188+
and [Java](https://github.com/triton-inference-server/client/blob/main/src/java/src/main/java/triton/client/examples)
189+
- Configure [HTTP](https://github.com/triton-inference-server/client#http-options)
190+
and [gRPC](https://github.com/triton-inference-server/client#grpc-options)
191+
client options
192+
- Send input data (e.g. a jpeg image) directly to Triton in the [body of an HTTP
193+
request without any additional metadata](https://github.com/triton-inference-server/server/blob/main/docs/protocol/extension_binary_data.md#raw-binary-request)
194+
195+
### Extend Triton
196+
197+
[Triton Inference Server's architecture](docs/user_guide/architecture.md) is specifically
198+
designed for modularity and flexibility
199+
200+
- [Customize Triton Inference Server container](docs/customization_guide/compose.md) for your use case
201+
- [Create custom backends](https://github.com/triton-inference-server/backend)
202+
in either [C/C++](https://github.com/triton-inference-server/backend/blob/main/README.md#triton-backend-api)
203+
or [Python](https://github.com/triton-inference-server/python_backend)
204+
- Create [decouple backends and models](docs/user_guide/decoupled_models.md) that can send
205+
multiple responses for a request or not send any responses for a request
206+
- Use a [Triton repository agent](docs/customization_guide/repository_agents.md) to add functionality
207+
that operates when a model is loaded and unloaded, such as authentication,
208+
decryption, or conversion
209+
- Deploy Triton on [Jetson and JetPack](docs/user_guide/jetson.md)
210+
- [Use Triton on AWS
211+
Inferentia](https://github.com/triton-inference-server/python_backend/tree/main/inferentia)
212+
213+
### Additional Documentation
214+
215+
- [FAQ](docs/user_guide/faq.md)
216+
- [User Guide](docs#user-guide)
217+
- [Developer Guide](docs#developer-guide)
218+
- [Release Notes](https://docs.nvidia.com/deeplearning/triton-inference-server/release-notes/index.html)
219+
- [GPU, Driver, and CUDA Support
220+
Matrix](https://docs.nvidia.com/deeplearning/dgx/support-matrix/index.html)
221+
222+
## Contributing
223+
224+
Contributions to Triton Inference Server are more than welcome. To
225+
contribute please review the [contribution
226+
guidelines](CONTRIBUTING.md). If you have a backend, client,
227+
example or similar contribution that is not modifying the core of
228+
Triton, then you should file a PR in the [contrib
229+
repo](https://github.com/triton-inference-server/contrib).
230+
231+
## Reporting problems, asking questions
232+
233+
We appreciate any feedback, questions or bug reporting regarding this project.
234+
When posting [issues in GitHub](https://github.com/triton-inference-server/server/issues),
235+
follow the process outlined in the [Stack Overflow document](https://stackoverflow.com/help/mcve).
236+
Ensure posted examples are:
237+
- minimal – use as little code as possible that still produces the
238+
same problem
239+
- complete – provide all parts needed to reproduce the problem. Check
240+
if you can strip external dependencies and still show the problem. The
241+
less time we spend on reproducing problems the more time we have to
242+
fix it
243+
- verifiable – test the code you're about to provide to make sure it
244+
reproduces the problem. Remove all other problems that are not
245+
related to your request/question.
246+
247+
## For more information
248+
249+
Please refer to the [NVIDIA Developer Triton page](https://developer.nvidia.com/nvidia-triton-inference-server)
250+
for more information.

RELEASE.md

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
<!--
2+
# Copyright 2018-2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3+
#
4+
# Redistribution and use in source and binary forms, with or without
5+
# modification, are permitted provided that the following conditions
6+
# are met:
7+
# * Redistributions of source code must retain the above copyright
8+
# notice, this list of conditions and the following disclaimer.
9+
# * Redistributions in binary form must reproduce the above copyright
10+
# notice, this list of conditions and the following disclaimer in the
11+
# documentation and/or other materials provided with the distribution.
12+
# * Neither the name of NVIDIA CORPORATION nor the names of its
13+
# contributors may be used to endorse or promote products derived
14+
# from this software without specific prior written permission.
15+
#
16+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
17+
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19+
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
20+
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
21+
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22+
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
23+
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
24+
# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25+
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26+
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27+
-->
28+
29+
# Release Notes for 2.26.0
30+
31+
## New Freatures and Improvements
32+
33+
* Added
34+
[developer tools Github repository](https://github.com/triton-inference-server/developer_tools)
35+
that provides a simplified interface for users to interact with the
36+
[Triton Core](https://github.com/triton-inference-server/core) shared library.
37+
These developer tools are in beta and are subject to change.
38+
39+
* Added
40+
[CPU metrics](https://github.com/triton-inference-server/server/blob/r22.09/docs/user_guide/metrics.md#cpu-metrics)
41+
reporting in Triton’s Prometheus metrics endpoint.
42+
43+
* Added
44+
[logging protocol extension](https://github.com/triton-inference-server/server/blob/r22.09/docs/protocol/extension_logging.md)
45+
for users to change logging configuration dynamically.
46+
47+
* Users can specify the custom plugins to be loaded for TensorRT backend through
48+
[command line option](https://github.com/triton-inference-server/tensorrt_backend/blob/r22.09/README.md#command-line-options)
49+
in addition to `LD_PRELOAD`.
50+
51+
* Enabled
52+
[auto-completion for OpenVINO backend](https://github.com/triton-inference-server/openvino_backend/tree/r22.09#auto-complete-model-configuration).
53+
54+
* Enabled Python backend to
55+
[log messages through Triton’s logger](https://github.com/triton-inference-server/python_backend#logging).
56+
57+
* Refer to the 22.09 column of the
58+
[Frameworks Support Matrix](https://docs.nvidia.com/deeplearning/frameworks/support-matrix/index.html)
59+
for container image versions on which the 22.09 inference server container
60+
is based.
61+
62+
* Added
63+
[quick search](https://github.com/triton-inference-server/model_analyzer/blob/main/docs/config_search.md#quick-search-mode)
64+
algorithm to Model Analyzer to drastically reduce search time.
65+
66+
* Added
67+
[GPU metrics](https://github.com/triton-inference-server/server/blob/main/docs/user_guide/perf_analyzer.md#server-side-prometheus-metrics)
68+
gathering to Perf Analyzer, which is also used by Model Analyzer to improve
69+
accuracy of those metrics.
70+
71+
72+
## Known Issues
73+
74+
* In certain rare cases with specific backends, triton server may crash with
75+
segmentation fault when exiting. Preliminary analysis shows that there might
76+
be a race condition in clean up of backend/model/instance state objects.
77+
Exact root cause is still unknown.
78+
79+
* Triton's TensorRT support depends on the CUDA event synchronization. In some
80+
rare cases the events may be triggered earlier than expected, causing
81+
Triton to overwrite input tensors while they are still in use and leading to
82+
corrupt input data being used for inference. If you encounter accuracy issues
83+
with your TensorRT model, you can work-around the issue by
84+
[enabling the output_copy_stream option](https://github.com/triton-inference-server/common/blob/r22.09/protobuf/model_config.proto#L843-L852)
85+
in your model's configuration.
86+
87+
* When using a custom operator for the PyTorch backend, the operator may not be
88+
loaded due to undefined Python library symbols. This can be work-around by
89+
[specifying Python library in LD_PRELOAD](https://github.com/triton-inference-server/server/blob/r22.09/qa/L0_custom_ops/test.sh#L114-L117)
90+
91+
* Auto-complete may cause an increase in server start time. To avoid a start
92+
time increase, users can provide the full model configuration and launch the
93+
server with `--disable-auto-complete-config`.
94+
95+
* Auto-complete does not support PyTorch models due to lack of metadata in the
96+
model. It can only verify that the number of inputs and the input names
97+
matches what is specified in the model configuration. There is no model
98+
metadata about the number of outputs and datatypes. Related PyTorch bug:
99+
https://github.com/pytorch/pytorch/issues/38273
100+
101+
* Perf Analyzer stability criteria has been changed which may result in
102+
reporting instability for scenarios that were previously considered stable.
103+
This change has been made to improve the accuracy of Perf Analyzer results.
104+
If you observe this message, it can be resolved by increasing the
105+
`--measurement-interval` in the time windows mode or
106+
`--measurement-request-count` in the count windows mode.
107+
108+
* Triton Client PIP wheels for ARM SBSA are not available from PyPI and pip will
109+
install an incorrect Jetson version of Triton Client library for Arm SBSA.
110+
111+
* The correct client wheel file can be pulled directly from the Arm SBSA SDK
112+
image and manually installed.
113+
114+
* Traced models in PyTorch seem to create overflows when int8 tensor values are
115+
transformed to int32 on the GPU.
116+
117+
* Refer to https://github.com/pytorch/pytorch/issues/66930 for more information.
118+
119+
* Triton cannot retrieve GPU metrics with MIG-enabled GPU devices (A100 and A30).
120+
121+
* Triton metrics might not work if the host machine is running a separate DCGM
122+
agent on bare-metal or in a container.

0 commit comments

Comments
 (0)