Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pytensor/tensor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ def _get_vector_length_Constant(op: Op | Variable, var: Constant) -> int:
# adds shared-variable constructors
from pytensor.tensor import (
blas,
blas_c,
sharedvar,
xlogx,
)
Expand Down
4 changes: 2 additions & 2 deletions pytensor/tensor/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1774,9 +1774,9 @@ def do_constant_folding(self, fgraph, node):
| pytensor.tensor.subtensor.AdvancedIncSubtensor1
| pytensor.tensor.subtensor.AdvancedIncSubtensor
| pytensor.tensor.blas.Gemv
| pytensor.tensor.blas_c.CGemv
| pytensor.tensor.blas.CGemv
| pytensor.tensor.blas.Ger
| pytensor.tensor.blas_c.CGer,
| pytensor.tensor.blas.CGer,
)
):
# Ops that will work inplace on the Alloc. So if they
Expand Down
Loading
Loading