You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Input graph is a Torchscript module but the ir provided is default (dynamo). Please set ir=torchscript to suppress the warning. Compiling the module with ir=torchscript"
96
102
)
97
103
return_IRType.ts
104
+
elifmodule_is_exportable:
105
+
raiseValueError(
106
+
"Input graph is an ExportedProgram which is not currently supported. Please provide torch.nn.Module or torch.fx.GraphModule as input."
107
+
)
98
108
else:
99
109
raiseValueError("Module was provided in an unsupported format")
110
+
elifir=="exported_program":
111
+
raiseValueError(
112
+
"ir=exported_program is not currently supported. Supported ir options : ts|fx|dynamo"
0 commit comments