-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Export pack_strings() and unpack_strings() #2
Export pack_strings() and unpack_strings() #2
Conversation
@@ -66,6 +66,8 @@ target_include_directories(${TARGET_NAME} PRIVATE | |||
"${CMAKE_BINARY_DIR}/third_party/dart/src/extern_dart/include/" | |||
"${CMAKE_BINARY_DIR}/third_party/install/re2/include/") | |||
|
|||
target_include_directories(${TARGET_NAME} PUBLIC .) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typically, OV extensions does not imply to provide any extra C++ API..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's @slyalin's request to call pack_strings()
from OV extensions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please consider the fact that we are going to remove pack_strings/unpack_strigs after string support is added to OV. But we are not really certain when it happens. I think it makes sense to add it now to have functional distribution and single point of reference (people started to copy this function from one place to another because we are not providing distribution for these methods). I hope it won't cross OV releases boundary.
@Wovchena you should move |
Moved. I also created a separate include dir as requested in openvinotoolkit/openvino.genai#8 (comment). |
No description provided.