Replies: 1 comment
-
The same question for MSVC 2019 and 2022, which cannot be fixed. is there anyway to fix it or at least provide better error message why "child" module does not see types defined in "parent" module? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I build common libraries(https://pypi.org/project/openvino/) using the manylinux image (2014, GCC 10) and then build a dependent module (https://pypi.org/project/openvino-genai/) that uses types from the common module. The compilation with GCC 9 on Ubuntu 20 is successful, but when I call the methods from the second module, it cannot find the types wrapped in the first module. Both are built with the -D_GLIBCXX_USE_CXX11_ABI=1 flag.
The error I got: "TypeError: Unregistered type : ov::Tensor", where ov::Tensor is a class defined in the common module.
Could you please advise me on how I could properly build both modules to be compatible with each other?
Beta Was this translation helpful? Give feedback.
All reactions