From 6d9849dc8e716ea213eeede36657cc86e79d3297 Mon Sep 17 00:00:00 2001 From: Yingge He <157551214+yinggeh@users.noreply.github.com> Date: Fri, 17 May 2024 02:02:35 +0800 Subject: [PATCH] Multiple Model Configurations (#7185) Add `--mode-config-name` option when starting Triton server. Allow users to create multiple configurations and select a custom configuration other than the default `model/config.pbtxt`. --- docs/user_guide/model_configuration.md | 80 +++++++++++++- docs/user_guide/model_repository.md | 15 ++- qa/L0_custom_model_config/test.sh | 145 +++++++++++++++++++++++++ qa/L0_lifecycle/lifecycle_test.py | 90 ++++++++++++++- qa/L0_lifecycle/test.sh | 66 +++++++++++ src/command_line_parser.cc | 21 +++- src/command_line_parser.h | 3 + 7 files changed, 414 insertions(+), 6 deletions(-) create mode 100755 qa/L0_custom_model_config/test.sh diff --git a/docs/user_guide/model_configuration.md b/docs/user_guide/model_configuration.md index 023fcf259b..e8165081c1 100644 --- a/docs/user_guide/model_configuration.md +++ b/docs/user_guide/model_configuration.md @@ -1,5 +1,5 @@