aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Maxwell <benjamin.maxwell@arm.com>2023-12-09 11:39:14 +0000
committerGitHub <noreply@github.com>2023-12-09 11:39:14 +0000
commita17671084db17bbe45d96024af30e172b350c66d (patch)
tree79c5ef3c6efeae4ad092efe694d38b9e4c742c86
parente3f154d8733928fa725584736a18b75832db30db (diff)
downloadllvm-a17671084db17bbe45d96024af30e172b350c66d.zip
llvm-a17671084db17bbe45d96024af30e172b350c66d.tar.gz
llvm-a17671084db17bbe45d96024af30e172b350c66d.tar.bz2
[mlir][ArmSME] Update `-allocate-arm-sme-tiles` description (NFC) (#74871)
-rw-r--r--mlir/include/mlir/Dialect/ArmSME/Transforms/Passes.td5
1 files changed, 3 insertions, 2 deletions
diff --git a/mlir/include/mlir/Dialect/ArmSME/Transforms/Passes.td b/mlir/include/mlir/Dialect/ArmSME/Transforms/Passes.td
index 7b9c74e..02238f0 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"];