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

Commit 7a57a8d

Browse files
committed
tmp
1 parent 012513a commit 7a57a8d

2 files changed

Lines changed: 15 additions & 10 deletions

File tree

build/dldt/dldt_setup.sh

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,33 @@ tmp=$(pwd)
88
BLAS_LIB="${tmp%dldt}openblas/lib/libopenblas.so.0"
99
BLAS_INC="${tmp%dldt}openblas/include/openblas"
1010

11-
if [ ! -f $BLAS_LIB ] || [ ! -d $BLAS_INC ]; then
12-
echo "!!! Check paths for openblas lib !!!"
13-
echo "I tried: $BLAS_LIB and $BLAS_INC"
14-
exit
15-
fi
11+
#if [ ! -f $BLAS_LIB ] || [ ! -d $BLAS_INC ]; then
12+
# echo "!!! Check paths for openblas lib !!!"
13+
# echo "I tried: $BLAS_LIB and $BLAS_INC"
14+
# exit
15+
#fi
1616

1717
# <https://github.com/openvinotoolkit/openvino/issues/4527>
1818
# look for proper values at <https://download.01.org/opencv/master/openvinotoolkit/thirdparty/linux/opencv/>
1919
# calculate hash256 manually
20-
patch ../../dldt/inference-engine/cmake/dependencies.cmake dependencies.patch
20+
#patch ../../dldt/inference-engine/cmake/dependencies.cmake dependencies.patch
2121

2222

2323
# Manually-specified variables were not used by the project:
2424
# -D ENABLE_NGRAPH=ON \
2525
cmake -D CMAKE_BUILD_TYPE=Release \
26-
-D GEMM=OPENBLAS \
26+
-D ENABLE_LTO=ON \
27+
-D GEMM=JIT \
2728
-D THREADING=TBB \
2829
-D ENABLE_VPU=ON \
2930
-D ENABLE_MYRIAD=ON \
30-
-D ENABLE_OPENCV=ON \
31+
-D ENABLE_OPENCV=OFF \
3132
-D ENABLE_MKL_DNN=ON \
3233
-D BUILD_SHARED_LIBS=OFF \
3334
-D BUILD_TESTS=OFF \
3435
-D ENABLE_PYTHON=OFF \
3536
-D ENABLE_TESTS=OFF \
37+
-D ENABLE_DOCS=OFF \
3638
-D ENABLE_SAMPLES=OFF \
3739
-D ENABLE_GAPI_TESTS=OFF \
3840
-D GAPI_TEST_PERF=OFF \
@@ -50,5 +52,5 @@ cmake -D CMAKE_BUILD_TYPE=Release \
5052
-D ENABLE_CLDNN=OFF \
5153
-D ENABLE_CLDNN_TESTS=OFF \
5254
-D ENABLE_PROFILING_ITT=OFF \
53-
-D ENABLE_SAMPLES=OFF \
55+
-D SELECTIVE_BUILD=OFF \
5456
-D ENABLE_SPEECH_DEMO=OFF ../../dldt/

build/ffmpeg/ffmpeg_setup.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/bash
2+
# deprecated: --enable-avresample , switch to libswresample
3+
# The libswresample library performs highly optimized audio resampling,
4+
# rematrixing and sample format conversion operations.
25

36
PATH_TO_SCRIPT=`dirname $(realpath $0)`
47

@@ -40,4 +43,4 @@ PATH_TO_SCRIPT=`dirname $(realpath $0)`
4043
--disable-doc \
4144
--disable-static \
4245
--enable-pic \
43-
--enable-shared
46+
--enable-shared \

0 commit comments

Comments
 (0)