-
Notifications
You must be signed in to change notification settings - Fork 25
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
API 2.0 and 2024.0 compatibility #92
Closed
Closed
Changes from 34 commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
a316c51
update upstream openvino so that it updates to api 2.0
rahulchaphalkar 7362b75
formatting dynamic.rs
rahulchaphalkar f3615d3
fix runtime linking
rahulchaphalkar 1ad9f22
clippy warnings fix
rahulchaphalkar 6dd9f4f
change xtask/codegen to relative path
rahulchaphalkar 8cb7fe2
cargo fmt
rahulchaphalkar 08fdbda
fix bindgen wchar_t issue
rahulchaphalkar c560e51
New branch
BTOdell 18878b3
Merge pull request #1 from rahulchaphalkar/openvino-API-2.0
BTOdell 65fbec4
Update to OpenVINO 2024.0.0
BTOdell beef339
Fix finding of OpenVINO 2024.0.0 on Windows.
BTOdell 4cd2cc5
Fixed linking on Windows.
BTOdell 5605c43
Update OpenVINO versions for GitHub Actions.
BTOdell 5296fa9
Fix C string memory leaks.
BTOdell 5e474a5
More clean up. Trying to implement `infer_async`, may need some help.
BTOdell 90bc4dc
Switch tests to use anyhow.
BTOdell 40f523d
Revert minor test change.
BTOdell 6e2e460
Update gitmodules to be more lightweight when using repo as a depende…
BTOdell 74b1bab
Add more API methods for Core (still need to be implemented).
BTOdell e6033cc
Improve version function.
BTOdell 9046e0b
Implement Display for DeviceType.
BTOdell c90c6e9
Implement core versions function.
BTOdell 50bc141
Switch from Into to AsRef.
BTOdell 2edc17c
Implement available_devices function.
BTOdell 2e8dd77
Working on enabling get/set of properties.
BTOdell 1ce1fbe
Expose RwPropertyKey.
BTOdell 67755ac
Add common derives to PropertyKey and RwPropertyKey.
BTOdell 00dff59
Fix variadic arguments with dynamic linking (still need to fix runtim…
BTOdell 77b20f6
Add more CompiledModel functions.
BTOdell df44064
Add more Port functions.
BTOdell ed1d59a
Add Debug to Shape.
BTOdell 09d9691
Revert "Add Debug to Shape."
BTOdell 2139f84
Working on infer request callback support...
BTOdell 6f8e243
Add more tensor methods to InferRequest.
BTOdell e356b63
Add Send trait to callback handle.
BTOdell 35fcd02
Add Send trait to Tensor.
BTOdell c1a3b68
Pin infer request callback.
BTOdell c7d6347
Revert "Pin infer request callback."
BTOdell 30bf0f1
Fix segfault issue with set_callback function in InferRequest.
BTOdell ecf1d0c
Remove `mut` from some InferRequest methods.
BTOdell 893bef0
Fix Linux compile error.
BTOdell cab9c98
Make tensor instance pub(crate).
BTOdell 9caa906
Fix `find_import_library` on macOS.
BTOdell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.idea/ | ||
target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
[submodule "crates/upstream"] | ||
path = crates/openvino-sys/upstream | ||
url = https://github.com/openvinotoolkit/openvino | ||
depth = 1 | ||
update = none | ||
fetchRecurseSubmodules = false | ||
shallow = true | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
https://git-scm.com/docs/gitmodules#Documentation/gitmodules.txt-submoduleltnamegtshallow
It's possible that
depth = 1
was working as expected, but it's not a documented property in.gitmodules
.