From d8313f482ec6d08b6a89b5a99d708884a781ff81 Mon Sep 17 00:00:00 2001 From: Katherine Yang Date: Wed, 26 Jul 2023 12:58:40 -0700 Subject: [PATCH] pre-commit --- qa/L0_backend_python/env/test.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/qa/L0_backend_python/env/test.sh b/qa/L0_backend_python/env/test.sh index 529a0672daa..dbfc5fe325b 100755 --- a/qa/L0_backend_python/env/test.sh +++ b/qa/L0_backend_python/env/test.sh @@ -151,7 +151,7 @@ done conda update -n base -c defaults conda -y rm $SERVER_LOG # Create a model with python 3.8 version -# Successful execution of the Python model indicates that the environment has +# Successful execution of the Python model indicates that the environment has # been setup correctly. create_conda_env "3.8" "python-3-8" @@ -174,7 +174,7 @@ cp ../../python_models/python_version/model.py ./models/python_3_8/1/ cp python_backend/builddir/triton_python_backend_stub ./models/python_3_8 # Create a model with python 3.9 version -# Successful execution of the Python model indicates that the environment has +# Successful execution of the Python model indicates that the environment has # been setup correctly. create_conda_env "3.9" "python-3-9" conda install -c conda-forge libstdcxx-ng=12 -y @@ -195,12 +195,12 @@ cp ../../python_models/python_version/model.py ./models/python_3_9/1/ cp python_backend/builddir/triton_python_backend_stub ./models/python_3_9 # Create a model with python 3.11 version -# Successful execution of the Python model indicates that the environment has +# Successful execution of the Python model indicates that the environment has # been setup correctly. create_conda_env "3.11" "python-3-11" -# tensorflow needs to be installed before numpy so pip does not mess up conda +# tensorflow needs to be installed before numpy so pip does not mess up conda # enviroment -pip install tensorflow==2.12.0 +pip install tensorflow==2.12.0 conda install -c conda-forge libstdcxx-ng=12 -y conda install numpy=1.23.5 -y PY311_VERSION_STRING="Python version is 3.11, NumPy version is 1.23.5, and Tensorflow version is 2.12.0"