From e1e0ada90805e45905ae8c4688c1b3a185538130 Mon Sep 17 00:00:00 2001 From: Ryan McCormick Date: Tue, 22 Oct 2024 17:20:39 -0700 Subject: [PATCH 1/2] L0_client_nobatch: Copy models out of NFS --- qa/L0_client_nobatch/test.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qa/L0_client_nobatch/test.sh b/qa/L0_client_nobatch/test.sh index 58b1b3dc58..9d3ccff86e 100755 --- a/qa/L0_client_nobatch/test.sh +++ b/qa/L0_client_nobatch/test.sh @@ -46,9 +46,10 @@ CLIENT_TEST=client_test.py EXPECTED_NUM_TESTS="4" DATADIR=/data/inferenceserver/${REPO_VERSION} - +MODELDIR="${PWD}/qa_model_repository" +rm -rf ${MODELDIR} && cp -r "${DATADIR}/qa_model_repository" ${MODELDIR} SERVER=/opt/tritonserver/bin/tritonserver -SERVER_ARGS="--model-repository=$DATADIR/qa_model_repository" +SERVER_ARGS="--model-repository=${MODELDIR}" SERVER_LOG="./inference_server.log" source ../common/util.sh From 8b66d31df42e3414e9709dbfd28c6b6b9399e3dd Mon Sep 17 00:00:00 2001 From: Ryan McCormick Date: Tue, 22 Oct 2024 17:25:25 -0700 Subject: [PATCH 2/2] Fix copyright from pre-commit --- qa/L0_client_nobatch/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/L0_client_nobatch/test.sh b/qa/L0_client_nobatch/test.sh index 9d3ccff86e..e768f385e5 100755 --- a/qa/L0_client_nobatch/test.sh +++ b/qa/L0_client_nobatch/test.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. +# Copyright 2018-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