Home
last modified time | relevance | path

Searched refs:mismatchingDims (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/mlir/include/mlir/Dialect/Vector/IR/
H A DVectorOps.h59 std::pair<int, int> *mismatchingDims = nullptr);
/llvm-project-15.0.7/mlir/lib/Dialect/Vector/IR/
H A DVectorOps.cpp1686 std::pair<int, int> *mismatchingDims) { in isBroadcastableTo() argument
1707 if (mismatchingDims) { in isBroadcastableTo()
1708 mismatchingDims->first = srcDim; in isBroadcastableTo()
1709 mismatchingDims->second = dstDim; in isBroadcastableTo()
1719 std::pair<int, int> mismatchingDims; in verify() local
1721 isBroadcastableTo(getSourceType(), getVectorType(), &mismatchingDims); in verify()
1728 << mismatchingDims.first << " vs. " << mismatchingDims.second << ")"; in verify()