1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-15 20:25:17 +03:00
aports/testing/openvino/include-stdexcept.patch
Dennis Krupenik bf01c1d180 testing/openvino: new aport
Deep Learning Deployment Toolkit
https://github.com/openvinotoolkit/openvino

Co-authored-by: Leo <thinkabit.ukim@gmail.com>
2020-09-09 05:18:05 +00:00

15 lines
597 B
Diff

Upstream: Should be
Reason: Fixes compilation by making std::runtime_error available
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 3dbdfd0..2226f1a 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