Skip to content

Commit b45a6c5

Browse files
committed
Merge remote-tracking branch 'upstream/ean-unify-sd' into ean-unify-sd
2 parents 08a8ca9 + 8048683 commit b45a6c5

22 files changed

+4056
-102
lines changed

.github/workflows/test_models.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,10 @@ jobs:
4747
source turbine_venv/bin/activate
4848
python3.11 -m pip install --upgrade pip
4949
pip install --no-compile -r ${{ github.workspace }}/iree-turbine/pytorch-cpu-requirements.txt
50-
pip install --no-compile --pre --no-cache-dir -r ${{ github.workspace }}/iree-turbine/iree-requirements.txt -f https://iree.dev/pip-release-links.html
51-
pip install --no-compile --pre --upgrade -e models -r models/requirements.txt
50+
pip install --pre --upgrade -r ${{ github.workspace }}/iree-turbine/requirements.txt
51+
pip install --no-compile --pre -e ${{ github.workspace }}/iree-turbine[testing]
52+
pip install --upgrade --pre --no-cache-dir iree-compiler iree-runtime -f https://iree.dev/pip-release-links.html
53+
pip install --no-compile --pre --upgrade -e models -r models/requirements.txt
5254
5355
- name: Show current free memory
5456
run: |

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,7 @@ wheelhouse
2828
*.safetensors
2929
*.gguf
3030
*.vmfb
31-
*.mlir
31+
*.mlir
32+
*.npy
33+
*.png
34+
*tmp*

models/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ shark-turbine @ git+https://github.com/iree-org/iree-turbine.git@main
44
transformers==4.37.1
55
torchsde
66
accelerate
7-
diffusers @ git+https://github.com/nod-ai/diffusers@v0.28.2-shark
7+
peft
8+
diffusers @ git+https://github.com/nod-ai/diffusers@0.29.0.dev0-shark
89
brevitas @ git+https://github.com/Xilinx/brevitas.git@6695e8df7f6a2c7715b9ed69c4b78157376bb60b
910
# turbine tank downloading/uploading
1011
azure-storage-blob

models/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ def load_version_info():
5757
"Shark-Turbine",
5858
"protobuf",
5959
"sentencepiece",
60-
"transformers==4.37.1",
60+
"transformers>=4.37.1",
6161
"accelerate",
62-
"diffusers==0.24.0",
62+
"diffusers==0.29.0.dev0",
6363
"azure-storage-blob",
6464
"einops",
6565
],

0 commit comments

Comments
 (0)