Skip to content

Commit a3573af

Browse files
authored
Merge branch 'main' into img2vid
2 parents cb1a1b1 + 087daee commit a3573af

File tree

777 files changed

+3380
-4639
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

777 files changed

+3380
-4639
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: |
3333
apt-get update && apt-get install libsndfile1-dev libgl1 -y
3434
python -m pip install -e .[quality,test]
35-
python -m pip install pandas
35+
python -m pip install pandas peft
3636
- name: Environment
3737
run: |
3838
python utils/print_env.py

.github/workflows/pr_tests.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,6 @@ jobs:
3434
runner: docker-cpu
3535
image: diffusers/diffusers-pytorch-cpu
3636
report: torch_cpu_models_schedulers
37-
- name: LoRA
38-
framework: lora
39-
runner: docker-cpu
40-
image: diffusers/diffusers-pytorch-cpu
41-
report: torch_cpu_lora
4237
- name: Fast Flax CPU tests
4338
framework: flax
4439
runner: docker-cpu
@@ -94,14 +89,6 @@ jobs:
9489
--make-reports=tests_${{ matrix.config.report }} \
9590
tests/models tests/schedulers tests/others
9691
97-
- name: Run fast PyTorch LoRA CPU tests
98-
if: ${{ matrix.config.framework == 'lora' }}
99-
run: |
100-
python -m pytest -n 2 --max-worker-restart=0 --dist=loadfile \
101-
-s -v -k "not Flax and not Onnx and not Dependency" \
102-
--make-reports=tests_${{ matrix.config.report }} \
103-
tests/lora
104-
10592
- name: Run fast Flax TPU tests
10693
if: ${{ matrix.config.framework == 'flax' }}
10794
run: |

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion

PHILOSOPHY.md

Lines changed: 1 addition & 1 deletion

docker/diffusers-pytorch-compile-cuda/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ ENV PATH="/opt/venv/bin:$PATH"
2626
# pre-install the heavy dependencies (these can later be overridden by the deps from setup.py)
2727
RUN python3.9 -m pip install --no-cache-dir --upgrade pip && \
2828
python3.9 -m pip install --no-cache-dir \
29-
torch==2.1.2 \
30-
torchvision==0.16.2 \
31-
torchaudio==2.1.2 \
29+
torch \
30+
torchvision \
31+
torchaudio \
3232
invisible_watermark && \
3333
python3.9 -m pip install --no-cache-dir \
3434
accelerate \

docker/diffusers-pytorch-cpu/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ ENV PATH="/opt/venv/bin:$PATH"
2525
# pre-install the heavy dependencies (these can later be overridden by the deps from setup.py)
2626
RUN python3 -m pip install --no-cache-dir --upgrade pip && \
2727
python3 -m pip install --no-cache-dir \
28-
torch==2.1.2 \
29-
torchvision==0.16.2 \
30-
torchaudio==2.1.2 \
28+
torch \
29+
torchvision \
30+
torchaudio \
3131
invisible_watermark \
3232
--extra-index-url https://download.pytorch.org/whl/cpu && \
3333
python3 -m pip install --no-cache-dir \

docker/diffusers-pytorch-cuda/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ ENV PATH="/opt/venv/bin:$PATH"
2525
# pre-install the heavy dependencies (these can later be overridden by the deps from setup.py)
2626
RUN python3 -m pip install --no-cache-dir --upgrade pip && \
2727
python3 -m pip install --no-cache-dir \
28-
torch==2.1.2 \
29-
torchvision==0.16.2 \
30-
torchaudio==2.1.2 \
28+
torch \
29+
torchvision \
30+
torchaudio \
3131
invisible_watermark && \
3232
python3 -m pip install --no-cache-dir \
3333
accelerate \

docker/diffusers-pytorch-xformers-cuda/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ ENV PATH="/opt/venv/bin:$PATH"
2525
# pre-install the heavy dependencies (these can later be overridden by the deps from setup.py)
2626
RUN python3 -m pip install --no-cache-dir --upgrade pip && \
2727
python3 -m pip install --no-cache-dir \
28-
torch==2.1.2 \
29-
torchvision==0.16.2 \
30-
torchaudio==2.1.2 \
28+
torch \
29+
torchvision \
30+
torchaudio \
3131
invisible_watermark && \
3232
python3 -m pip install --no-cache-dir \
3333
accelerate \

docs/README.md

Lines changed: 1 addition & 1 deletion

docs/TRANSLATING.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)