Files
nano-vllm/nanovllm/layers/activation.py
GeeeekExplorer a5a4909e6a init commit
2025-06-10 00:27:01 +08:00

15 lines
284 B
Python
Executable File

import torch
from torch import nn
import torch.nn.functional as F
class SiluAndMul(nn.Module):
def __init__(self):
super().__init__()
@torch.compile
def forward(self, x: torch.Tensor) -> torch.Tensor:
x, y = x.chunk(2, -1)
return F.silu(x) * y