danieldk's picture
danieldk HF Staff
Add sources
f701ae7
raw
history blame contribute delete
112 Bytes
import torch
from ._ops import ops
def relu(input: torch.Tensor) -> torch.Tensor:
return ops.relu(input)