We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2db3760 commit b9c4f20Copy full SHA for b9c4f20
pytensor/scalar/basic.py
@@ -4236,7 +4236,8 @@ def fgraph(self):
4236
# the fgraph to be set to the variable as we need to pickle
4237
# them for the cache of c module to work.
4238
fgraph = FunctionGraph(self.inputs, self.outputs)
4239
- MergeOptimizer().rewrite(fgraph)
+ with config.change_flags(optimizer_verbose=False):
4240
+ MergeOptimizer().rewrite(fgraph)
4241
for node in fgraph.apply_nodes:
4242
if not isinstance(node.op, ScalarOp):
4243
raise TypeError(
0 commit comments