From 70f1021431a625985c00141329c359babecc2c29 Mon Sep 17 00:00:00 2001 From: agostini01 Date: Fri, 10 Jun 2022 20:42:16 +0000 Subject: [PATCH] [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 --- mlir/python/mlir/dialects/GPUOps.td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlir/python/mlir/dialects/GPUOps.td b/mlir/python/mlir/dialects/GPUOps.td index bf0980f2930d..4e23d322f6c2 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