Skip to content

Commit 7f0567a

Browse files
committed
Fix deprecation wrapper for vectorize_graph
1 parent 92d5450 commit 7f0567a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pytensor/graph/replace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,4 +314,4 @@ def transform(var: Variable) -> Variable:
314314

315315
def vectorize(*args, **kwargs):
316316
warnings.warn("vectorize was renamed to vectorize_graph", UserWarning)
317-
return vectorize_node(*args, **kwargs)
317+
return vectorize_graph(*args, **kwargs)

0 commit comments

Comments
 (0)