1.8 KiB
1.8 KiB
Import ONNX specifications into ONNF
The specifications of ONNX are defined under onnx/defs directory in ONNX projects. There is a python script onnx/defs/gen_doc.py that automatically generate documents about operations in ONNX (docs/Operations.md). ONNF modified this script to import ONNX specifications into ONNF. There are two files generated for ONNF with the modified gen_doc.py:
- src/dialect/onnx/onnxop.inc: Operation defintion for MLIR tablegen. Will be included in src/dialect/onnx/onnx.td
- src/builder/op_build_table.inc: c code for ONNF frontend to import operation nodes from ONNX model. Will be included in src/builder/frontend_dialect_transformer.cpp
How to use the script
- Get ONNX. You can use ONNF/third_party/onnx
- In your ONNX directory, copy the script docs/gen_doc.py in your ONNF to onnx/defs in ONNX
- Run the script: python onnx/defs/gen_doc.py
- Two files, onnxop.inc and op_buid_table.inc should be generated in current directory
- copy the two file into your ONNF: cp onnxop.inc your_ONNF/src/dialect/onnx/onnxop.inc; cp op_build_table.inc your_ONNF/src/builder
- go to your ONNF and build
Customization
In addition to following the ONNF specification, the modified gen_doc.py provides some mechanism for you to customize the output. Several tables are defined at the beginning of the script:
- special_attr_defaults: gives attribute special default value.
- special_op_handler: creates special import function in frontend_dialect_transformer.cpp. Currently special handler is used for operations with oprational arguments
- ShapeInferenceList: list of operations which has shape inference defined
- CanonicalList : list of operations which has canonical form
- manual_code_in_op_def: provides a way to specify any code for an operation in its tablegen