-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
306 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<!-- | ||
# Copyright 2018-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions | ||
# are met: | ||
# * Redistributions of source code must retain the above copyright | ||
# notice, this list of conditions and the following disclaimer. | ||
# * Redistributions in binary form must reproduce the above copyright | ||
# notice, this list of conditions and the following disclaimer in the | ||
# documentation and/or other materials provided with the distribution. | ||
# * Neither the name of NVIDIA CORPORATION nor the names of its | ||
# contributors may be used to endorse or promote products derived | ||
# from this software without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY | ||
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR | ||
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | ||
# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
--> | ||
|
||
# Release Notes for 2.30.0 | ||
|
||
## New Freatures and Improvements | ||
|
||
* The dynamic batcher now accepts user-defined batching constraints, allowing | ||
users to specify | ||
[custom batching strategies](https://github.com/triton-inference-server/server/blob/r23.01/docs/user_guide/model_configuration.md#custom-batching). | ||
* Relaxed Python client gRPC version requirement. | ||
* Refer to the 23.01 column of the | ||
[Frameworks Support Matrix](https://docs.nvidia.com/deeplearning/frameworks/support-matrix/index.html) | ||
for container image versions on which the 23.01 inference server container is | ||
based. | ||
|
||
|
||
## Known Issues | ||
|
||
* In some rare cases Triton might overwrite input tensors while they are still | ||
in use which leads to corrupt input data being used for inference with | ||
TensorRT models. If you encounter accuracy issues with your TensorRT model, | ||
you can work-around the issue by | ||
[enabling the output_copy_stream option](https://github.com/triton-inference-server/common/blob/r22.12/protobuf/model_config.proto#L843-L852) | ||
in your model's configuration. | ||
|
||
* Some systems which implement `malloc()` may not release memory back to the | ||
operating system right away causing a false memory leak. This can be mitigated | ||
by using a different malloc implementation. Tcmalloc is installed in the | ||
Triton container and can be | ||
[used by specifying the library in LD_PRELOAD](https://github.com/triton-inference-server/server/blob/r22.12/docs/user_guide/model_management.md#model-control-mode-explicit). | ||
|
||
* When using a custom operator for the PyTorch backend, the operator may not be | ||
loaded due to undefined Python library symbols. This can be work-around by | ||
[specifying Python library in LD_PRELOAD](https://github.com/triton-inference-server/server/blob/r22.12/qa/L0_custom_ops/test.sh#L114-L117). | ||
|
||
* Auto-complete may cause an increase in server start time. To avoid a start | ||
time increase, users can provide the full model configuration and launch the | ||
server with `--disable-auto-complete-config`. | ||
|
||
* Auto-complete does not support PyTorch models due to lack of metadata in the | ||
model. It can only verify that the number of inputs and the input names | ||
matches what is specified in the model configuration. There is no model | ||
metadata about the number of outputs and datatypes. Related PyTorch bug: | ||
https://github.com/pytorch/pytorch/issues/38273 | ||
|
||
* Perf Analyzer stability criteria has been changed which may result in | ||
reporting instability for scenarios that were previously considered stable. | ||
This change has been made to improve the accuracy of Perf Analyzer results. | ||
If you observe this message, it can be resolved by increasing the | ||
`--measurement-interval` in the time windows mode or | ||
`--measurement-request-count` in the count windows mode. | ||
|
||
* Triton Client PIP wheels for ARM SBSA are not available from PyPI and pip will | ||
install an incorrect Jetson version of Triton Client library for Arm SBSA. | ||
|
||
The correct client wheel file can be pulled directly from the Arm SBSA SDK | ||
image and manually installed. | ||
|
||
* Traced models in PyTorch seem to create overflows when int8 tensor values are | ||
transformed to int32 on the GPU. | ||
|
||
Refer to https://github.com/pytorch/pytorch/issues/66930 for more information. | ||
|
||
* Triton cannot retrieve GPU metrics with MIG-enabled GPU devices (A100 and A30). | ||
|
||
* Triton metrics might not work if the host machine is running a separate DCGM | ||
agent on bare-metal or in a container. |