We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b273b0 commit 747cb61Copy full SHA for 747cb61
mlir/docs/Dialects/Vector.md
@@ -320,7 +320,12 @@ There is **no consistent way** to identify:
320
A more consistent way to classify "to", "from", and "value-to-store" arguments
321
is by determining whether an operand is _indexed_ or _non-indexed_.
322
323
-#### **Example: `vector.transfer_read` and `vector.transfer_write`**
+The distinction is somewhat intuitive, but for clarity:
324
+- Indexed operands require indices to specify an element/slice (e.g., `%A[0]`).
325
+- Non-indexed operands do not require indices as they are accessed in their
326
+ entirety (e.g., `%B`).
327
+
328
+Below is an example using: `vector.transfer_read` and `vector.transfer_write`
329
```mlir
330
Indexed Operand
331
|
0 commit comments