Skip to content

Commit 193b98c

Browse files
committed
remove breakpoints
1 parent be98308 commit 193b98c

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/diffusers/hooks/group_offloading.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ def post_forward(self, module: torch.nn.Module, output):
9898

9999
def onload_(self, module: torch.nn.Module) -> None:
100100
if self.group.onload_leader == module:
101-
breakpoint()
102101
if self.stream is not None:
103102
# Wait for previous Host->Device transfer to complete
104103
self.stream.synchronize()

src/diffusers/models/transformers/transformer_ltx.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,6 @@ def forward(
240240
norm_hidden_states = self.norm1(hidden_states)
241241

242242
num_ada_params = self.scale_shift_table.shape[0]
243-
breakpoint()
244243
ada_values = self.scale_shift_table[None, None] + temb.reshape(batch_size, temb.size(1), num_ada_params, -1)
245244
shift_msa, scale_msa, gate_msa, shift_mlp, scale_mlp, gate_mlp = ada_values.unbind(dim=2)
246245
norm_hidden_states = norm_hidden_states * (1 + scale_msa) + shift_msa

0 commit comments

Comments
 (0)