[Mlir-commits] [mlir] a176710 - [mlir][ArmSME] Update `-allocate-arm-sme-tiles` description (NFC) (#74871)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Sat Dec 9 03:39:18 PST 2023


Author: Benjamin Maxwell
Date: 2023-12-09T11:39:14Z
New Revision: a17671084db17bbe45d96024af30e172b350c66d

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

LOG: [mlir][ArmSME] Update `-allocate-arm-sme-tiles` description (NFC) (#74871)

Added: 
    

Modified: 
    mlir/include/mlir/Dialect/ArmSME/Transforms/Passes.td

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Dialect/ArmSME/Transforms/Passes.td b/mlir/include/mlir/Dialect/ArmSME/Transforms/Passes.td
index 7b9c74e0b8f60e..02238f0a18bab9 100644
--- a/mlir/include/mlir/Dialect/ArmSME/Transforms/Passes.td
+++ b/mlir/include/mlir/Dialect/ArmSME/Transforms/Passes.td
@@ -87,8 +87,9 @@ def TileAllocation
   let summary = "Allocate SME tiles";
   let description = [{
     This pass does tile allocation for SME "virtual tiles". It is run at the
-    'func.func' op level, replacing 'arm_sme.get_tile_id' ops with (i32) tile
-    ids. An error will be emitted when there's no tiles left.
+    'func.func' op level, and assigns tile IDs (via an attribute) to all ops
+    that implement the `ArmSMETileOpInterface`. An error will be emitted when
+    there's no tiles left.
   }];
   let constructor = "mlir::arm_sme::createTileAllocationPass()";
   let dependentDialects = ["func::FuncDialect"];


        


More information about the Mlir-commits mailing list