This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* pypi versioning fix * new versions * dependencies change * sha256 calculation * version bump * typo fixed * tmp * Update README.md * success with 2021.3 * test refactoring * test refactoring * numpy version upd * deprecated flags * doc refactoring * remove openblas
- Loading branch information
Showing
19 changed files
with
267 additions
and
216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# TODO list | ||
|
||
+ dldt 2021.3 (released) + opencv 4.5.2 (waiting for release) | ||
+ get rid of tensorflow-cpu in tests | ||
+ Auto value for `-D INF_ENGINE_RELEASE`: https://github.com/openvinotoolkit/openvino/issues/1435 | ||
+ https://answers.opencv.org/question/236271/what-the-difference-between-cv_version_status-values/ | ||
+ <https://answers.opencv.org/question/236271/what-the-difference-between-cv_version_status-values/> | ||
+ `ENABLE_AVX512F`, how often you see such CPUs in clouds? | ||
+ `avresample` from ffmpeg to the opencv, do we need it? | ||
+ results of `test_inference_engine()[::-1]` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,40 @@ | ||
#!/bin/bash | ||
|
||
# GEMM (General matrix-matrix multiplication) | ||
# | ||
# -D BUILD_SHARED_LIBS=ON always crash | ||
|
||
tmp=$(pwd) | ||
BLAS_LIB="${tmp%dldt}openblas/lib/libopenblas.so.0" | ||
BLAS_INC="${tmp%dldt}openblas/include/openblas" | ||
|
||
if [ ! -f $BLAS_LIB ] || [ ! -d $BLAS_INC ]; then | ||
echo "!!! Check paths for openblas lib !!!" | ||
echo "I tried: $BLAS_LIB and $BLAS_INC" | ||
exit | ||
fi | ||
|
||
# <https://github.com/openvinotoolkit/openvino/issues/4527> | ||
patch ../../dldt/inference-engine/cmake/dependencies.cmake dependencies.patch | ||
|
||
|
||
# Manually-specified variables were not used by the project: | ||
# -D ENABLE_NGRAPH=ON \ | ||
# https://github.com/openvinotoolkit/openvino/wiki/CMakeOptionsForCustomCompilation | ||
# https://github.com/openvinotoolkit/openvino/issues/4527 | ||
# -D ENABLE_OPENCV=OFF \ | ||
# https://github.com/openvinotoolkit/openvino/issues/5100 | ||
# -D BUILD_SHARED_LIBS=OFF \ | ||
# -D BUILD_SHARED_LIBS=ON \ | ||
# https://github.com/openvinotoolkit/openvino/issues/5209 | ||
# -D NGRAPH_TOOLS_ENABLE=OFF \ | ||
cmake -D CMAKE_BUILD_TYPE=Release \ | ||
-D GEMM=OPENBLAS \ | ||
-D THREADING=TBB \ | ||
-D ENABLE_MKL_DNN=ON \ | ||
-D GEMM=JIT \ | ||
-D ENABLE_FASTER_BUILD=ON \ | ||
-D ENABLE_LTO=ON \ | ||
-D ENABLE_VPU=ON \ | ||
-D ENABLE_MYRIAD=ON \ | ||
-D ENABLE_OPENCV=ON \ | ||
-D ENABLE_MKL_DNN=ON \ | ||
-D BUILD_SHARED_LIBS=OFF \ | ||
-D BUILD_TESTS=OFF \ | ||
-D ENABLE_PYTHON=OFF \ | ||
-D ENABLE_TESTS=OFF \ | ||
-D ENABLE_SAMPLES=OFF \ | ||
-D ENABLE_GAPI_TESTS=OFF \ | ||
-D GAPI_TEST_PERF=OFF \ | ||
-D ENABLE_GNA=OFF \ | ||
-D ENABLE_PROFILING_ITT=OFF \ | ||
-D ENABLE_ALTERNATIVE_TEMP=OFF \ | ||
-D ENABLE_SSE42=ON \ | ||
-D ENABLE_AVX2=ON \ | ||
-D ENABLE_AVX512F=OFF \ | ||
-D NGRAPH_UNIT_TEST_ENABLE=OFF \ | ||
-D NGRAPH_TEST_UTIL_ENABLE=OFF \ | ||
-D NGRAPH_ONNX_IMPORT_ENABLE=ON \ | ||
-D BLAS_LIBRARIES="$BLAS_LIB" \ | ||
-D BLAS_INCLUDE_DIRS="$BLAS_INC" \ | ||
-D BUILD_TESTS=OFF \ | ||
-D ENABLE_ALTERNATIVE_TEMP=OFF \ | ||
-D ENABLE_CLDNN=OFF \ | ||
-D ENABLE_CLDNN_TESTS=OFF \ | ||
-D ENABLE_DOCS=OFF \ | ||
-D ENABLE_GAPI_TESTS=OFF \ | ||
-D ENABLE_GNA=OFF \ | ||
-D ENABLE_OPENCV=OFF \ | ||
-D ENABLE_PROFILING_ITT=OFF \ | ||
-D ENABLE_PYTHON=OFF \ | ||
-D ENABLE_SAMPLES=OFF \ | ||
-D ENABLE_SPEECH_DEMO=OFF ../../dldt/ | ||
-D ENABLE_SPEECH_DEMO=OFF \ | ||
-D ENABLE_TESTS=OFF \ | ||
-D GAPI_TEST_PERF=OFF \ | ||
-D NGRAPH_ONNX_IMPORT_ENABLE=ON \ | ||
-D NGRAPH_TEST_UTIL_ENABLE=OFF \ | ||
-D NGRAPH_TOOLS_ENABLE=OFF \ | ||
-D NGRAPH_UNIT_TEST_ENABLE=OFF \ | ||
-D SELECTIVE_BUILD=OFF ../../dldt/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule dldt
updated
6102 files
Submodule openblas
deleted from
d2b11c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
numpy==1.19.2 | ||
numpy |
Oops, something went wrong.