[Mlir-commits] [mlir] [mlir][ArmSME] Rename slice move operations to insert/extract_tile_slice (PR #106755)
Cullen Rhodes
llvmlistbot at llvm.org
Mon Sep 2 00:32:11 PDT 2024
================
@@ -603,25 +603,25 @@ def MoveVectorToTileSliceOp : ArmSME_Op<"move_vector_to_tile_slice", [
"::llvm::cast<mlir::VectorType>($_self).getElementType(),"
"/*scalableDims=*/{true})">,
]> {
- let summary = "Move 1-D scalable vector to slice of 2-D tile";
+ let summary = "Insert 1-D scalable vector into slice of 2-D tile";
let description = [{
- The vector to tile slice operation moves a 1-D scalable vector to a slice
- of a 2-D scalable vector tile at the given index. The type of the 1-D
- scalable vector to be moved must match the type of the tile slice. A tile
- slice is a 1-D vector of horizontally or vertically contiguous elements
- within a ZA tile. The updated tile is returned as the result.
+ Inserts a 1-D scalable vector to a slice of a 2-D scalable vector tile at
+ the given index. The type of the 1-D scalable vector to be moved must match
----------------
c-rhodes wrote:
```suggestion
the given index. The type of the 1-D scalable vector to be inserted must match
```
https://github.com/llvm/llvm-project/pull/106755
More information about the Mlir-commits
mailing list