Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Add a test for session config in onnxruntime backend #7962

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion qa/L0_onnx_optimization/test.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2021-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright 2021-2025, 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
Expand Down Expand Up @@ -66,6 +66,11 @@ for MODEL in \
(cd models/${MODEL}_test && \
sed -i 's/_float32_float32_float32/&_test/' config.pbtxt && \
echo -e "\ninstance_group { count: ${INSTANCE_COUNT} }" >> config.pbtxt) && \
# Enable session.use_device_allocator_for_initializers
cp -r models/${MODEL}_test models/${MODEL}_session_config && \
(cd models/${MODEL}_session_config && \
sed -i 's/_float32_test/_float32_session_config/' config.pbtxt && \
echo "parameters: { key: \"session.use_device_allocator_for_initializers\" value: { string_value: \"1\" }}" >> config.pbtxt) && \
# CUDA EP optimization params
cp -r models/${MODEL}_test models/${MODEL}_cuda_config && \
(cd models/${MODEL}_cuda_config && \
Expand Down Expand Up @@ -160,6 +165,12 @@ for MODEL in \

set +e

grep "Configuring 'session.use_device_allocator_for_initializers' to '1'" $SERVER_LOG
if [ $? -ne 0 ]; then
echo -e "\n***\n*** Failed. Expected Configuring 'session.use_device_allocator_for_initializers' to '1'\n***"
RET=1
fi

grep "TensorRT Execution Accelerator is set for '${MODEL}_trt'" $SERVER_LOG
if [ $? -ne 0 ]; then
echo -e "\n***\n*** Failed. Expected TensorRT Execution Accelerator is set for '${MODEL}_trt'\n***"
Expand Down
Loading