forked from microsoft/onnxruntime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'microsoft:master' into cudnn_mod
- Loading branch information
Showing
1,918 changed files
with
94,079 additions
and
64,491 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"notificationAliases": ["[email protected]"], | ||
"areaPath": "Vienna\\ONNX Runtime\\Shared Core", | ||
"codebaseName": "onnxruntime_master", | ||
"instanceUrl": "https://msdata.visualstudio.com/", | ||
"projectName": "Vienna", | ||
"ignoreBranchName": true | ||
} |
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Update C/C++ API Docs | ||
on: | ||
workflow_dispatch | ||
|
||
jobs: | ||
publish: | ||
name: Generate C/C++ API docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install doxygen and dependencies | ||
run: | | ||
sudo apt update | ||
sudo apt-get install libclang-9-dev | ||
sudo apt-get install libclang-cpp9 | ||
wget https://www.doxygen.nl/files/doxygen-1.9.2.linux.bin.tar.gz | ||
tar xvzf doxygen-1.9.2.linux.bin.tar.gz | ||
- name: Set commit ID | ||
id: vars | ||
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" | ||
- name: Run doxygen | ||
run: | | ||
mkdir -p build/doxygen | ||
cd docs/c_cxx | ||
../../doxygen-1.9.2/bin/doxygen | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: gh-pages | ||
clean: false | ||
- name: Move API docs into target area | ||
run: | | ||
rm -rf docs/api/c | ||
mv build/doxygen/html docs/api/c | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
branch: gh-pages-pr | ||
base: gh-pages | ||
title: '[Automated]: Update C/C++ API docs' | ||
commit-message: 'Update C/C++ API docs to commit ${{ steps.vars.outputs.sha_short }}' | ||
add-paths: docs/api/c | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Update Python API Docs | ||
on: | ||
workflow_dispatch | ||
|
||
jobs: | ||
publish: | ||
name: Generate Python API docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install tools | ||
run: | | ||
sudo apt update | ||
sudo apt-get install pip | ||
sudo apt-get install graphviz | ||
- name: Install dependencies | ||
run: | | ||
cd docs/python | ||
pip install -r requirements.txt | ||
pip install flatbuffers protobuf==3.19.1 | ||
pip install -i https://test.pypi.org/simple/ ort-nightly | ||
pip list | ||
- name: Generate Python docs with Sphinx | ||
run: | | ||
cd tools/doc | ||
./builddoc.sh /usr/bin ../.. ../../build | ||
- name: Set vars | ||
id: vars | ||
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: gh-pages | ||
clean: false | ||
- name: Move API docs into target area | ||
run: | | ||
ls docs/api | ||
rm -rf docs/api/python | ||
mv build/docs/inference/html docs/api/python | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
branch: gh-pages-pr-python-docs | ||
base: gh-pages | ||
title: '[Automated]: Update Python API docs' | ||
commit-message: 'Update Python API docs to commit ${{ steps.vars.outputs.sha_short }}' | ||
add-paths: docs/api/python | ||
|
||
|
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.