We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 140cbfb commit 0c68d32Copy full SHA for 0c68d32
run_cli.sh
@@ -0,0 +1 @@
1
+python -m flux --name flux-schnell --height 1024 --width 1024 --loop
src/flux/model.py
@@ -4,15 +4,14 @@
4
from torch import Tensor, nn
5
6
from flux.modules.layers import (
7
- DoubleStreamBlock,
8
EmbedND,
9
LastLayer,
10
MLPEmbedder,
11
- SingleStreamBlock,
12
timestep_embedding,
13
)
14
from flux.modules.lora import LinearLora, replace_linear_with_lora
15
+from triton_kernels import SingleStreamBlock, DoubleStreamBlock
16
17
@dataclass
18
class FluxParams:
0 commit comments