Lines Matching refs:RShape
1320 ShapeInfo RShape(MatMul->getArgOperand(3), MatMul->getArgOperand(4)); in lowerDotProduct() local
1322 if (LShape.NumRows != 1 || RShape.NumColumns != 1) // not a dot product in lowerDotProduct()
1650 ShapeInfo RShape(MatMul->getArgOperand(3), MatMul->getArgOperand(4)); in isFusionProfitable() local
1653 const unsigned C = RShape.NumColumns; in isFusionProfitable()
1690 Value *RPtr, ShapeInfo RShape, StoreInst *Store) { in createTiledLoops() argument
1694 TileInfo TI(LShape.NumRows, RShape.NumColumns, LShape.NumColumns, TileSize); in createTiledLoops()
1726 loadMatrix(RPtr, {}, false, RShape, TI.KLoop.Index, TI.ColumnLoop.Index, in createTiledLoops()
1733 Store->isVolatile(), {LShape.NumRows, RShape.NumColumns}, in createTiledLoops()
1757 ShapeInfo RShape(MatMul->getArgOperand(3), MatMul->getArgOperand(4)); in emitSIMDTiling() local
1760 const unsigned C = RShape.NumColumns; in emitSIMDTiling()
1769 createTiledLoops(MatMul, APtr, LShape, BPtr, RShape, Store); in emitSIMDTiling()
1786 RShape, Builder.getInt64(K), Builder.getInt64(J), in emitSIMDTiling()
1834 ShapeInfo RShape(MatMul->getArgOperand(3), MatMul->getArgOperand(4)); in LowerMatrixMultiplyFused() local
1837 const unsigned C = RShape.NumColumns; in LowerMatrixMultiplyFused()
1916 ShapeInfo RShape(MatMul->getArgOperand(3), MatMul->getArgOperand(4)); in LowerMultiply() local
1919 const MatrixTy &Rhs = getMatrix(MatMul->getArgOperand(1), RShape, Builder); in LowerMultiply()
1924 const unsigned C = RShape.NumColumns; in LowerMultiply()
1925 assert(LShape.NumColumns == RShape.NumRows); in LowerMultiply()