mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-19 19:00:47 +00:00
Add remaining build options and make minor changes in documentation (#39)
* Minor changes in documentation * Synchronous, not sync * Add remaining build options after mkldnn fix
This commit is contained in:
parent
3b1140954e
commit
3f4589ced5
5 changed files with 6 additions and 6 deletions
|
|
@ -2,7 +2,7 @@
|
|||
# turn off readability-braces-around-statements to allow single line statement like 'if (x == y) doSomething();'
|
||||
Checks: '-*,cppcoreguidelines-*,google-*,readability-*,modernize-*,-readability-braces-around-statements,-google-runtime-references,-cppcoreguidelines-pro-type-reinterpret-cast'
|
||||
WarningsAsErrors: ''
|
||||
HeaderFilterRegex: '.*lotus\/core\/.*'
|
||||
HeaderFilterRegex: '.*onnxruntime\/core\/.*'
|
||||
AnalyzeTemporaryDtors: false
|
||||
FormatStyle: none
|
||||
CheckOptions:
|
||||
|
|
|
|||
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -16,7 +16,7 @@ gen
|
|||
.vs
|
||||
TestResults/
|
||||
.idea/
|
||||
lotus.egg-info
|
||||
onnxruntime.egg-info
|
||||
nuget_root/
|
||||
.packages/
|
||||
.vscode/
|
||||
|
|
|
|||
|
|
@ -14,7 +14,8 @@ git commit -m "my changes"
|
|||
git push origin HEAD
|
||||
```
|
||||
To request merge into master send a pull request from the web ui
|
||||
https://github.com/Microsoft/onnxruntime
|
||||
https://github.com/Microsoft/onnxruntime and add 'Microsoft/onnxruntime' as a reviewer.
|
||||
|
||||
New code *must* be accompanied by unit tests.
|
||||
|
||||
# Build
|
||||
|
|
|
|||
|
|
@ -55,8 +55,7 @@ provider).
|
|||
|
||||
Conceptually, each partition is reduced to a single fused operator. It is
|
||||
created by invoking the execution provider's Compile() method and wrap it as a
|
||||
custom operator. We support both sync and async modes of execution for custom
|
||||
operators. We also support both strict and non-strict invocations. An execution
|
||||
custom operator. Currently we support only synchronous mode of execution. An execution
|
||||
provider exposes its memory allocator, which is used to allocate the input
|
||||
tensors for the execution provider. The rewriting and partitioning transform the
|
||||
initial model graph into a new graph composed with operators assigned to either
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ jobs:
|
|||
- task: BatchScript@1
|
||||
inputs:
|
||||
filename: build.bat
|
||||
arguments: ' --enable_onnx_tests --use_mkldnn --enable_pybind'
|
||||
arguments: ' --enable_pybind --use_mkldnn --use_mklml --build_shared_lib --enable_onnx_tests'
|
||||
workingFolder: "$(Build.SourcesDirectory)"
|
||||
|
||||
- task: CmdLine@1
|
||||
|
|
|
|||
Loading…
Reference in a new issue