Skip to content

Commit cb67ac7

Browse files
authored
test: Drop no-op perf_analyzer pip install (#8825)
1 parent bd5e7dd commit cb67ac7

8 files changed

Lines changed: 7 additions & 20 deletions

File tree

qa/L0_memory_growth/test.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright 2020-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
# Copyright 2020-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions
@@ -42,7 +42,6 @@ fi
4242
export CUDA_VISIBLE_DEVICES=0
4343

4444
# Clients
45-
pip3 install perf_analyzer
4645
PERF_ANALYZER=perf_analyzer
4746
IMAGE=../images/vulture.jpeg
4847

qa/L0_passive_instance/test.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright (c) 2021-2025, NVIDIA CORPORATION. All rights reserved.
2+
# Copyright (c) 2021-2026, NVIDIA CORPORATION. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions
@@ -45,7 +45,6 @@ CLIENT_LOG="./client.log"
4545
TEST_SCRIPT_PY=passive_instance_test.py
4646
EXPECTED_NUM_TESTS="1"
4747

48-
pip3 install perf_analyzer
4948
PERF_ANALYZER=perf_analyzer
5049
MODEL=distributed_int32_int32_int32
5150

qa/L0_perf_deeprecommender/run_test.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright 2019-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
# Copyright 2019-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions
@@ -29,8 +29,6 @@ STATIC_BATCH_SIZES=${STATIC_BATCH_SIZES:=1}
2929
DYNAMIC_BATCH_SIZES=${DYNAMIC_BATCH_SIZES:=1}
3030
INSTANCE_COUNTS=${INSTANCE_COUNTS:=1}
3131

32-
pip3 install perf_analyzer
33-
3432
PERF_CLIENT=perf_analyzer
3533
REPORTER=../common/reporter.py
3634

qa/L0_perf_nomodel/run_test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ MODEL_REPO="${PWD}/models"
5252
PERF_CLIENT=perf_analyzer
5353
SERVER_ARGS="--model-repository=${MODEL_REPO} --backend-directory=${BACKEND_DIR}"
5454
source ../common/util.sh
55-
pip3 install perf_analyzer
5655

5756
# DATADIR is already set in environment variable for aarch64
5857
if [ "$ARCH" != "aarch64" ]; then

qa/L0_perf_resnet/run_test.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright 2019-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
# Copyright 2019-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions
@@ -53,8 +53,6 @@ rm -fr models && mkdir -p models && \
5353
sed -i "s/^max_batch_size:.*/max_batch_size: ${MAX_BATCH}/" config.pbtxt && \
5454
echo "instance_group [ { count: ${INSTANCE_CNT} }]")
5555

56-
pip3 install perf_analyzer
57-
5856
MEASUREMENT_WINDOW=5000
5957
PERF_CLIENT=perf_analyzer
6058
# Onnx and onnx-trt models are very slow on Jetson.

qa/L0_pinned_memory/test.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright (c) 2019-2025, NVIDIA CORPORATION. All rights reserved.
2+
# Copyright (c) 2019-2026, NVIDIA CORPORATION. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions
@@ -38,8 +38,6 @@ if [ ! -z "$TEST_REPO_ARCH" ]; then
3838
REPO_VERSION=${REPO_VERSION}_${TEST_REPO_ARCH}
3939
fi
4040

41-
pip3 install perf_analyzer
42-
4341
# Use "--request-count" throughout the test to PA stability criteria and
4442
# reduce flaky failures from PA unstable measurements.
4543
REQUEST_COUNT=10

qa/L0_response_cache/test.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright 2022-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
# Copyright 2022-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions
@@ -426,8 +426,6 @@ if [ "$SERVER_PID" == "0" ]; then
426426
exit 1
427427
fi
428428

429-
pip3 install perf_analyzer
430-
431429
TEMP_RET=0
432430
REPETITION=10
433431
CONCURRENCY=20

qa/L0_trt_dynamic_shape/test.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright 2019-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
# Copyright 2019-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions
@@ -41,8 +41,6 @@ fi
4141
TEST_RESULT_FILE='test_results.txt'
4242
export CUDA_VISIBLE_DEVICES=0
4343

44-
pip3 install perf_analyzer
45-
4644
CLIENT_LOG="./client.log"
4745
PERF_CLIENT=perf_analyzer
4846
TRT_OP_TEST=trt_dynamic_shape_test.py

0 commit comments

Comments
 (0)