@@ -44,9 +44,9 @@ bool isStaticShapeAndContiguousRowMajor(MemRefType type);
4444// / is also scaled down by `dstBits`/`srcBits`. If `indices` is not provided
4545// / 0, is returned for the linearized index.
4646// / - If the size of the load/store is smaller than the linearized memref
47- // / load/store, the memory region emulated is larger than the actual memory
48- // / region needed. `intraDataOffset` returns the element offset of the data
49- // / relevant at the beginning.
47+ // / load/store, the memory region emulated is larger than the actual memory
48+ // / region needed. `intraDataOffset` returns the element offset of the data
49+ // / relevant at the beginning.
5050struct LinearizedMemRefInfo {
5151 OpFoldResult linearizedOffset;
5252 OpFoldResult linearizedSize;
@@ -69,8 +69,8 @@ getLinearizedMemRefOffsetAndSize(OpBuilder &builder, Location loc, int srcBits,
6969 int dstBits, OpFoldResult offset,
7070 ArrayRef<OpFoldResult> sizes);
7171
72- // Track temporary allocations that are never read from. If this is the case
73- // it means both the allocations and associated stores can be removed.
72+ // / Track temporary allocations that are never read from. If this is the case
73+ // / it means both the allocations and associated stores can be removed.
7474void eraseDeadAllocAndStores (RewriterBase &rewriter, Operation *parentOp);
7575
7676// / Given a set of sizes, return the suffix product.
@@ -106,7 +106,7 @@ computeStridesIRBlock(Location loc, OpBuilder &builder,
106106// / memory is found (i.e. skip operations that alias the entire view).
107107MemrefValue skipFullyAliasingOperations (MemrefValue source);
108108
109- // / Checks if two (memref) values are the same or are statically known to alias
109+ // / Checks if two (memref) values are the same or statically known to alias
110110// / the same region of memory.
111111inline bool isSameViewOrTrivialAlias (MemrefValue a, MemrefValue b) {
112112 return skipFullyAliasingOperations (a) == skipFullyAliasingOperations (b);
0 commit comments