-
Notifications
You must be signed in to change notification settings - Fork 29
Fix warnings in building libDPPLSyclInterface #155
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
Conversation
-- Wrap/unwrap functions are imported using the smae macro and both versions are not necessarilly used in the same file. Adding this attribute prevents a flood of warning.
Did you mean to push |
@oleksandr-pavlyk Currently we are getting a flood of warning about the Based on what I see Cython should only include the So, the question is how is the There are ways to work around the warning, e.g., https://github.com/openvinotoolkit/openvino/pull/2684/files that we can try. Any thoughts? |
Cython does not set Cython may be generating different C/C++ sources based on that value, but Cython does change it AFAIK. |
@oleksandr-pavlyk I fixed all warnings on libDPPLSyclInterface warnings on Linux and Windows. If you can provide some magic for the |
Merging after testing locally on Windows. |
Fixes #144