Skip to content

Commit 046583c

Browse files
committed
Remove the asterisk in the declaration of function 'relu' in src/ntops/torch.py
1 parent ed31c58 commit 046583c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ntops/torch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def mul(input, other, *, out=None):
120120
return out
121121

122122

123-
def relu(input, *, out=None):
123+
def relu(input, out=None):
124124
if out is None:
125125
out = torch.empty_like(input)
126126

0 commit comments

Comments
 (0)