[Mlir-commits] [mlir] 70f1021 - [mlir][py-bindings] Fix include issue introduced by D127352

llvmlistbot at llvm.org llvmlistbot at llvm.org
Fri Jun 10 13:44:25 PDT 2022


Author: agostini01
Date: 2022-06-10T20:44:22Z
New Revision: 70f1021431a625985c00141329c359babecc2c29

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

LOG: [mlir][py-bindings] Fix include issue introduced by D127352

Using:
      -DMLIR_ENABLE_BINDINGS_PYTHON=ON

Resulted in a failed build due to changes implemented by
https://reviews.llvm.org/D127352

This updates the include line

Reviewed By: Mogball

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

Added: 
    

Modified: 
    mlir/python/mlir/dialects/GPUOps.td

Removed: 
    


################################################################################
diff  --git a/mlir/python/mlir/dialects/GPUOps.td b/mlir/python/mlir/dialects/GPUOps.td
index bf0980f2930d4..4e23d322f6c2f 100644
--- a/mlir/python/mlir/dialects/GPUOps.td
+++ b/mlir/python/mlir/dialects/GPUOps.td
@@ -10,6 +10,6 @@
 #define PYTHON_BINDINGS_GPU_OPS
 
 include "mlir/Bindings/Python/Attributes.td"
-include "mlir/Dialect/GPU/GPUOps.td"
+include "mlir/Dialect/GPU/IR/GPUOps.td"
 
 #endif


        


More information about the Mlir-commits mailing list