drbh
Migrated from model repo kernels-test/python-invalid-dep
cdb83b9 unverified
raw
history blame contribute delete
189 Bytes
import torch
from ._ops import ops
from .silu_and_mul import _silu_and_mul
def silu_and_mul(x: torch.Tensor) -> torch.Tensor:
return ops.silu_and_mul(x)
__all__ = ["silu_and_mul"]