diff --git a/mlir/python/mlir/_mlir_libs/_mlir/ir.pyi b/mlir/python/mlir/_mlir_libs/_mlir/ir.pyi --- a/mlir/python/mlir/_mlir_libs/_mlir/ir.pyi +++ b/mlir/python/mlir/_mlir_libs/_mlir/ir.pyi @@ -59,6 +59,7 @@ "FloatTF32Type", "F32Type", "F64Type", + "F128Type", "FlatSymbolRefAttr", "FloatAttr", "FunctionType", @@ -652,6 +653,14 @@ @staticmethod def isinstance(arg: Any) -> bool: ... +# TODO: Failed Auto-generating. Manually wriiten. +class F128Type(Type): + def __init__(self, cast_from_type: Type) -> None: ... + @staticmethod + def get(*args, **kwargs) -> F128Type: ... + @staticmethod + def isinstance(arg: Any) -> bool: ... + # TODO: Auto-generated. Audit and fix. class FlatSymbolRefAttr(Attribute): def __init__(self, cast_from_attr: Attribute) -> None: ... @@ -674,6 +683,8 @@ @staticmethod def get_f64(*args, **kwargs) -> FloatAttr: ... @staticmethod + def get_f128(*args, **kwargs) -> FloatAttr: ... + @staticmethod def isinstance(arg: Any) -> bool: ... @property def type(self) -> Type: ...