Skip to content

Commit 0825c35

Browse files
authored
OpenVINO 2023.3.0 (#238)
* Use OpenVINO 2023.3.0 * OV 2023.3.0
1 parent 18cdc4a commit 0825c35

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

tools/gen_ort_dockerfile.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,18 +129,18 @@ def dockerfile_for_linux(output_file):
129129
ENV INTEL_OPENVINO_DIR /opt/intel/openvino_${ONNXRUNTIME_OPENVINO_VERSION}
130130
131131
# Step 1: Download and install core components
132-
# Ref: https://docs.openvino.ai/2023.0/openvino_docs_install_guides_installing_openvino_from_archive_linux.html#step-1-download-and-install-the-openvino-core-components
133-
RUN curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_ubuntu22_2023.0.0.10926.b4452d56304_x86_64.tgz --output openvino_${ONNXRUNTIME_OPENVINO_VERSION}.tgz && \
132+
# Ref: https://docs.openvino.ai/2023.3/openvino_docs_install_guides_installing_openvino_from_archive_linux.html#step-1-download-and-install-the-openvino-core-components
133+
RUN curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.3/linux/l_openvino_toolkit_ubuntu22_2023.3.0.13775.ceeafaf64f3_x86_64.tgz --output openvino_${ONNXRUNTIME_OPENVINO_VERSION}.tgz && \
134134
tar -xf openvino_${ONNXRUNTIME_OPENVINO_VERSION}.tgz && \
135135
mkdir -p ${INTEL_OPENVINO_DIR} && \
136-
mv l_openvino_toolkit_ubuntu22_2023.0.0.10926.b4452d56304_x86_64/* ${INTEL_OPENVINO_DIR} && \
136+
mv l_openvino_toolkit_ubuntu22_2023.3.0.13775.ceeafaf64f3_x86_64/* ${INTEL_OPENVINO_DIR} && \
137137
rm openvino_${ONNXRUNTIME_OPENVINO_VERSION}.tgz && \
138138
(cd ${INTEL_OPENVINO_DIR}/install_dependencies && \
139139
./install_openvino_dependencies.sh -y) && \
140140
ln -s ${INTEL_OPENVINO_DIR} ${INTEL_OPENVINO_DIR}/../openvino_`echo ${ONNXRUNTIME_OPENVINO_VERSION} | awk '{print substr($0,0,4)}'`
141141
142142
# Step 2: Configure the environment
143-
# Ref: https://docs.openvino.ai/2023.0/openvino_docs_install_guides_installing_openvino_from_archive_linux.html#step-2-configure-the-environment
143+
# Ref: https://docs.openvino.ai/2023.3/openvino_docs_install_guides_installing_openvino_from_archive_linux.html#step-2-configure-the-environment
144144
ENV InferenceEngine_DIR=$INTEL_OPENVINO_DIR/runtime/cmake
145145
ENV ngraph_DIR=$INTEL_OPENVINO_DIR/runtime/cmake
146146
ENV OpenVINO_DIR=$INTEL_OPENVINO_DIR/runtime/cmake
@@ -322,8 +322,7 @@ def dockerfile_for_linux(output_file):
322322
/opt/onnxruntime/lib && \
323323
cp ${INTEL_OPENVINO_DIR}/runtime/lib/intel64/libopenvino_onnx_frontend.so.${ONNXRUNTIME_OPENVINO_VERSION} \
324324
/opt/onnxruntime/lib && \
325-
cp /usr/lib/x86_64-linux-gnu/libtbb.so.12 /opt/onnxruntime/lib && \
326-
cp /usr/lib/x86_64-linux-gnu/libpugixml.so.1 /opt/onnxruntime/lib
325+
cp /usr/lib/x86_64-linux-gnu/libtbb.so.12 /opt/onnxruntime/lib
327326
328327
RUN OV_SHORT_VERSION=`echo ${ONNXRUNTIME_OPENVINO_VERSION} | awk '{ split($0,a,"."); print substr(a[1],3) a[2] a[3] }'` && \
329328
(cd /opt/onnxruntime/lib && \

0 commit comments

Comments
 (0)