Skip to content

Commit

Permalink
TensorType
Browse files Browse the repository at this point in the history
  • Loading branch information
justinchuby committed Jul 23, 2024
1 parent eb7f8d2 commit 85c572a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions onnxscript/function_libs/torch_lib/ops/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -3612,7 +3612,7 @@ def aten_from_file(
@torch_op("aten::full", trace_only=True)
def aten_full(
size: Union[INT64, INT32],
fill_value: FLOAT,
fill_value: TensorType,
dtype: int = FLOAT.dtype,
layout: str = "",
device: str = "",
Expand Down Expand Up @@ -6238,7 +6238,7 @@ def aten_new_empty_strided(
def aten_new_full(
self: TTensor,
size: INT64,
fill_value: TTensor,
fill_value: TensorType,
dtype: int = -1,
layout: str = "",
device: str = "",
Expand Down

0 comments on commit 85c572a

Please sign in to comment.