Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 61f7d41

Browse files
committed
dldt 2020.1 changes
1 parent ef3bc66 commit 61f7d41

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,13 @@ I compiled it on Ubuntu 18.04 Linux Container.
107107
sudo apt-get update
108108
sudo apt install build-essential cmake git pkg-config python3-dev nasm python3 virtualenv libusb-1.0-0-dev chrpath patchelf
109109
```
110+
#### Optional ranger-fm installation
110111

112+
```
113+
sudo apt install python3-pip
114+
pip3 install ranger-fm --user
115+
export PATH=~/.local/bin:$PATH
116+
```
111117
### Preparing
112118

113119
1. Download releases of [dldt](https://github.com/opencv/dldt/releases), [opencv](https://github.com/opencv/opencv/releases) and [ffmpeg](https://github.com/FFmpeg/FFmpeg/releases) (or clone their repos)
@@ -120,9 +126,9 @@ cd dldt/inference-engine/thirdparty/ade
120126
git clone https://github.com/opencv/ade/ ./
121127
git reset --hard cbe2db6
122128

123-
cd ../ngraph
129+
cd ../../../ngraph
124130
git clone https://github.com/NervanaSystems/ngraph ./
125-
git reset --hard ac02fb9
131+
git reset --hard b0bb801
126132
```
127133

128134
4. Next, we will need a python3 virtual environment with `numpy`:

build/dldt/dldt_setup.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
# for ENABLE_SSE42/AVX2/AVX512F see dldt/inference-engine/src/extension/cmake/OptimizationFlags.cmake
3232
#
3333
# if you'll set -D ENABLE_PLUGIN_RPATH=ON, you'll need to chrpath ~4 *.so, better to setrpath one .so
34+
#
35+
# >We moved root CMakeLists.txt from dldt/inference-engine to dldt
36+
# >[name=<https://github.com/opencv/dldt/issues/284>]
3437

3538
cmake -D CMAKE_BUILD_TYPE=Release \
3639
-D THREADING=TBB \
@@ -56,4 +59,4 @@ cmake -D CMAKE_BUILD_TYPE=Release \
5659
-D ENABLE_SSE42=ON \
5760
-D ENABLE_AVX2=ON \
5861
-D ENABLE_AVX512F=OFF \
59-
-D ENABLE_CLDNN=OFF ../../dldt/inference-engine/
62+
-D ENABLE_CLDNN=OFF ../../dldt/

0 commit comments

Comments
 (0)