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

For release notes, see: https://software.intel.com/content/www/us/en/develop/articles/openvino-relnotes.html The recipe has been changed to: - disable unit tests as they rely on an older version of googletest. - remove a patch as it was merged upstream. - backport a patch instead of using a local version. - refresh other patches. - download mkl-dnn separately instead of using the submodule. The project downloads a lot of other modules as well and we don't want/use those. - not download lfs documentation content. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
24 lines
1.0 KiB
Diff
24 lines
1.0 KiB
Diff
From ed444bf9f4dda442bd2da51140f45631163e0e55 Mon Sep 17 00:00:00 2001
|
|
From: Vladimir Zinoviev <vladimir.zinoviev@intel.com>
|
|
Date: Sun, 14 Jun 2020 18:54:36 +0300
|
|
Subject: [PATCH] [CLDNN] Fix std::runtime_error missing (#871)
|
|
|
|
Upstream-Status: Backport [https://github.com/openvinotoolkit/openvino/commit/ed444bf9f4dda442bd2da51140f45631163e0e55]
|
|
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
|
|
---
|
|
.../thirdparty/clDNN/kernel_selector/common/tensor_type.h | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/inference-engine/thirdparty/clDNN/kernel_selector/common/tensor_type.h b/inference-engine/thirdparty/clDNN/kernel_selector/common/tensor_type.h
|
|
index 3dbdfd0b22..2226f1a874 100644
|
|
--- a/inference-engine/thirdparty/clDNN/kernel_selector/common/tensor_type.h
|
|
+++ b/inference-engine/thirdparty/clDNN/kernel_selector/common/tensor_type.h
|
|
@@ -25,6 +25,7 @@
|
|
#include <array>
|
|
#include <string>
|
|
#include <utility>
|
|
+#include <stdexcept>
|
|
|
|
namespace kernel_selector {
|
|
#define KERNEL_SELECTOR_TENSOR_DIM_MAX 9
|