mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 21:09:03 +02:00

* Release notes: https://software.intel.com/en-us/articles/OpenVINO-RelNotes * Enable unit tests to be built and tested using ptest mechanism. * Include patches from Clear Linux for build fixes. * Switch to using python3 and threading to using TBB. Switch ENABLE_OPENCV to off so opencv from system is used. * Remove do_install and patch Makefiles instead to install libraries correctly. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
45 lines
1.5 KiB
Diff
45 lines
1.5 KiB
Diff
From f4533f5bfce9daee08a4fea61736315fbe4ad6db Mon Sep 17 00:00:00 2001
|
|
From: Anuj Mittal <anuj.mittal@intel.com>
|
|
Date: Fri, 27 Sep 2019 11:34:36 +0800
|
|
Subject: [PATCH] Supply firmware at build time
|
|
|
|
We'd like to supply firmware when fetching the sources. Disable runtime
|
|
fetching and point to fetched firmware instead.
|
|
|
|
Upstream-Status: Submitted
|
|
|
|
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
|
|
---
|
|
inference-engine/cmake/dependencies.cmake | 18 ------------------
|
|
1 file changed, 18 deletions(-)
|
|
|
|
diff --git a/inference-engine/cmake/dependencies.cmake b/inference-engine/cmake/dependencies.cmake
|
|
index d493426..666ace6 100644
|
|
--- a/inference-engine/cmake/dependencies.cmake
|
|
+++ b/inference-engine/cmake/dependencies.cmake
|
|
@@ -22,24 +22,6 @@ if(COMMAND get_linux_name)
|
|
get_linux_name(LINUX_OS_NAME)
|
|
endif()
|
|
|
|
-if (ENABLE_MYRIAD)
|
|
- RESOLVE_DEPENDENCY(VPU_FIRMWARE_MA2450
|
|
- ARCHIVE_UNIFIED firmware_ma2450_676.zip
|
|
- TARGET_PATH "${TEMP}/vpu/firmware/ma2450"
|
|
- ENVIRONMENT "VPU_FIRMWARE_MA2450"
|
|
- FOLDER)
|
|
- debug_message(STATUS "ma2450=" ${VPU_FIRMWARE_MA2450})
|
|
-endif ()
|
|
-
|
|
-if (ENABLE_MYRIAD)
|
|
- RESOLVE_DEPENDENCY(VPU_FIRMWARE_MA2X8X
|
|
- ARCHIVE_UNIFIED firmware_ma2x8x_mdk_R8_9.zip
|
|
- TARGET_PATH "${TEMP}/vpu/firmware/ma2x8x"
|
|
- ENVIRONMENT "VPU_FIRMWARE_MA2X8X"
|
|
- FOLDER)
|
|
- debug_message(STATUS "ma2x8x=" ${VPU_FIRMWARE_MA2X8X})
|
|
-endif ()
|
|
-
|
|
## enable cblas_gemm from OpenBLAS package
|
|
if (GEMM STREQUAL "OPENBLAS")
|
|
if(NOT BLAS_LIBRARIES OR NOT BLAS_INCLUDE_DIRS)
|