b32cd17 4e8294d b32cd17
1
2
3
4
5
6
7
8
9
10
11
12
import torch from ._ops import ops from .op import _silu_and_mul def silu_and_mul(x: torch.Tensor) -> torch.Tensor: return ops.silu_and_mul(x) __all__ = ["silu_and_mul"]