We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b6b7d5 commit 79bd422Copy full SHA for 79bd422
onnxruntime/core/providers/openvino/onnx_ctx_model_helper.cc
@@ -142,7 +142,7 @@ bool EPCtxHandler::CheckForOVEPCtxNode(const Node& node) const {
142
if (node.OpType() == EPCONTEXT_OP) {
143
auto& attrs = node.GetAttributes();
144
bool result = (attrs.count(SOURCE) == 1) && (attrs.at(SOURCE).s() == kOpenVINOExecutionProvider);
145
- result &= (attrs.count(EP_SDK_VER) == 1) && (attrs.at(EP_SDK_VER).s() == openvino_sdk_version_);
+ // result &= (attrs.count(EP_SDK_VER) == 1) && (attrs.at(EP_SDK_VER).s() == openvino_sdk_version_);
146
result &= attrs.count(EMBED_MODE) == 1;
147
result &= attrs.count(EP_CACHE_CONTEXT) == 1;
148
return result;
0 commit comments