Skip to content
This repository was archived by the owner on Nov 17, 2025. It is now read-only.

Commit e9a8840

Browse files
Update NumPy variadic name from product to prod
1 parent 57d0231 commit e9a8840

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

aesara/scalar/basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1889,7 +1889,7 @@ class Mul(ScalarOp):
18891889
commutative = True
18901890
associative = True
18911891
nfunc_spec = ("multiply", 2, 1)
1892-
nfunc_variadic = "product"
1892+
nfunc_variadic = "prod"
18931893

18941894
def impl(self, *inputs):
18951895
return np.prod(inputs)

0 commit comments

Comments
 (0)