We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5531caf commit ee7e29fCopy full SHA for ee7e29f
backends/cadence/aot/compiler.py
@@ -278,6 +278,7 @@ def quantize_and_export_to_edge(
278
dump_graphs: bool = False,
279
constant_methods: Optional[dict[str, object]] = None,
280
calibration_data: Optional[list[tuple[object, ...]]] = None,
281
+ core_aten_exceptions: Optional[list[torch._ops.OpOverload]] = None,
282
) -> EdgeProgramManager:
283
"""
284
Trace, quantize and lower a model/inputs pair to edge IR.
@@ -294,6 +295,7 @@ def quantize_and_export_to_edge(
294
295
quantized_model,
296
dump_graphs=dump_graphs,
297
constant_methods=constant_methods,
298
+ core_aten_exceptions=core_aten_exceptions,
299
)
300
301
0 commit comments