Skip to content

Commit 2fbd2c4

Browse files
Olivia-liufacebook-github-bot
authored andcommitted
Remove runtime_min and runtime_max arguments (#2028)
Summary: Pull Request resolved: #2028 This function was originally authored in D52446586 by zhxchen17 and it is now broken because of a recent change to symbolic_shapes.py made in D53498537. I noticed it because Executorch SDK calls this function to deserialize etrecord and now that feature is broken. Reviewed By: mergennachin, Jack-Khuu Differential Revision: D53981108 fbshipit-source-id: 99d52512410466c309b8ae921fa0e988d7c1fc52
1 parent 24bd94e commit 2fbd2c4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

exir/serde/export_serialize.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1135,8 +1135,6 @@ def deserialize_sym_int(self, s: SymInt) -> Union[int, torch.SymInt]:
11351135
sym,
11361136
compiler_min=vr.lower, # type: ignore[arg-type]
11371137
compiler_max=vr.upper, # type: ignore[arg-type]
1138-
runtime_min=vr.lower, # type: ignore[arg-type]
1139-
runtime_max=vr.upper, # type: ignore[arg-type]
11401138
)
11411139

11421140
if val.hint is None:

0 commit comments

Comments
 (0)