Skip to content

Commit cbbcade

Browse files
authored
Merge pull request #240 from yanyinglin/master
fix some bugs of container_ip miss
2 parents 3ad34e7 + 754fa76 commit cbbcade

4 files changed

Lines changed: 13 additions & 1 deletion

File tree

27.8 KB
Loading

cluster-trace-v2026-GenAI/README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@ To protect privacy, the original data has been anonymized through techniques suc
88

99
This dataset is comprehensive and captures the complexity of production serverless inference systems, with many insights we haven't fully explored yet. We hope it can support further research in the community. We encourage you to discover findings from this dataset that support your research, and welcome discussions with us through issues or email.
1010

11+
### Stable Diffusion Serving Pipeline
12+
The Stable Diffusion image generation pipeline follows a multi-stage iterative process: it starts with random **Noise** in latent space, which is then encoded by the **VAE** encoder. The core generation loop iteratively processes this latent representation through a combination of **Base Model** weights, **UNet** architecture, **ControlNet** guidance, and **LoRA** adapters—this denoising step is repeated multiple times with a **Sampler** (e.g., DDPM, DDIM, Euler) controlling the denoising schedule. After the iterative refinement completes, the final latent representation is decoded by the VAE decoder to produce the output **Image** in pixel space. This architecture enables flexible customization through modular components while maintaining efficient inference performance.
13+
14+
15+
![Stable Diffusion Serving Pipeline](./MLoRA-Pipeline.png)
16+
17+
18+
In production environments, user requests may contain one base model with multiple LoRAs. Typically, the parameters of multiple LoRAs are merged together into the base model.
19+
20+
21+
1122
## Dataset Structure
1223

1324
cluster-trace-v2026-GenAI
@@ -237,4 +248,5 @@ If you use this dataset to analyze request distribution pattern changes across d
237248
pages = {1-17},
238249
doi = {10.1145/3767295.3769316}
239250
}
240-
```
251+
```
252+
Binary file not shown.
8.18 KB
Binary file not shown.

0 commit comments

Comments
 (0)