From 1815d711d3b83f9549842cf68275945468fe8928 Mon Sep 17 00:00:00 2001 From: Kyle McGill Date: Thu, 11 May 2023 11:40:28 -0700 Subject: [PATCH] Fix L0_custom_ops for ubuntu 22.04 --- qa/L0_custom_ops/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/L0_custom_ops/test.sh b/qa/L0_custom_ops/test.sh index e11026c83a..a12c1d67a4 100755 --- a/qa/L0_custom_ops/test.sh +++ b/qa/L0_custom_ops/test.sh @@ -171,7 +171,7 @@ SERVER_ARGS="--model-repository=/data/inferenceserver/${REPO_VERSION}/qa_custom_ # FIXME: Pre-loading the python library system to satisfy the symbol definitions # as the custom op library is built with different python version within # pytorch container. See DLIS-4152. -SERVER_LD_PRELOAD="/usr/lib/x86_64-linux-gnu/libpython3.8.so.1:/data/inferenceserver/${REPO_VERSION}/qa_custom_ops/libtorch_custom_ops/libtorch_modulo/custom_modulo.so" +SERVER_LD_PRELOAD="/usr/lib/x86_64-linux-gnu/libpython3.10.so.1:/data/inferenceserver/${REPO_VERSION}/qa_custom_ops/libtorch_custom_ops/libtorch_modulo/custom_modulo.so" run_server if [ "$SERVER_PID" == "0" ]; then echo -e "\n***\n*** Failed to start $SERVER\n***"