-
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.
Add response sender test base (#7254)
- Loading branch information
Showing
7 changed files
with
732 additions
and
1 deletion.
There are no files selected for viewing
293 changes: 293 additions & 0 deletions
293
qa/L0_backend_python/response_sender/response_sender_test.py
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,293 @@ | ||
# Copyright 2024, 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. | ||
|
||
import unittest | ||
|
||
import numpy as np | ||
import tritonclient.grpc as grpcclient | ||
|
||
|
||
class ResponseSenderTest(unittest.TestCase): | ||
def _get_inputs( | ||
self, | ||
number_of_response_before_return, | ||
send_complete_final_flag_before_return, | ||
return_a_response, | ||
number_of_response_after_return, | ||
send_complete_final_flag_after_return, | ||
): | ||
shape = [1, 1] | ||
inputs = [ | ||
grpcclient.InferInput("NUMBER_OF_RESPONSE_BEFORE_RETURN", shape, "UINT8"), | ||
grpcclient.InferInput( | ||
"SEND_COMPLETE_FINAL_FLAG_BEFORE_RETURN", shape, "BOOL" | ||
), | ||
grpcclient.InferInput("RETURN_A_RESPONSE", shape, "BOOL"), | ||
grpcclient.InferInput("NUMBER_OF_RESPONSE_AFTER_RETURN", shape, "UINT8"), | ||
grpcclient.InferInput( | ||
"SEND_COMPLETE_FINAL_FLAG_AFTER_RETURN", shape, "BOOL" | ||
), | ||
] | ||
inputs[0].set_data_from_numpy( | ||
np.array([[number_of_response_before_return]], np.uint8) | ||
) | ||
inputs[1].set_data_from_numpy( | ||
np.array([[send_complete_final_flag_before_return]], bool) | ||
) | ||
inputs[2].set_data_from_numpy(np.array([[return_a_response]], bool)) | ||
inputs[3].set_data_from_numpy( | ||
np.array([[number_of_response_after_return]], np.uint8) | ||
) | ||
inputs[4].set_data_from_numpy( | ||
np.array([[send_complete_final_flag_after_return]], bool) | ||
) | ||
return inputs | ||
|
||
def _generate_streaming_callback_and_responses_pair(self): | ||
responses = [] # [{"result": result, "error": error}, ...] | ||
|
||
def callback(result, error): | ||
responses.append({"result": result, "error": error}) | ||
|
||
return callback, responses | ||
|
||
def _infer( | ||
self, | ||
model_name, | ||
number_of_response_before_return, | ||
send_complete_final_flag_before_return, | ||
return_a_response, | ||
number_of_response_after_return, | ||
send_complete_final_flag_after_return, | ||
): | ||
inputs = self._get_inputs( | ||
number_of_response_before_return, | ||
send_complete_final_flag_before_return, | ||
return_a_response, | ||
number_of_response_after_return, | ||
send_complete_final_flag_after_return, | ||
) | ||
callback, responses = self._generate_streaming_callback_and_responses_pair() | ||
with grpcclient.InferenceServerClient("localhost:8001") as client: | ||
client.start_stream(callback) | ||
client.async_stream_infer(model_name, inputs) | ||
client.stop_stream() | ||
return responses | ||
|
||
def _assert_responses_valid( | ||
self, | ||
responses, | ||
number_of_response_before_return, | ||
return_a_response, | ||
number_of_response_after_return, | ||
): | ||
before_return_response_count = 0 | ||
response_returned = False | ||
after_return_response_count = 0 | ||
for response in responses: | ||
result, error = response["result"], response["error"] | ||
self.assertIsNone(error) | ||
result_np = result.as_numpy(name="INDEX") | ||
response_id = result_np.sum() / result_np.shape[0] | ||
if response_id < 1000: | ||
self.assertFalse( | ||
response_returned, | ||
"Expect at most one response returned per request.", | ||
) | ||
response_returned = True | ||
elif response_id < 2000: | ||
before_return_response_count += 1 | ||
elif response_id < 3000: | ||
after_return_response_count += 1 | ||
else: | ||
raise ValueError(f"Unexpected response_id: {response_id}") | ||
self.assertEqual(number_of_response_before_return, before_return_response_count) | ||
self.assertEqual(return_a_response, response_returned) | ||
self.assertEqual(number_of_response_after_return, after_return_response_count) | ||
|
||
def _assert_decoupled_infer_success( | ||
self, | ||
number_of_response_before_return, | ||
send_complete_final_flag_before_return, | ||
return_a_response, | ||
number_of_response_after_return, | ||
send_complete_final_flag_after_return, | ||
): | ||
model_name = "response_sender_decoupled" | ||
responses = self._infer( | ||
model_name, | ||
number_of_response_before_return, | ||
send_complete_final_flag_before_return, | ||
return_a_response, | ||
number_of_response_after_return, | ||
send_complete_final_flag_after_return, | ||
) | ||
self._assert_responses_valid( | ||
responses, | ||
number_of_response_before_return, | ||
return_a_response, | ||
number_of_response_after_return, | ||
) | ||
# Do NOT group into a for-loop as it hides which model failed. | ||
model_name = "response_sender_decoupled_async" | ||
responses = self._infer( | ||
model_name, | ||
number_of_response_before_return, | ||
send_complete_final_flag_before_return, | ||
return_a_response, | ||
number_of_response_after_return, | ||
send_complete_final_flag_after_return, | ||
) | ||
self._assert_responses_valid( | ||
responses, | ||
number_of_response_before_return, | ||
return_a_response, | ||
number_of_response_after_return, | ||
) | ||
|
||
def _assert_non_decoupled_infer_success( | ||
self, | ||
number_of_response_before_return, | ||
send_complete_final_flag_before_return, | ||
return_a_response, | ||
number_of_response_after_return, | ||
send_complete_final_flag_after_return, | ||
): | ||
model_name = "response_sender" | ||
responses = self._infer( | ||
model_name, | ||
number_of_response_before_return, | ||
send_complete_final_flag_before_return, | ||
return_a_response, | ||
number_of_response_after_return, | ||
send_complete_final_flag_after_return, | ||
) | ||
self._assert_responses_valid( | ||
responses, | ||
number_of_response_before_return, | ||
return_a_response, | ||
number_of_response_after_return, | ||
) | ||
# Do NOT group into a for-loop as it hides which model failed. | ||
model_name = "response_sender_async" | ||
responses = self._infer( | ||
model_name, | ||
number_of_response_before_return, | ||
send_complete_final_flag_before_return, | ||
return_a_response, | ||
number_of_response_after_return, | ||
send_complete_final_flag_after_return, | ||
) | ||
self._assert_responses_valid( | ||
responses, | ||
number_of_response_before_return, | ||
return_a_response, | ||
number_of_response_after_return, | ||
) | ||
|
||
# Decoupled model send response final flag before request return. | ||
def test_decoupled_zero_response_pre_return(self): | ||
self._assert_decoupled_infer_success( | ||
number_of_response_before_return=0, | ||
send_complete_final_flag_before_return=True, | ||
return_a_response=False, | ||
number_of_response_after_return=0, | ||
send_complete_final_flag_after_return=False, | ||
) | ||
|
||
# Decoupled model send response final flag after request return. | ||
def test_decoupled_zero_response_post_return(self): | ||
self._assert_decoupled_infer_success( | ||
number_of_response_before_return=0, | ||
send_complete_final_flag_before_return=False, | ||
return_a_response=False, | ||
number_of_response_after_return=0, | ||
send_complete_final_flag_after_return=True, | ||
) | ||
|
||
# Decoupled model send 1 response before request return. | ||
def test_decoupled_one_response_pre_return(self): | ||
self._assert_decoupled_infer_success( | ||
number_of_response_before_return=1, | ||
send_complete_final_flag_before_return=True, | ||
return_a_response=False, | ||
number_of_response_after_return=0, | ||
send_complete_final_flag_after_return=False, | ||
) | ||
|
||
# Decoupled model send 1 response after request return. | ||
def test_decoupled_one_response_post_return(self): | ||
self._assert_decoupled_infer_success( | ||
number_of_response_before_return=0, | ||
send_complete_final_flag_before_return=False, | ||
return_a_response=False, | ||
number_of_response_after_return=1, | ||
send_complete_final_flag_after_return=True, | ||
) | ||
|
||
# Decoupled model send 2 response before request return. | ||
def test_decoupled_two_response_pre_return(self): | ||
self._assert_decoupled_infer_success( | ||
number_of_response_before_return=2, | ||
send_complete_final_flag_before_return=True, | ||
return_a_response=False, | ||
number_of_response_after_return=0, | ||
send_complete_final_flag_after_return=False, | ||
) | ||
|
||
# Decoupled model send 2 response after request return. | ||
def test_decoupled_two_response_post_return(self): | ||
self._assert_decoupled_infer_success( | ||
number_of_response_before_return=0, | ||
send_complete_final_flag_before_return=False, | ||
return_a_response=False, | ||
number_of_response_after_return=2, | ||
send_complete_final_flag_after_return=True, | ||
) | ||
|
||
# Decoupled model send 1 and 3 responses before and after return. | ||
def test_decoupled_response_pre_and_post_return(self): | ||
self._assert_decoupled_infer_success( | ||
number_of_response_before_return=1, | ||
send_complete_final_flag_before_return=False, | ||
return_a_response=False, | ||
number_of_response_after_return=3, | ||
send_complete_final_flag_after_return=True, | ||
) | ||
|
||
# Non-decoupled model send 1 response on return. | ||
def test_non_decoupled_one_response_on_return(self): | ||
self._assert_non_decoupled_infer_success( | ||
number_of_response_before_return=0, | ||
send_complete_final_flag_before_return=False, | ||
return_a_response=True, | ||
number_of_response_after_return=0, | ||
send_complete_final_flag_after_return=False, | ||
) | ||
|
||
|
||
if __name__ == "__main__": | ||
unittest.main() |
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,89 @@ | ||
#!/bin/bash | ||
# Copyright 2024, 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. | ||
|
||
source ../../common/util.sh | ||
|
||
RET=0 | ||
|
||
# | ||
# Test response sender under decoupled / non-decoupled | ||
# | ||
rm -rf models && mkdir models | ||
mkdir -p models/response_sender/1 && \ | ||
cp ../../python_models/response_sender/model_common.py models/response_sender/1 && \ | ||
cp ../../python_models/response_sender/model.py models/response_sender/1 && \ | ||
cp ../../python_models/response_sender/config.pbtxt models/response_sender | ||
mkdir -p models/response_sender_decoupled/1 && \ | ||
cp ../../python_models/response_sender/model_common.py models/response_sender_decoupled/1 && \ | ||
cp ../../python_models/response_sender/model.py models/response_sender_decoupled/1 && \ | ||
cp ../../python_models/response_sender/config.pbtxt models/response_sender_decoupled && \ | ||
echo "model_transaction_policy { decoupled: True }" >> models/response_sender_decoupled/config.pbtxt | ||
mkdir -p models/response_sender_async/1 && \ | ||
cp ../../python_models/response_sender/model_common.py models/response_sender_async/1 && \ | ||
cp ../../python_models/response_sender/model_async.py models/response_sender_async/1/model.py && \ | ||
cp ../../python_models/response_sender/config.pbtxt models/response_sender_async | ||
mkdir -p models/response_sender_decoupled_async/1 && \ | ||
cp ../../python_models/response_sender/model_common.py models/response_sender_decoupled_async/1 && \ | ||
cp ../../python_models/response_sender/model_async.py models/response_sender_decoupled_async/1/model.py && \ | ||
cp ../../python_models/response_sender/config.pbtxt models/response_sender_decoupled_async && \ | ||
echo "model_transaction_policy { decoupled: True }" >> models/response_sender_decoupled_async/config.pbtxt | ||
|
||
TEST_LOG="response_sender_test.log" | ||
SERVER_LOG="response_sender_test.server.log" | ||
SERVER_ARGS="--model-repository=${MODELDIR}/response_sender/models --backend-directory=${BACKEND_DIR} --log-verbose=1" | ||
|
||
run_server | ||
if [ "$SERVER_PID" == "0" ]; then | ||
echo -e "\n***\n*** Failed to start $SERVER\n***" | ||
cat $SERVER_LOG | ||
exit 1 | ||
fi | ||
|
||
set +e | ||
SERVER_LOG=$SERVER_LOG python3 -m pytest --junitxml=concurrency_test.report.xml response_sender_test.py > $TEST_LOG 2>&1 | ||
if [ $? -ne 0 ]; then | ||
echo -e "\n***\n*** response sender test FAILED\n***" | ||
cat $TEST_LOG | ||
RET=1 | ||
fi | ||
set -e | ||
|
||
kill $SERVER_PID | ||
wait $SERVER_PID | ||
|
||
# | ||
# Test async response sender under decoupled / non-decoupled | ||
# | ||
|
||
# TODO | ||
|
||
if [ $RET -eq 1 ]; then | ||
echo -e "\n***\n*** Response sender test FAILED\n***" | ||
else | ||
echo -e "\n***\n*** Response sender test Passed\n***" | ||
fi | ||
exit $RET |
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
Oops, something went wrong.