-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* doc fine tune * add example for ddp, edit c++ example * 1st review * corrected package name in installation guide * add model zoo to examples page * updata int8 doc (#377) * updata int8 doc * version 2 * modify optimizers optiization (#378) * review 20211130 * add INT8 fusion patterns and API in graph_optimization (#380) * add INT8 fusion patterns and API in graph_optimization * add integration with oneDNN graph * Add BN folding for graph_optimization * tutorials for v1.10.0 * int8.md fine tune * finalized for v1.10.0 release Co-authored-by: XiaobingZhang <xiaobing.zhang@intel.com> Co-authored-by: zhuhaozhe <haozhe.zhu@intel.com> Co-authored-by: Chunyuan WU <chunyuan.wu@intel.com>
- Loading branch information
Showing
25 changed files
with
1,132 additions
and
582 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 |
---|---|---|
@@ -1,33 +1,33 @@ | ||
name: Publish | ||
|
||
on: | ||
push: | ||
branches: | ||
- ghpapers_style | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Install dependencies | ||
run: | | ||
export PATH="$HOME/.local/bin:$PATH" | ||
sudo apt-get install -y python3-setuptools | ||
pip3 install --user --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html | ||
pip3 install --user -r requirements.txt | ||
python3 setup.py install | ||
pip3 install --user -r docs/requirements.txt | ||
- name: Build the docs | ||
run: | | ||
export PATH="$HOME/.local/bin:$PATH" | ||
cd docs | ||
make html | ||
- name: Push the docs | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: docs/_build/html | ||
publish_branch: gh-pages | ||
#on: | ||
# push: | ||
# branches: | ||
# - gh-pages | ||
# | ||
#jobs: | ||
# build: | ||
# | ||
# runs-on: ubuntu-latest | ||
# | ||
# steps: | ||
# - uses: actions/checkout@v1 | ||
# - name: Install dependencies | ||
# run: | | ||
# export PATH="$HOME/.local/bin:$PATH" | ||
# sudo apt-get install -y python3-setuptools | ||
# pip3 install --user torch=1.10.0+cpu -f https://download.pytorch.org/whl/cpu/torch_stable.html | ||
# pip3 install --user -r requirements.txt | ||
# python3 setup.py install | ||
# pip3 install --user -r docs/requirements.txt | ||
# - name: Build the docs | ||
# run: | | ||
# export PATH="$HOME/.local/bin:$PATH" | ||
# cd docs | ||
# make html | ||
# - name: Push the docs | ||
# uses: peaceiris/actions-gh-pages@v3 | ||
# with: | ||
# github_token: ${{ secrets.GITHUB_TOKEN }} | ||
# publish_dir: docs/_build/html | ||
# publish_branch: gh-pages |
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
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.