Home
last modified time | relevance | path

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

/external/llvm-project/mlir/lib/Dialect/SPIRV/
DSPIRVOps.cpp3114 auto resultMatrix = op.result().getType().cast<spirv::MatrixType>(); in verifyMatrixTimesScalar() local
3125 if (inputMatrix.getNumColumns() != resultMatrix.getNumColumns()) in verifyMatrixTimesScalar()
3130 if (inputMatrix.getNumRows() != resultMatrix.getNumRows()) in verifyMatrixTimesScalar()
3135 if (inputMatrix.getElementType() != resultMatrix.getElementType()) in verifyMatrixTimesScalar()
3253 auto resultMatrix = op.result().getType().cast<spirv::MatrixType>(); in verifyTranspose() local
3256 if (inputMatrix.getNumRows() != resultMatrix.getNumColumns()) in verifyTranspose()
3260 if (inputMatrix.getNumColumns() != resultMatrix.getNumRows()) in verifyTranspose()
3265 if (inputMatrix.getElementType() != resultMatrix.getElementType()) in verifyTranspose()
3279 auto resultMatrix = op.result().getType().cast<spirv::MatrixType>(); in verifyMatrixTimesMatrix() local
3287 if (rightMatrix.getNumColumns() != resultMatrix.getNumColumns()) in verifyMatrixTimesMatrix()
[all …]