@@ -9,14 +9,18 @@ green () {
99 echo -e " ${green}${1}${end} "
1010}
1111
12+
1213red () {
1314 echo -e " ${red}${1}${end} "
1415}
1516
17+
18+ ROOT_DIR=$( pwd)
19+
1620green " DOWNLOAD ALL ARCHIVES"
17- wget -c https://github.com/opencv/opencv/archive/4.3 .0.tar.gz -O opencv.tar.gz
18- wget -c https://github.com/openvinotoolkit/openvino/archive/2020.3.0 .tar.gz -O dldt.tar.gz
19- wget -c https://github.com/FFmpeg/FFmpeg/archive/n4.3.tar.gz -O ffmpeg.tar.gz
21+ wget -c https://github.com/opencv/opencv/archive/4.4 .0.tar.gz -O opencv.tar.gz
22+ wget -c https://github.com/openvinotoolkit/openvino/archive/2020.4 .tar.gz -O dldt.tar.gz
23+ wget -c https://github.com/FFmpeg/FFmpeg/archive/n4.3.1. tar.gz -O ffmpeg.tar.gz
2024wget -c https://github.com/xianyi/OpenBLAS/archive/v0.3.10.tar.gz -O openblas.tar.gz
2125
2226
@@ -49,13 +53,19 @@ cd ./dldt/inference-engine/thirdparty/ade
4953git clone https://github.com/opencv/ade/ ./
5054git reset --hard cbe2db6
5155
52- green " GIT RESET FOR ngraph"
53- cd ../../../ngraph
54- git clone https://github.com/NervanaSystems/ngraph ./
55- git reset --hard edc65ca
56+ green " GIT RESET FOR mkl-dnn"
57+ cd ../mkl-dnn
58+ git clone https://github.com/openvinotoolkit/oneDNN/ ./
59+ git reset --hard 2706f56
60+
61+ green " GIT RESET FOR IE samples gflags"
62+ cd ../../samples/thirdparty/gflags/
63+ git clone https://github.com/gflags/gflags ./
64+ git reset --hard 46f73f8
65+
5666
5767green " CREATE VENV"
58- cd ../
68+ cd $ROOT_DIR
5969
6070if [[ ! -d ./venv ]]; then
6171 virtualenv --clear --always-copy -p /usr/bin/python3 ./venv
0 commit comments