File size: 169 Bytes
5ccb4fd | 1 2 3 4 5 6 7 8 9 10 11 12 | # Copyright (c) 2026 Simulacra Research Inc.
# SPDX-License-Identifier: Apache-2.0
import jax
def fused_silu(x):
return jax.nn.silu(x)
__all__ = ["fused_silu"]
|
5ccb4fd | 1 2 3 4 5 6 7 8 9 10 11 12 | # Copyright (c) 2026 Simulacra Research Inc.
# SPDX-License-Identifier: Apache-2.0
import jax
def fused_silu(x):
return jax.nn.silu(x)
__all__ = ["fused_silu"]
|