[Mlir-commits] [mlir] 0736200 - [MLIR][Linalg] Move AggregatedOpInterface in linalg namespace (NFC)

Lorenzo Chelini llvmlistbot at llvm.org
Mon Jul 24 07:22:45 PDT 2023


Author: Lorenzo Chelini
Date: 2023-07-24T16:22:39+02:00
New Revision: 0736200de4db6c5a2b46de826a43f66d3c6193ab

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

LOG: [MLIR][Linalg] Move AggregatedOpInterface in linalg namespace (NFC)

For now, the interface is specific to linalg only.

Reviewed By: qcolombet

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

Added: 
    

Modified: 
    mlir/include/mlir/Dialect/Linalg/IR/LinalgInterfaces.td

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Dialect/Linalg/IR/LinalgInterfaces.td b/mlir/include/mlir/Dialect/Linalg/IR/LinalgInterfaces.td
index edc393b92c4c35..1efd2b6b63dd9f 100644
--- a/mlir/include/mlir/Dialect/Linalg/IR/LinalgInterfaces.td
+++ b/mlir/include/mlir/Dialect/Linalg/IR/LinalgInterfaces.td
@@ -902,7 +902,7 @@ def AggregatedOpInterface : OpInterface<"AggregatedOpInterface"> {
     Interface for decomposing aggregated operations into a sequence of simpler
     ops.
   }];
-  let cppNamespace = "::mlir";
+  let cppNamespace = "::mlir::linalg";
   let methods = [
       InterfaceMethod<
         /*desc=*/[{


        


More information about the Mlir-commits mailing list