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 86ba7e7 commit c755d04Copy full SHA for c755d04
backends/cadence/aot/compiler.py
@@ -275,6 +275,7 @@ def quantize_and_export_to_edge(
275
quantizer: Optional[CadenceQuantizer] = None,
276
dump_graphs: bool = False,
277
constant_methods: Optional[dict[str, object]] = None,
278
+ calibration_data: Optional[list[tuple[object, ...]]] = None,
279
) -> EdgeProgramManager:
280
"""
281
Trace, quantize and lower a model/inputs pair to edge IR.
@@ -283,6 +284,7 @@ def quantize_and_export_to_edge(
283
284
model,
285
inputs,
286
quantizer=quantizer,
287
+ calibration_data=calibration_data,
288
dump_graphs=dump_graphs,
289
)
290
0 commit comments