Skip to content

Commit 130f0b7

Browse files
committed
Remove the asterisk in the declaration of function relu in src/ntops/torch.py
1 parent 18ddf95 commit 130f0b7

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)