Triton v1.11.0 adds ragged batching for custom backends, local S3 endpoint support, and TensorRT boolean/shape tensor types.
$ git clone --branch v1.11.0 https://github.com/triton-inference-server/server.git # already have the repo? check out this version: $ git checkout v1.11.0
- ›Adds support for local S3 storage endpoints in model repositories, specified as
s3://host:port/path/to/repository. - ›New model configuration option enables the dynamic batcher to create 'ragged' batches for custom backend models, where input/output tensors may have different shapes across batch entries.
- ›Removes
LD_LIBRARY_PATHfrom the inference server container in favor ofRUNPATHfor shared library resolution. - ›Adds support for boolean data-type and shape tensors in TensorRT models.
- ›Significantly improves TensorRT backend performance by reducing thread contention, using pinned memory for faster CPU<->GPU transfers, and increasing compute/memory copy overlap.
+2 moreshow less
- ›Reduces memory usage of TensorRT models by sharing weights across multiple model instances.
- ›Updates the Helm chart example Kubernetes deployment to include Prometheus and Grafana support for metrics collection and visualization.
- !Python 2 support has been fully removed; only Python 3 is supported.