Open Hooray0012 opened 5 days ago
@dmatveev - FYI
@Hooray0012 could you try to specify addition flag into your cmake command, please?
cmake -DENABLE_INTEL_NPU_PROTOPIPE=OFF ..
Also, it seems there is opencv
in your environment, that's why protopipe
tool was enabled, could you elaborate what opencv version you're using, please?
Thank you for the guide. I was able to bypass the issue by disabling the protopipe tool in the build process. Additionally, my current OpenCV version is 4.10.0.
OpenVINO Version
2024.4.0
Operating System
Ubuntu 22.04 (LTS)
Hardware Architecture
x86 (64 bits)
Target Platform
OpenCV Version: 4.10.0
Build issue description
Description:
When attempting to compile OpenVINO from source, I encountered an error in openvino/src/plugins/intel_npu/tools/protopipe/src/simulation/simulation.cpp related to missing member functions in cv::gapi::onnx::Params. Specifically, cfgSessionOptions and cfgOptLevel appear to be undefined, causing the compilation to fail.
Additional Note:
During the build process, there were many code style warnings in openvino/src/plugins/intel_npu, such as unnecessary semicolons and redundant virtual keywords.
I have to manual modifications to pass the style checks.
Such as :
and :
and so on.
Build script or step-by-step to reproduce
git clone https://github.com/openvinotoolkit/openvino.git cd openvino git submodule update --init --recursive sudo ./install_build_dependencies.sh mkdir build && cd build cmake -DCMAKE_BUILD_TYPE=Release .. cmake --build . --parallel 8
Relevant log output
Issue submission checklist