[Mlir-commits] [mlir] 92e00af - [mlir] NFC: add missing 'FloatType' to core Python stub file (#105554)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Sun Aug 25 17:51:26 PDT 2024
Author: Christopher Bate
Date: 2024-08-25T18:51:22-06:00
New Revision: 92e00af432d55e2f4a80f14d97fc18878efdfea3
URL: https://github.com/llvm/llvm-project/commit/92e00af432d55e2f4a80f14d97fc18878efdfea3
DIFF: https://github.com/llvm/llvm-project/commit/92e00af432d55e2f4a80f14d97fc18878efdfea3.diff
LOG: [mlir] NFC: add missing 'FloatType' to core Python stub file (#105554)
The stub class for `FloatType` is present in `ir.pyi`, but it is missing
from the `__all__` export list.
Added:
Modified:
mlir/python/mlir/_mlir_libs/_mlir/ir.pyi
Removed:
################################################################################
diff --git a/mlir/python/mlir/_mlir_libs/_mlir/ir.pyi b/mlir/python/mlir/_mlir_libs/_mlir/ir.pyi
index e3599d3c84ffed..4a2d0e977ccf26 100644
--- a/mlir/python/mlir/_mlir_libs/_mlir/ir.pyi
+++ b/mlir/python/mlir/_mlir_libs/_mlir/ir.pyi
@@ -129,6 +129,7 @@ __all__ = [
"Float8E5M2Type",
"FloatAttr",
"FloatTF32Type",
+ "FloatType",
"FunctionType",
"IndexType",
"InferShapedTypeOpInterface",
More information about the Mlir-commits
mailing list