Edited on tag '4.3.0-openvino' to support HDDL#18220
Conversation
|
Hi! Please start with the latest master branch to resolve the conflicts.
Check |
Thank you for your reply. Adding the python path you mentioned worked. I started again from the latest master branch and moved my commit to it. How can I change the branch I would like to request a merge from? Should I open a new PR? |
|
@Omar-AE, you can just rename the branches and force push actual changes: |
b91d44e to
cf40e07
Compare
cf40e07 to
36915db
Compare
2490419 to
849dfa2
Compare
849dfa2 to
2342305
Compare
8fc8e20 to
bd8088e
Compare
|
I successfully built the last changes on my Ubuntu 18.04.5 LTS machine. Any idea how to resolve the remaining failed builds (on Linux x64 and iOS)? |
| * Inference Engine's Myriad plugin. | ||
| */ | ||
| CV_EXPORTS_W void resetMyriadDevice(); | ||
| CV_EXPORTS_W void resetMyriadDevice(const std::string& device = "MYRIAD"); |
There was a problem hiding this comment.
@alalek, can you suggest a new version number for #define OPENCV_DNN_API_VERSION 20200908?
There was a problem hiding this comment.
I would prefer to add dedicated resetHDDLDevice() API for that.
Any update regarding this? |
| if ((backendId == DNN_BACKEND_INFERENCE_ENGINE_NN_BUILDER_2019 || preferableTarget != DNN_TARGET_MYRIAD && preferableTarget != DNN_TARGET_HDDL) && blobs.empty()) | ||
| return false; | ||
| return (preferableTarget != DNN_TARGET_MYRIAD || dilation.width == dilation.height); | ||
| return (preferableTarget != DNN_TARGET_MYRIAD && preferableTarget != DNN_TARGET_HDDL || dilation.width == dilation.height); |
* added HDDL VPU support * changed to return True in one line if any device connected * dnn: use releaseHDDLPlugin() * dnn(hddl): fix conditions
This pull request is not ready to be merged. I still have an issue and I created this pull request to seek assistance as suggested by @dkurt . @mshabunin
First, I am trying to create this pull request to be compared with the tag 4.3.0-openvino. However, I could only compare it to master, and I would like to merge it to the tag 4.3.0-openvino. I know that a tag is different from a branch but I edited the code starting from the tag 4.3.0-openvino.
Second, I am getting the following exception when I try to use the newly added directive
cv2.dnn.DNN_TARGET_HDDLinstead ofcv2.dnn.DNN_TARGET_MYRIAD:I am not sure where should I edit to let python3 be able to have the new constant
DNN_TARGET_HDDL.closes #17727