Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates to merge latest changes for the RyzenAI-SW from the development branch (PR-117) #118

Merged
merged 48 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
a16cf62
updates the read document for transformers and llama.cpp
cyndwith Aug 7, 2024
6474cdd
Merge branch 'main' into main
cyndwith Aug 7, 2024
7a26d29
update the ReadMe instruction across PyTorch, ONNX and Llama.cpp
cyndwith Aug 7, 2024
577e76b
Merge pull request #84 from savsrini/igpu-cpp
cyndwith Aug 7, 2024
3de4ba1
Merge pull request #85 from dwchenna/main
cyndwith Aug 7, 2024
f951935
Merge pull request #86 from VitisAI/main
savitha-srinivasan Aug 7, 2024
e7452f4
removing the --help instructions from llm onnx flow
cyndwith Aug 13, 2024
77e44c6
Update README.md
fanz-xlnx Aug 14, 2024
a59ea96
Updated Hello World Example for Ryzen AI SW 1.2 Release
vgodsoe Aug 16, 2024
4f88354
updates to onnx-benchmark to support STX and PHX
cyndwith Aug 27, 2024
f94c4c4
typo
giovanniguastiamd Aug 19, 2024
e9c088e
typo
giovanniguastiamd Aug 19, 2024
110589b
typo
giovanniguastiamd Aug 19, 2024
3b5427c
Merge pull request #89 from vigodsoe/helloworld-1-2-updates
cyndwith Aug 19, 2024
8b57cc5
PR
giovanniguastiamd Aug 20, 2024
3a97663
Update README.md
cyndwith Aug 21, 2024
a9ff650
updates to merge changes from dev to main branch
cyndwith Aug 27, 2024
0df9e3e
Merge branch 'main' into dev
cyndwith Aug 21, 2024
c2b63c9
merge changes from VitisAI/dev
cyndwith Aug 27, 2024
7657edf
fix to https://github.com/onnx/onnx/issues/6267
giovanniguastiamd Aug 22, 2024
fb64be1
fix for the build for windows
cyndwith Aug 27, 2024
c49c1a6
Refreshed Hello World example for 1.2 release, included new descripti…
vgodsoe Aug 23, 2024
c6bc8e5
Merge pull request #97 from vigodsoe/helloworld_1_2_updates
cyndwith Aug 23, 2024
455259e
adding clarificatoin to use Anaconda prompt for onnx-benchmark
cyndwith Aug 23, 2024
c62c8b5
Merge branch 'main' into main_ci_add
cyndwith Aug 23, 2024
2f6dd68
Merge pull request #96 from abalasa/main_ci_add
cyndwith Aug 23, 2024
3a8ea56
Merge branch 'dev' into unified_public
cyndwith Aug 23, 2024
35d3f6c
Merge pull request #95 from gguasti/unified_public
cyndwith Aug 23, 2024
4ce8d4e
Merge branch 'main' into dev
cyndwith Aug 23, 2024
efc9b6c
Merge branch 'main' of https://gitenterprise.xilinx.com/VitisAI/Ryzen…
cyndwith Aug 23, 2024
ce40f25
update the documentation for LLMs pytorch flow
cyndwith Aug 23, 2024
3b31e6a
Merge pull request #99 from VitisAI/llm_readme_updates
cyndwith Aug 24, 2024
95816f1
update cmakelist.txt to fixed compile issue OPENCV_DIR is add
Aug 26, 2024
9865e69
update multi-model demo
Aug 26, 2024
7264b50
update Opncv_DIR
Aug 26, 2024
8cb8856
update the readme
Aug 26, 2024
0a16c7c
update multi-model demo readme
Aug 26, 2024
630526b
Merge branch 'dev' into main
cyndwith Aug 26, 2024
60cc9cf
Merge branch 'dev' into main
cyndwith Aug 26, 2024
16f697f
Merge branch 'dev' into dev
cyndwith Aug 26, 2024
8ce4d48
Merge pull request #101 from VitisAI/main
cyndwith Aug 26, 2024
929663f
Merge branch 'dev' into dev
cyndwith Aug 26, 2024
2f4b57e
Merge pull request #100 from dachang/dev
cyndwith Aug 26, 2024
2a4fc84
Merge pull request #102 from VitisAI/dev
cyndwith Aug 26, 2024
7f51920
Merge pull request #1 from cyndwith/hot_fixes_v1.2.2
cyndwith Aug 27, 2024
c20f80b
updates to include dependencies for yolov8 tutorial
cyndwith Aug 27, 2024
b00783a
clean-up the CI config file
cyndwith Aug 28, 2024
a059a19
Merge branch 'main' into pr-117
cyndwith Aug 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ on:
pull_request:
branches: [ "main" ]
types: [opened, synchronize, reopened, ready_for_review]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
test-initial:
runs-on: Ubuntu-22.04
steps:
- name: Initial testing
run: |
echo This is testing
echo This is testing
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
*.swp
__pycache__
*node_modules*
*.yml
4 changes: 4 additions & 0 deletions example/transformers/models/llm_onnx/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ Use "prepare_model.py" script to export, optimize and quantize the LLMs. You can

Check script usage

```powershell
cd %TRANSFORMERS_ROOT%\models\llm_onnx
python prepare_model.py --help

```python prepare_model.py --help```

#### Export, Optimize and quantize the model
Expand Down
17 changes: 17 additions & 0 deletions onnx-benchmark/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,23 @@ https://github.com/onnx/onnx/issues/6267
pip install onnx==1.16.1
```

In case of PHOENIX device:
```
conda env config vars set XCLBINHOME="C:\Program Files\RyzenAI\1.2.0\voe-4.0-win_amd64\xclbins\phoenix"
conda env config vars set XLNX_VART_FIRMWARE="C:\Program Files\RyzenAI\1.2.0\voe-4.0-win_amd64\xclbins\phoenix\1x4.xclbin"
conda env config vars set XLNX_TARGET_NAME=AMD_AIE2_Nx4_Overlay
conda env config vars set VAIP_CONFIG_HOME="C:\Program Files\RyzenAI\1.2.0\voe-4.0-win_amd64"
conda deactivate
conda activate ryzen-ai-1.2.0
conda env config vars list
```

Downgrade onnx to 1.16.1 to resolve an issue with the 1.16.2 release
https://github.com/onnx/onnx/issues/6267
```
pip install onnx==1.16.1
```


---

Expand Down