Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions activation/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions activation/tests/kernels/test_activation.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ def gelu_tanh(x: torch.Tensor) -> torch.Tensor:
def silu(x: torch.Tensor) -> torch.Tensor:
return F.silu(x)

@pytest.mark.kernels_ci
@pytest.mark.parametrize(
"activation_name", ["silu_and_mul", "mul_and_silu", "gelu", "gelu_tanh", "fatrelu"]
)
Expand Down Expand Up @@ -132,6 +133,7 @@ def test_act_and_mul(
opcheck(op, (out, x))


@pytest.mark.kernels_ci
@pytest.mark.parametrize(
"activation_fns",
[
Expand Down