mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 17:09:08 +08:00
e942b5ddcf
* openvino: 2023.2.0 version * updated version database * opencv: updated openvino usage * updated version database * test * vdb --------- Co-authored-by: Frank <1433351828@qq.com> Co-authored-by: Monica <liuyumei01@beyondsoft.com>
11 lines
483 B
Plaintext
11 lines
483 B
Plaintext
The package OpenVINO can be used in cmake scripts as:
|
|
|
|
find_package(OpenVINO REQUIRED)
|
|
target_link_libraries(main PRIVATE openvino::runtime)
|
|
|
|
Note: static build of Intel GPU plugin disables usage of oneDNN for GPU, which is important
|
|
for decent performance on discrete GPU devices. If you want to levarage performance of dGPU,
|
|
please, consider either option:
|
|
- Building with 'VCPKG_LIBRARY_LINKAGE=dynamic'
|
|
- Disable Intel CPU plugin, because it uses different oneDNN flavor
|