Updated PyTorch ONNX exporter (markdown)

Aaron Bockover
2022-09-26 13:42:05 -04:00
parent 30fad2328e
commit b456cb3906

@ -337,3 +337,5 @@ python -m pytest -n auto --cov --cov-report "xml:test/coverage.xml" test/onnx/te
To support quantized model export, we need to unpack the quantized tensor inputs and the PackedParam weights (<https://github.com/pytorch/pytorch/pull/69232>). We construct through `TupleConstruct` to have a 1-to-1 input mapping,
so that we can use `replaceAllUsesWith` API for its successors. In addition, we support quantized namespace export, and the developers can add more symbolics for quantized operators conveniently in the current framework.
Test Save