Description
ERR_export: Failed to convert the exported program to an ONNX model. [96mThis is step 3/3[0m of exporting the model to ONNX. Next steps:- If there is a missing ONNX function implement it and register it to the registry.- If there is an internal error during ONNX conversion debug the error and summit a PR to PyTorch.- Create an error report with
torch.onnx.export(... report=True)and save the ExportedProgram as a pt2 file. Create an issue in the PyTorch GitHub repository against the [96m*onnx*[0m component. Attach the error report and the pt2 model.## Exception summary<class 'torch.onnx._internal.exporter._errors.DispatchError'>: No ONNX function found for <OpOverload(op='aten.min' overload='other')>. Failure message: All overloads did not match the node
%min_1 : [num_users=1] = call_function[target=torch.ops.aten.min.other](args = (%add_6 %clone) kwargs = {}).- Failed to match overload
OnnxDecompMeta(onnx_function=OnnxFunction(<function aten_minimum at 0x7fa2671fea70>) fx_target=<OpOverload(op='aten.min' overload='other')> signature=OpSignature(domain='pkg.onnxscript.torch_lib' name='aten_minimum' overload='' params=[Parameter(name='self' type_constraint=TypeConstraintParam(name='TReal' allowed_types={Tensor(INT16) Tensor(FLOAT) Tensor(BFLOAT16) Tensor(FLOAT16) Tensor(INT32) Tensor(INT64) Tensor(INT8) Tensor(DOUBLE)} description='') required=True variadic=False default=_EMPTY_DEFAULT) Parameter(name='other' type_constraint=TypeConstraintParam(name='TReal' allowed_types={Tensor(INT16) Tensor(FLOAT) Tensor(BFLOAT16) Tensor(FLOAT16) Tensor(INT32) Tensor(INT64) Tensor(INT8) Tensor(DOUBLE)} description='') required=True variadic=False default=_EMPTY_DEFAULT)] outputs=[Parameter(name='TReal' type_constraint=TypeConstraintParam(name='TReal' allowed_types={Tensor(INT16) Tensor(FLOAT) Tensor(BFLOAT16) Tensor(FLOAT16) Tensor(INT32) Tensor(INT64) Tensor(INT8) Tensor(DOUBLE)} description='') required=True variadic=False default=_EMPTY_DEFAULT)] opset_version=1) is_custom=False is_comp...`