You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I converted from the torch onnx dialect to the torch dialect, the float16 LayerNormalization op failed to convert successfully. The main reason was that the operand type was f16, stash_type was not described in the attribute list, and stash_type in the code was set to 1 by default, that is, the default was float32 type, resulting in verification errors.
When I converted from the torch onnx dialect to the torch dialect, the float16 LayerNormalization op failed to convert successfully. The main reason was that the operand type was f16, stash_type was not described in the attribute list, and stash_type in the code was set to 1 by default, that is, the default was float32 type, resulting in verification errors.
My torch_onnx file is converted from the onnx model into an mlir file by torch_mlir.tools.export_onnx module.
The text was updated successfully, but these errors were encountered: