Lines Matching defs:mismatchingDims
2484 std::pair<VectorDim, VectorDim> *mismatchingDims) {
2523 if (mismatchingDims != nullptr) {
2524 mismatchingDims->first.dim = srcDim;
2525 mismatchingDims->first.isScalable = srcDimScalableFlag;
2527 mismatchingDims->second.dim = dstDim;
2528 mismatchingDims->second.isScalable = dstDimScalableFlag;
2538 std::pair<VectorDim, VectorDim> mismatchingDims;
2540 getSourceType(), getResultVectorType(), &mismatchingDims);
2547 << (mismatchingDims.first.isScalable ? "[" : "")
2548 << mismatchingDims.first.dim
2549 << (mismatchingDims.first.isScalable ? "]" : "") << " vs. "
2550 << (mismatchingDims.second.isScalable ? "[" : "")
2551 << mismatchingDims.second.dim
2552 << (mismatchingDims.second.isScalable ? "]" : "") << ")";