diff --git a/.clang-tidy b/.clang-tidy index 811af89e68..665bb05778 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -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: diff --git a/.gitignore b/.gitignore index 7d69fe5c94..a73fe987ba 100644 --- a/.gitignore +++ b/.gitignore @@ -16,7 +16,7 @@ gen .vs TestResults/ .idea/ -lotus.egg-info +onnxruntime.egg-info nuget_root/ .packages/ .vscode/ diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index eeba2307ab..97e4258f2d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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 diff --git a/docs/HighLevelDesign.md b/docs/HighLevelDesign.md index 84e15e5fdc..7b9dc27e9a 100644 --- a/docs/HighLevelDesign.md +++ b/docs/HighLevelDesign.md @@ -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 diff --git a/tools/ci_build/github/azure-pipelines/azure-pipelines.yml b/tools/ci_build/github/azure-pipelines/azure-pipelines.yml index 7c504be25a..c559257b54 100644 --- a/tools/ci_build/github/azure-pipelines/azure-pipelines.yml +++ b/tools/ci_build/github/azure-pipelines/azure-pipelines.yml @@ -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