Skip to content

Commit

Permalink
[openvino] ported patch for default option value (#32082)
Browse files Browse the repository at this point in the history
* [openvino] added patch to fix default option value

* updated versions files
  • Loading branch information
ilya-lavrenov committed Jun 22, 2023
1 parent 2f3a371 commit 5a90d5c
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 2 deletions.
13 changes: 13 additions & 0 deletions ports/openvino/002-typo-in-default-option-value.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/cmake/features.cmake b/cmake/features.cmake
index fc7a07252e..546fc72193 100644
--- a/cmake/features.cmake
+++ b/cmake/features.cmake
@@ -126,7 +126,7 @@ ie_option(ENABLE_OV_IR_FRONTEND "Enable IR FrontEnd" ON)
ie_option(ENABLE_OV_TF_FRONTEND "Enable TensorFlow FrontEnd" ON)
ie_option(ENABLE_OV_TF_LITE_FRONTEND "Enable TensorFlow Lite FrontEnd" ON)
ie_dependent_option(ENABLE_SNAPPY_COMPRESSION "Enables compression support for TF FE" ON
- "ENABLE_OV_TF_FRONTEND" ON)
+ "ENABLE_OV_TF_FRONTEND" OFF)

if(CMAKE_HOST_LINUX AND LINUX)
# Debian packages are enabled on Ubuntu systems
3 changes: 2 additions & 1 deletion ports/openvino/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO openvinotoolkit/openvino
REF 50c85f01ab44b2470f08b0f8824cced109628fc6
SHA512 e14ac8d48f577188522d0b80f55d53a839f843a03bf0eccf7e370a7bfe977d19e65e4f4748274baf9b0a71751bbdcb7c1e2d4270e54b1ddd72f578176f48058d
SHA512 1673cdab4f0d73ba5e3d0ac1e8a7b136d25df59704575a468016650c3c6c0dcba0bdc0a2306f61a14d49792651b21e9233d166610e0b463624b309758f1b1c04
PATCHES
001-disable-tools.patch
002-typo-in-default-option-value.patch
HEAD_REF master)

function(ov_checkout_in_path PATH REPO REF SHA512)
Expand Down
1 change: 1 addition & 0 deletions ports/openvino/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "openvino",
"version-date": "2023-06-11",
"port-version": 1,
"maintainers": "OpenVINO Developers <openvino@intel.com>",
"summary": "This is a port for Open Visual Inference And Optimization toolkit for AI inference",
"description": [
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -6054,7 +6054,7 @@
},
"openvino": {
"baseline": "2023-06-11",
"port-version": 0
"port-version": 1
},
"openvpn3": {
"baseline": "3.7.0",
Expand Down
5 changes: 5 additions & 0 deletions versions/o-/openvino.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "b845ea9bb49b0f44f2423d210e950003b67bfac4",
"version-date": "2023-06-11",
"port-version": 1
},
{
"git-tree": "85c70516c12c1c3544e7a2996e6f83e35aa6a88f",
"version-date": "2023-06-11",
Expand Down

0 comments on commit 5a90d5c

Please sign in to comment.