From 1fb73d0f5070f5f36bb1fcd8d5d0b675c6452462 Mon Sep 17 00:00:00 2001 From: Alex Zhang Date: Wed, 31 Jul 2024 20:02:05 -0700 Subject: [PATCH] Add instruction about clone perf analyzer repo for SDK image build --- docs/customization_guide/test.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/customization_guide/test.md b/docs/customization_guide/test.md index d664a139d3..1eebf65971 100644 --- a/docs/customization_guide/test.md +++ b/docs/customization_guide/test.md @@ -57,14 +57,17 @@ in the scripts for how to target a specific GPU. ## Build SDK Image Build the *tritonserver_sdk* image that contains the client -libraries, model analyzer, and examples using the following +libraries, model analyzer, perf analyzer and examples using the following commands. You must first checkout the branch of the -*client* repo into the clientrepo/ subdirectory. Typically you want to -set to be the same as your current server branch. +*client* repo into the clientrepo/ subdirectory and the +branch of the *perf_analyzer* repo into the perfanalyzerrepo/ subdirectory +respectively. Typically you want to set both and +to be the same as your current server branch. ``` $ cd $ git clone --single-branch --depth=1 -b https://github.com/triton-inference-server/client.git clientrepo +$ git clone --single-branch --depth=1 -b https://github.com/triton-inference-server/perf_analyzer.git perfanalyzerrepo $ docker build -t tritonserver_sdk -f Dockerfile.sdk . ```