[Mlir-commits] [mlir] 359dd47 - Adopt Properties to store operations inherent Attributes in the ARMNeon dialect

Mehdi Amini llvmlistbot at llvm.org
Mon May 8 08:34:36 PDT 2023


Author: Mehdi Amini
Date: 2023-05-08T08:32:19-07:00
New Revision: 359dd473436096787133ddc54b0f63f5d0bfd204

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

LOG: Adopt Properties to store operations inherent Attributes in the ARMNeon dialect

This is part of an on-going migration to adopt Properties inside MLIR.

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

Added: 
    

Modified: 
    mlir/include/mlir/Dialect/ArmNeon/ArmNeon.td

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Dialect/ArmNeon/ArmNeon.td b/mlir/include/mlir/Dialect/ArmNeon/ArmNeon.td
index cefba2980e863..d6d95a865bb94 100644
--- a/mlir/include/mlir/Dialect/ArmNeon/ArmNeon.td
+++ b/mlir/include/mlir/Dialect/ArmNeon/ArmNeon.td
@@ -24,6 +24,7 @@ include "mlir/IR/OpBase.td"
 def ArmNeon_Dialect : Dialect {
   let name = "arm_neon";
   let cppNamespace = "::mlir::arm_neon";
+  let usePropertiesForAttributes = 1;
 
 
   // Note: this does not need to depend on LLVMDialect as long as functions in


        


More information about the Mlir-commits mailing list