@@ -15,15 +15,16 @@ red () {
1515
1616green " DOWNLOAD ALL ARCHIVES"
1717wget -c https://github.com/opencv/opencv/archive/4.3.0.tar.gz -O opencv.tar.gz
18- wget -c https://github.com/FFmpeg/FFmpeg/archive/n4.2.2.tar.gz -O ffmpeg.tar.gz
19- wget -c https://github.com/openvinotoolkit/openvino/archive/2020.2.tar.gz -O dldt.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
20+ wget -c https://github.com/xianyi/OpenBLAS/archive/v0.3.10.tar.gz -O openblas.tar.gz
2021
2122
2223green " CLEAN LIB DIRS"
2324rm -drf ./dldt/*
2425rm -drf ./ffmpeg/*
2526rm -drf ./opencv/*
26- find ./openblas/ -mindepth 1 -delete
27+ rm -drf ./openblas/*
2728
2829green " CLEAN BUILD DIRS"
2930find build/dldt/ -mindepth 1 -not -name ' dldt_setup.sh' -delete
@@ -38,9 +39,10 @@ rm -drf create_wheel/dist
3839rm -drf create_wheel/* egg-info
3940
4041green " UNZIP ALL STUFF"
42+ tar -xf opencv.tar.gz --strip-components=1 -C ./opencv/
4143tar -xf dldt.tar.gz --strip-components=1 -C ./dldt/
4244tar -xf ffmpeg.tar.gz --strip-components=1 -C ./ffmpeg/
43- tar -xf opencv .tar.gz --strip-components=1 -C ./opencv /
45+ tar -xf openblas .tar.gz --strip-components=1 -C ./openblas /
4446
4547green " GIT RESET FOR ade"
4648cd ./dldt/inference-engine/thirdparty/ade
@@ -52,11 +54,6 @@ cd ../../../ngraph
5254git clone https://github.com/NervanaSystems/ngraph ./
5355git reset --hard edc65ca
5456
55- green " GET RESET FOR OpenBLAS"
56- cd ../../openblas/
57- git clone --single-branch -b develop https://github.com/xianyi/OpenBLAS ./
58- git reset --hard 9f67d03 # 2020-Mar-23
59-
6057green " CREATE VENV"
6158cd ../
6259
0 commit comments