Skip to content
Merged
Changes from 1 commit
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 onnxscript/function_libs/torch_lib/ops/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -7538,7 +7538,7 @@ def aten_repeat(self: TTensor, repeats: Sequence[TInt]) -> TTensor:

@torch_op("aten::repeat_interleave.self_int", trace_only=True)
def aten_repeat_interleave_self_int(
self: TensorType, repeats: int, dim: Optional[int] = None
self: TensorType, repeats: int, dim: Optional[int] = None, output_size: Optional[int] = None
) -> TensorType:
"""repeat_interleave.self_int(Tensor self, SymInt repeats, int? dim=None, *, SymInt? output_size=None) -> Tensor

Expand Down
Loading