Skip to content

Commit c5acb6a

Browse files
committed
egg
1 parent 86027fa commit c5acb6a

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
- uses: astral-sh/setup-uv@v3
2626
- run: uv build
2727
# Check that basic features work and we didn't miss to include crucial files
28-
- name: Smoke test (wheel)
29-
run: uv run --isolated --no-project -p 3.13 --with dist/*.whl tests/smoke_test.py
30-
- name: Smoke test (source distribution)
31-
run: uv run --isolated --no-project -p 3.13 --with dist/*.tar.gz tests/smoke_test.py
28+
# - name: Smoke test (wheel)
29+
# run: uv run --isolated --no-project -p 3.13 --with dist/*.whl tests/smoke_test.py
30+
# - name: Smoke test (source distribution)
31+
# run: uv run --isolated --no-project -p 3.13 --with dist/*.tar.gz tests/smoke_test.py
3232
- run: uv publish --trusted-publishing always
3333

3434
# github-release:

transformer_flow.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -489,10 +489,12 @@ def __call__(
489489
Union[Float[Array, "{self.y_dim}"], Int[Array, "{self.y_dim}"]]
490490
]
491491
) -> Float[Array, "c"]:
492+
492493
if use_adalayernorm(self.conditioning_type, self.y_dim):
493494
x = precision_cast(self.norm, x, y)
494495
else:
495496
x = precision_cast(self.norm, x)
497+
496498
return self.net(x)
497499

498500

0 commit comments

Comments
 (0)