Skip to content

Commit fc72565

Browse files
(#21149) openvino: added 2023.2.0 version
1 parent 042b4ce commit fc72565

File tree

4 files changed

+56
-0
lines changed

4 files changed

+56
-0
lines changed

recipes/openvino/all/conandata.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
sources:
2+
"2023.2.0":
3+
"openvino":
4+
url: "https://github.com/openvinotoolkit/openvino/archive/refs/tags/2023.2.0.tar.gz"
5+
sha256: "419b3137a1a549fc5054edbba5b71da76cbde730e8a271769126e021477ad47b"
6+
"arm_compute":
7+
url: "https://github.com/ARM-software/ComputeLibrary/archive/refs/tags/v23.08.tar.gz"
8+
sha256: "62f514a555409d4401e5250b290cdf8cf1676e4eb775e5bd61ea6a740a8ce24f"
9+
"onednn_cpu":
10+
url: "https://github.com/openvinotoolkit/oneDNN/archive/2ead5d4fe5993a797d9a7a4b8b5557b96f6ec90e.tar.gz"
11+
sha256: "3c51d577f9e7e4cbd94ad08d267502953ec64513241dda6595b2608fafc8314c"
12+
"mlas":
13+
url: "https://github.com/openvinotoolkit/mlas/archive/f6425b1394334822390fcd9da12788c9cd0d11da.tar.gz"
14+
sha256: "707a6634d62ea5563042a67161472b4be3ffe73c9783719519abdd583b0295f4"
15+
"onednn_gpu":
16+
url: "https://github.com/oneapi-src/oneDNN/archive/284ad4574939fa784e4ddaa1f4aa577b8eb7a017.tar.gz"
17+
sha256: "16f36078339cd08b949efea1d863344cb0b742d9f5898937d07a591b0c4da517"
218
"2023.1.0":
319
"openvino":
420
url: "https://github.com/openvinotoolkit/openvino/archive/refs/tags/2023.1.0.tar.gz"
@@ -16,6 +32,11 @@ sources:
1632
url: "https://github.com/oneapi-src/oneDNN/archive/4b82a66ed38ecaa993352e5cc6ed7753656b8a26.tar.gz"
1733
sha256: "cb17c003fe51bc9b4e20189573956b4446468162adf0fc4cea2ee0820cff0cd0"
1834
patches:
35+
"2023.2.0":
36+
- patch_file: "patches/2023.2.0/0001-git-version.patch"
37+
patch_description: "Fixed issue with version on Windows"
38+
patch_type: "portability"
39+
patch_source: "https://github.com/openvinotoolkit/openvino/pull/19628"
1940
"2023.1.0":
2041
- patch_file: "patches/2023.1.0/0001-cpu-plugin-compilation-c++17.patch"
2142
patch_description: "Fixed CPU plugin compilation with C++17"
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
onnx: "1.14.1"
2+
ade: "0.1.2d"
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
diff --git a/cmake/developer_package/version.cmake b/cmake/developer_package/version.cmake
2+
index 1b71befe44..b78f44995a 100644
3+
--- a/cmake/developer_package/version.cmake
4+
+++ b/cmake/developer_package/version.cmake
5+
@@ -5,7 +5,7 @@
6+
find_package(Git QUIET)
7+
8+
function(ov_branch_name VAR REPO_ROOT)
9+
- if(GIT_FOUND)
10+
+ if(GIT_FOUND AND EXISTS "${REPO_ROOT}/.git")
11+
execute_process(
12+
COMMAND ${GIT_EXECUTABLE} rev-parse --abbrev-ref HEAD
13+
WORKING_DIRECTORY ${REPO_ROOT}
14+
@@ -16,7 +16,7 @@ function(ov_branch_name VAR REPO_ROOT)
15+
endfunction()
16+
17+
function(ov_commit_hash VAR REPO_ROOT)
18+
- if(GIT_FOUND)
19+
+ if(GIT_FOUND AND EXISTS "${REPO_ROOT}/.git")
20+
execute_process(
21+
COMMAND ${GIT_EXECUTABLE} rev-parse --short=11 HEAD
22+
WORKING_DIRECTORY ${REPO_ROOT}
23+
@@ -27,7 +27,7 @@ function(ov_commit_hash VAR REPO_ROOT)
24+
endfunction()
25+
26+
function(ov_commit_number VAR REPO_ROOT)
27+
- if(GIT_FOUND)
28+
+ if(GIT_FOUND AND EXISTS "${REPO_ROOT}/.git")
29+
execute_process(
30+
COMMAND ${GIT_EXECUTABLE} rev-list --count --first-parent HEAD
31+
WORKING_DIRECTORY ${REPO_ROOT}

recipes/openvino/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
versions:
2+
"2023.2.0":
3+
folder: "all"
24
"2023.1.0":
35
folder: "all"

0 commit comments

Comments
 (0)