Skip to content

Commit 46d9010

Browse files
committed
Remove 'value of 0 indicates no alignment requirement.'
1 parent be906aa commit 46d9010

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

mlir/include/mlir/Dialect/Vector/IR/VectorOps.td

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1714,7 +1714,6 @@ def Vector_LoadOp : Vector_Op<"load", [
17141714
load operation. It must be a positive power of 2. The operation must access
17151715
memory at an address aligned to this boundary. Violations may lead to
17161716
architecture-specific faults or performance penalties.
1717-
A value of 0 indicates no specific alignment requirement.
17181717
}];
17191718

17201719
let arguments = (ins Arg<AnyMemRef, "the reference to load from",
@@ -1830,7 +1829,6 @@ def Vector_StoreOp : Vector_Op<"store", [
18301829
store operation. It must be a positive power of 2. The operation must access
18311830
memory at an address aligned to this boundary. Violations may lead to
18321831
architecture-specific faults or performance penalties.
1833-
A value of 0 indicates no specific alignment requirement.
18341832
}];
18351833

18361834
let arguments = (ins
@@ -1919,7 +1917,6 @@ def Vector_MaskedLoadOp :
19191917
load operation. It must be a positive power of 2. The operation must access
19201918
memory at an address aligned to this boundary. Violations may lead to
19211919
architecture-specific faults or performance penalties.
1922-
A value of 0 indicates no specific alignment requirement.
19231920
}];
19241921
let extraClassDeclaration = [{
19251922
MemRefType getMemRefType() {
@@ -2012,7 +2009,6 @@ def Vector_MaskedStoreOp :
20122009
store operation. It must be a positive power of 2. The operation must access
20132010
memory at an address aligned to this boundary. Violations may lead to
20142011
architecture-specific faults or performance penalties.
2015-
A value of 0 indicates no specific alignment requirement.
20162012
}];
20172013
let extraClassDeclaration = [{
20182014
MemRefType getMemRefType() {
@@ -2106,7 +2102,6 @@ def Vector_GatherOp :
21062102
gather operation. It must be a positive power of 2. The operation must access
21072103
memory at an address aligned to this boundary. Violations may lead to
21082104
architecture-specific faults or performance penalties.
2109-
A value of 0 indicates no specific alignment requirement.
21102105

21112106
Examples:
21122107

@@ -2198,7 +2193,6 @@ def Vector_ScatterOp :
21982193
scatter operation. It must be a positive power of 2. The operation must access
21992194
memory at an address aligned to this boundary. Violations may lead to
22002195
architecture-specific faults or performance penalties.
2201-
A value of 0 indicates no specific alignment requirement.
22022196

22032197
Examples:
22042198

@@ -2282,7 +2276,6 @@ def Vector_ExpandLoadOp :
22822276
load operation. It must be a positive power of 2. The operation must access
22832277
memory at an address aligned to this boundary. Violations may lead to
22842278
architecture-specific faults or performance penalties.
2285-
A value of 0 indicates no specific alignment requirement.
22862279

22872280
Note, at the moment this Op is only available for fixed-width vectors.
22882281

@@ -2371,7 +2364,6 @@ def Vector_CompressStoreOp :
23712364
store operation. It must be a positive power of 2. The operation must access
23722365
memory at an address aligned to this boundary. Violations may lead to
23732366
architecture-specific faults or performance penalties.
2374-
A value of 0 indicates no specific alignment requirement.
23752367

23762368
Note, at the moment this Op is only available for fixed-width vectors.
23772369

0 commit comments

Comments
 (0)