fixed scripts permissions
authoropenvino-pushbot <openvinopushbot@intel.com>
Tue, 16 Oct 2018 17:52:11 +0000 (20:52 +0300)
committeropenvino-pushbot <openvinopushbot@intel.com>
Tue, 16 Oct 2018 17:52:11 +0000 (20:52 +0300)
15 files changed:
inference-engine/README.md
inference-engine/cmake/download_and_check.cmake
inference-engine/install_dependencies.sh [changed mode: 0644->0755]
model-optimizer/install_prerequisites/install_prerequisites.sh [changed mode: 0644->0755]
model-optimizer/install_prerequisites/install_prerequisites_caffe.sh [changed mode: 0644->0755]
model-optimizer/install_prerequisites/install_prerequisites_kaldi.sh [changed mode: 0644->0755]
model-optimizer/install_prerequisites/install_prerequisites_mxnet.sh [changed mode: 0644->0755]
model-optimizer/install_prerequisites/install_prerequisites_onnx.sh [changed mode: 0644->0755]
model-optimizer/install_prerequisites/install_prerequisites_tf.sh [changed mode: 0644->0755]
model-optimizer/mo.py [changed mode: 0644->0755]
model-optimizer/mo_caffe.py [changed mode: 0644->0755]
model-optimizer/mo_kaldi.py [changed mode: 0644->0755]
model-optimizer/mo_mxnet.py [changed mode: 0644->0755]
model-optimizer/mo_onnx.py [changed mode: 0644->0755]
model-optimizer/mo_tf.py [changed mode: 0644->0755]

index 8e800a4..bf0fa56 100644 (file)
@@ -35,7 +35,7 @@ The software was validated on:
 
 ### Software Requirements
 - [CMake\*](https://cmake.org/download/) 3.9 or higher
-- [OpenBLAS\*](https://sourceforge.net/projects/openblas/files/v0.2.14/OpenBLAS-v0.2.14-Win64-int64.zip/download) or 
+- [OpenBLAS\*](https://sourceforge.net/projects/openblas/files/v0.2.14/OpenBLAS-v0.2.14-Win64-int64.zip/download) and [mingw64\* runtime dependencies](https://sourceforge.net/projects/openblas/files/v0.2.14/mingw64_dll.zip/download).
 - [IntelĀ® C++ Compiler](https://software.intel.com/en-us/intel-parallel-studio-xe) 18.0 to build the Inference Engine on Windows.
 
 ### Build Steps
index 24cd4ad..659354f 100644 (file)
@@ -25,7 +25,7 @@ function (DownloadAndCheck from to fatal result)
           list(GET output 0 status_code)
         else()
           message(STATUS "${WGET_EXECUTABLE} --no-cache ${from}")
-          execute_process(COMMAND ${WGET_EXECUTABLE} "--no-cache" "${from}" "-O" "${to}"
+          execute_process(COMMAND ${WGET_EXECUTABLE} "--no-cache" "--no-check-certificate" "${from}" "-O" "${to}"
             TIMEOUT 2000
             RESULT_VARIABLE status_code)
         endif()
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)