-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Add an HTTP server for hosting of ONNX models #806
Merged
Merged
Conversation
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
Simple CMake setup for ONNX hosting
Using https instead of ssh to add vcpkg as submodule
Adds Boost dependencies and basic HTTP server
Set CMAKE_TOOLCHAIN_FILE in build.py
* Add initial test which is failing linking with no main * Adds test_main to get hosting tests working * Deletes useless add_executable line
…into bohu/shortcut
Add shortcut endpoint for predict request and health endpoint for orchestration systems
Rename to onnxruntime server
/azp run |
Azure Pipelines successfully started running 9 pipeline(s). |
* Gets Boost compiling on Windows * Fix integer conversion and comparison problems * Use size_t in converter_tests instead of int * Fix hosting integration tests on Windows * Removes checks for port because it's an unsigned short * Fixes comparison between signed and unsigned data types * Pip install protobuf and numpy
…into bohu/missing_test_data
…into bohu/missing_test_data
tools/ci_build/github/azure-pipelines/vienna-linux-ci-pipeline.yml
Outdated
Show resolved
Hide resolved
Missing test data from the rename change
pranavsharma
previously approved these changes
Apr 30, 2019
/azp run |
Azure Pipelines successfully started running 9 pipeline(s). |
* Changes minimum request size to 10MB to support all models in ONNX Model Zoo
pranavsharma
approved these changes
Apr 30, 2019
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.
Let's add memory leak check as well as part of CI.
/azp run |
Azure Pipelines successfully started running 9 pipeline(s). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Initial PR for feed back
Full integration tests hopefully implemented in the next week
not included but planned: HTTPS, gRPC, features like multiple models, batch, etc