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
2 changes: 1 addition & 1 deletion backends/cadence/aot/replace_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -1644,7 +1644,7 @@ def call_operator(self, op, args, kwargs, meta):
ceil_mode = args[4] if len(args) >= 5 else False
count_include_pad = args[5] if len(args) >= 6 else True
divisor_override = args[6] if len(args) >= 7 else None
zero_point = torch.tensor(0, dtype=torch.int32)
zero_point = args[7] if len(args) >= 8 else None

# If the op is avg_pool1d, then we need to reshape the 3d input to a 4d
# tensor.
Expand Down
Loading