Lines Matching refs:aT
2241 auto aT = a.dyn_cast<MemRefType>(); in areCastCompatible() local
2247 if (aT && bT) { in areCastCompatible()
2248 if (aT.getElementType() != bT.getElementType()) in areCastCompatible()
2250 if (aT.getAffineMaps() != bT.getAffineMaps()) { in areCastCompatible()
2253 if (failed(getStridesAndOffset(aT, aStrides, aOffset)) || in areCastCompatible()
2272 if (aT.getMemorySpace() != bT.getMemorySpace()) in areCastCompatible()
2276 if (aT.getRank() != bT.getRank()) in areCastCompatible()
2279 for (unsigned i = 0, e = aT.getRank(); i != e; ++i) { in areCastCompatible()
2280 int64_t aDim = aT.getDimSize(i), bDim = bT.getDimSize(i); in areCastCompatible()
2286 if (!aT && !uaT) in areCastCompatible()
2294 auto aEltType = (aT) ? aT.getElementType() : uaT.getElementType(); in areCastCompatible()
2299 auto aMemSpace = (aT) ? aT.getMemorySpace() : uaT.getMemorySpace(); in areCastCompatible()
3880 auto aT = a.dyn_cast<TensorType>(); in areCastCompatible() local
3882 if (!aT || !bT) in areCastCompatible()
3885 if (aT.getElementType() != bT.getElementType()) in areCastCompatible()
3888 return succeeded(verifyCompatibleShape(aT, bT)); in areCastCompatible()