Separate HTTP core into subfolder#33
Closed
letmaik wants to merge 31 commits intoNonStatic2014:masterfrom
letmaik:letmaik/http-core
Closed
Separate HTTP core into subfolder#33letmaik wants to merge 31 commits intoNonStatic2014:masterfrom letmaik:letmaik/http-core
letmaik wants to merge 31 commits intoNonStatic2014:masterfrom
letmaik:letmaik/http-core
Conversation
* Add unique identifier in function subgraph * enable test
Currently, when using OrtEnableProfiling to enable profiling using the C API, the profile output file is created but is always empty. The reason is that InferenceSession::EndProfiling() needs to be called to write the profiling data to the output file. However there's currently no way to call this function via the C API. This adds a call to EndProfiling() to the descructor of the session if profiling is enabled in the session options.
* Expose parallel execution option * delete unnesary file * add doc * update nuget retore to 4.3.0 * resolve comments * remove unnessary file * make git ignore csharp/Directory.Build.props * fix yaml config for nuget 4.3
If it is needed, it can be used explicitly in mkldnn provider.
CustomRegistry should use composition instead of inheritence
* Add optimization level as cmd line arguments * fix the help info and add option.
…ta (microsoft#777) * Copy required inputs and outputs directly in InferenceSession::SaveModelMetadata * trivial * trivial
* Adding a custom op interface to the C API to remove shared library dependency. * Remove old custom op test * Rework how custom ops handle inputs/outputs to enable custom op output shape calculation in the compute method * Add a nicer C++ API for custom ops and switch the tests to use it.
…nsorrt option. we can set it implicitly. (microsoft#780) * use_full_protobuf if tensorrt build option is enabled. * update BUILD.md sections on MKLDNN and TensorRT/full_protobuf option
This reverts commit 6106613.
Collaborator
|
Hey Maik, could you rebase against master after #32 is merged? I'll merge it as soon as the build completes. Edit: thanks for doing this. I was actually going to do this today :) Edit 2: I can also do it. I know it's late in the UK. |
tmccrmck
approved these changes
Apr 9, 2019
Author
|
No worries, I've rebased (well, merged) just now. Good that you had the same idea! :) |
Author
|
See #34. CI doesn't run on forks. |
This file contains hidden or 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
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.
HTTP core has no dependency on protobuf or ONNX RT, only on Boost and re2. This makes it easier to reuse and keeps the architectural structure clean.
Note: This contains the changes from #32 as well, so merge that one first.