Lines Matching defs:stride
41 /// Maps the 2-dim memref shape to the 64-bit stride. Note that the buffer
43 /// Returns failure if proper stride couldn't be found.
59 // Dynamic stride needs code to compute the stride at runtime.
65 memrefDescriptor.stride(rewriter, loc, preLast))
68 // Use direct constant for static stride.
102 // Determine stride.
103 auto stride = getStride(rewriter, *getTypeConverter(), mType,
105 if (failed(stride))
112 op, resType, tsz.first, tsz.second, ptr, stride.value());
128 // Determine stride.
129 auto stride = getStride(rewriter, *getTypeConverter(), mType,
131 if (failed(stride))
137 op, tsz.first, tsz.second, ptr, stride.value(), adaptor.getVal());