Commit 7dc6e3ae authored by Khalique Ahmed's avatar Khalique Ahmed
Browse files

Merge branch 'develop' of https://github.com/ROCmSoftwarePlatform/AMDMIGraphX into mi100_opts

parents f94d77fc a275f590
...@@ -131,6 +131,22 @@ jobs: ...@@ -131,6 +131,22 @@ jobs:
find . -iname '*.py' \ find . -iname '*.py' \
| grep -v 'build/' \ | grep -v 'build/' \
| xargs -n 1 -P 1 -I{} -t sh -c 'yapf {} | diff - {}' | xargs -n 1 -P 1 -I{} -t sh -c 'yapf {} | diff - {}'
pyflakes:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Install pyflakes
run: pip install pyflakes==2.3.1
- name: Run pyflakes
run: pyflakes examples/ tools/ src/ test/ doc/
linux: linux:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
...@@ -145,16 +161,12 @@ jobs: ...@@ -145,16 +161,12 @@ jobs:
strategy: strategy:
matrix: matrix:
os: os:
- ubuntu-16.04
- ubuntu-18.04 - ubuntu-18.04
- ubuntu-20.04 - ubuntu-20.04
configuration: configuration:
- debug - debug
- release - release
- codecov - codecov
exclude:
- os: ubuntu-16.04
configuration: debug
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
......
...@@ -57,6 +57,7 @@ ADD rbuild.ini /rbuild.ini ...@@ -57,6 +57,7 @@ ADD rbuild.ini /rbuild.ini
COPY ./tools/install_prereqs.sh / COPY ./tools/install_prereqs.sh /
RUN /install_prereqs.sh /usr/local / && rm /install_prereqs.sh RUN /install_prereqs.sh /usr/local / && rm /install_prereqs.sh
RUN test -f /usr/local/hash || exit 1
# Install yapf # Install yapf
RUN pip3 install yapf==0.28.0 RUN pip3 install yapf==0.28.0
......
...@@ -4,15 +4,6 @@ ...@@ -4,15 +4,6 @@
This directory contains examples of common use cases for MIGraphX. This directory contains examples of common use cases for MIGraphX.
## Examples: ## Examples:
- [C++ Parse, Load, and Save Graph Programs](./cpp_parse_load_save) - [MIGraphX usage and utilities](./migraphx)
- [C++ MNIST Inference](./cpp_api_inference) - [Vision inference examples](./vision)
- [Exporting Frozen Graphs in TF1](./export_frozen_graph_tf1) - [Natural language inference examples](./nlp)
- [Exporting Frozen Graphs in TF2](./export_frozen_graph_tf2) \ No newline at end of file
- [MIGraphX Docker Container](./migraphx_docker)
- [MIGraphX Driver](./migraphx_driver)
- [Python Resnet50](./python_api_inference)
- [Python BERT-SQuAD](./python_bert_squad_example)
- [Python Super Resolution](./python_super_resolution)
- [Python NFNet](./python_nfnet_inference)
- [Python U-Net](./python_unet)
- [Python 3D-UNet](./python_3dunet)
# AMD MIGraphX usage and utilities
- [C++ Parse, Load, and Save Graph Programs](./cpp_parse_load_save)
- [Exporting Frozen Graphs in TF1](./export_frozen_graph_tf1)
- [Exporting Frozen Graphs in TF2](./export_frozen_graph_tf2)
- [MIGraphX Docker Container](./migraphx_docker)
- [MIGraphX Driver](./migraphx_driver)
\ No newline at end of file
# Natural Language Processing Inference Examples
- [Python BERT-SQuAD](./python_bert_squad)
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment