[Mlir-commits] [mlir] b50893d - Added an empty __init__.py file to the MLIR Python bindings

Alex Zinenko llvmlistbot at llvm.org
Thu Mar 31 02:57:37 PDT 2022


Author: Sergei Lebedev
Date: 2022-03-31T11:57:31+02:00
New Revision: b50893db528cce45e5eb8d0ce367bc5b686b5558

URL: https://github.com/llvm/llvm-project/commit/b50893db528cce45e5eb8d0ce367bc5b686b5558
DIFF: https://github.com/llvm/llvm-project/commit/b50893db528cce45e5eb8d0ce367bc5b686b5558.diff

LOG: Added an empty __init__.py file to the MLIR Python bindings

While not strictly required after PEP-420, it is better to have one, since not
all tooling supports implicit namespace packages.

Reviewed By: ftynse

Differential Revision: https://reviews.llvm.org/D122794

Added: 
    mlir/python/mlir/__init__.py

Modified: 
    

Removed: 
    


################################################################################
diff  --git a/mlir/python/mlir/__init__.py b/mlir/python/mlir/__init__.py
new file mode 100644
index 0000000000000..a0f4e3d5eea63
--- /dev/null
+++ b/mlir/python/mlir/__init__.py
@@ -0,0 +1,3 @@
+# Licensed under the Apache License v2.0 with LLVM Exceptions.
+# See https://llvm.org/LICENSE.txt for license information.
+# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception


        


More information about the Mlir-commits mailing list