We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d47a6eb commit a6579ecCopy full SHA for a6579ec
1 file changed
.github/workflows/UnitTests.yml
@@ -35,10 +35,15 @@ jobs:
35
- name: Checkout Repository
36
uses: actions/checkout@v4
37
38
+ - name: Print dependencies
39
+ run: |
40
+ pip freeze
41
+
42
- name: Run MaxDiffusion Training
43
run: |
44
# This command is adapted from your DAG for a single-slice configuration.
- NVTE_FUSED_ATTN=1 python -m src.maxdiffusion.train_sdxl src/maxdiffusion/configs/base_xl.yml \
45
+ NVTE_FUSED_ATTN=1 pip install . && \
46
+ python -m src.maxdiffusion.train_sdxl src/maxdiffusion/configs/base_xl.yml \
47
hardware=gpu \
48
train_new_unet=true \
49
train_text_encoder=false \
0 commit comments