Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -96,7 +96,7 @@ Key design choices:
96
 
97
  - **Latent-Space Super-Resolution** — Two-stage pipeline: generate at low resolution, then refine in latent space (not pixel space), avoiding an extra VAE decode-encode round trip.
98
  - **Turbo VAE Decoder** — A lightweight re-trained decoder that substantially reduces decoding overhead.
99
- - **Full-Graph Compilation** — [MagiCompiler](https://github.com/sandai/MagiCompiler) fuses operators across Transformer layers for ~1.2x speedup.
100
  - **Distillation** — DMD-2 distillation enables generation with only 8 denoising steps (no CFG), without sacrificing quality.
101
 
102
  ## Getting Started
@@ -113,7 +113,7 @@ docker run -it --gpus all \
113
  sandai/magi-compiler:latest bash
114
 
115
  # Install MagiCompiler
116
- git clone https://github.com/sandai/MagiCompiler
117
  cd MagiCompiler
118
  pip install -e . --no-build-isolation --config-settings editable_mode=compat
119
  cd ..
@@ -138,7 +138,7 @@ git clone https://github.com/Dao-AILab/flash-attention
138
  cd flash-attention/hopper && python setup.py install && cd ../..
139
 
140
  # Install MagiCompiler
141
- git clone https://github.com/sandai/MagiCompiler
142
  cd MagiCompiler
143
  pip install -e . --no-build-isolation --config-settings editable_mode=compat
144
  cd ..
 
96
 
97
  - **Latent-Space Super-Resolution** — Two-stage pipeline: generate at low resolution, then refine in latent space (not pixel space), avoiding an extra VAE decode-encode round trip.
98
  - **Turbo VAE Decoder** — A lightweight re-trained decoder that substantially reduces decoding overhead.
99
+ - **Full-Graph Compilation** — [MagiCompiler](https://github.com/SandAI-org/MagiCompiler) fuses operators across Transformer layers for ~1.2x speedup.
100
  - **Distillation** — DMD-2 distillation enables generation with only 8 denoising steps (no CFG), without sacrificing quality.
101
 
102
  ## Getting Started
 
113
  sandai/magi-compiler:latest bash
114
 
115
  # Install MagiCompiler
116
+ git clone https://github.com/SandAI-org/MagiCompiler
117
  cd MagiCompiler
118
  pip install -e . --no-build-isolation --config-settings editable_mode=compat
119
  cd ..
 
138
  cd flash-attention/hopper && python setup.py install && cd ../..
139
 
140
  # Install MagiCompiler
141
+ git clone https://github.com/SandAI-org/MagiCompiler
142
  cd MagiCompiler
143
  pip install -e . --no-build-isolation --config-settings editable_mode=compat
144
  cd ..