Skip to content
Merged
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
4 changes: 2 additions & 2 deletions backends/cadence/aot/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
ExecutorchProgramManager,
)
from executorch.exir.passes import ToOutVarPass
from executorch.exir.passes.sym_shape_eval_pass import HintBasedSymShapeEvalPass
from executorch.exir.passes.sym_shape_eval_pass import ConstraintBasedSymShapeEvalPass
from executorch.exir.program._program import to_edge

from torch.export.exported_program import ExportedProgram
Expand Down Expand Up @@ -460,7 +460,7 @@ def _lower_ep_to_cadence_gen_etrecord(
emit_stacktrace=False,
to_out_var_pass=ToOutVarPass(),
extract_delegate_segments=False,
sym_shape_eval_pass=HintBasedSymShapeEvalPass(),
sym_shape_eval_pass=ConstraintBasedSymShapeEvalPass(),
),
)

Expand Down
Loading