File tree Expand file tree Collapse file tree 3 files changed +6
-11
lines changed
Expand file tree Collapse file tree 3 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -41,17 +41,14 @@ jobs:
4141 apt install -y libtbb2
4242
4343 - name : Install OpenVINO
44- env :
45- OPENVINO_VERSION : " 2023.0.0"
46- OPENVINO_YEAR : " 2023"
4744 working-directory : scripts
4845 run : |
4946 bash install_openvino.sh
5047
5148 - name : Install WasmEdge with Wasi-NN OpenVINO plugin
5249 env :
5350 CMAKE_BUILD_TYPE : " Release"
54- VERSION : " 0.13.2 "
51+ VERSION : " 0.13.4 "
5552 run : |
5653 ldconfig
5754 curl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash -s -- -v $VERSION -p /usr/local --plugins wasi_nn-openvino
6663 cargo build --target wasm32-wasi --release
6764 cd ..
6865 wasmedge --dir .:. ./rust/target/wasm32-wasi/release/wasmedge-wasinn-example-mobilenet.wasm mobilenet.xml mobilenet.bin tensor-1x224x224x3-f32.bgr
69-
66+
7067 - name : Build and run openvino-mobilenet-image
7168 working-directory : openvino-mobilenet-image
7269 run : |
7572 cd rust
7673 cargo build --target wasm32-wasi --release
7774 cd ..
78- wasmedge --dir .:. ./rust/target/wasm32-wasi/release/wasmedge-wasinn-example-mobilenet-image.wasm mobilenet.xml mobilenet.bin input.jpg
75+ wasmedge --dir .:. ./rust/target/wasm32-wasi/release/wasmedge-wasinn-example-mobilenet-image.wasm mobilenet.xml mobilenet.bin input.jpg
Original file line number Diff line number Diff line change @@ -40,17 +40,14 @@ jobs:
4040 apt install -y libtbb2
4141
4242 - name : Install OpenVINO
43- env :
44- OPENVINO_VERSION : " 2023.0.0"
45- OPENVINO_YEAR : " 2023"
4643 working-directory : scripts
4744 run : |
4845 bash install_openvino.sh
4946
5047 - name : Install WasmEdge with Wasi-NN OpenVINO plugin
5148 env :
5249 CMAKE_BUILD_TYPE : " Release"
53- VERSION : " 0.13.2 "
50+ VERSION : " 0.13.4 "
5451 run : |
5552 ldconfig
5653 curl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash -s -- -v $VERSION -p /usr/local --plugins wasi_nn-openvino
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -e
3- echo " Installing OpenVINO with version 2023.0.0 "
3+ echo " Installing OpenVINO with version 2023.0.2 "
44wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
55apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
66echo " deb https://apt.repos.intel.com/openvino/2023 ubuntu20 main" | tee /etc/apt/sources.list.d/intel-openvino-2023.list
77apt update
88apt-get -y install openvino
99ldconfig
10+ export PATH=/usr/lib/x86_64-linux-gnu:$PATH
You can’t perform that action at this time.
0 commit comments