Lines Matching refs:RShape
1367 ShapeInfo RShape(MatMul->getArgOperand(3), MatMul->getArgOperand(4)); in isFusionProfitable() local
1370 const unsigned C = RShape.NumColumns; in isFusionProfitable()
1406 Value *RPtr, ShapeInfo RShape, StoreInst *Store) { in createTiledLoops() argument
1410 TileInfo TI(LShape.NumRows, RShape.NumColumns, LShape.NumColumns, TileSize); in createTiledLoops()
1440 MatrixTy B = loadMatrix(RPtr, {}, false, RShape, TI.CurrentK, TI.CurrentCol, in createTiledLoops()
1447 Store->isVolatile(), {LShape.NumRows, RShape.NumColumns}, in createTiledLoops()
1471 ShapeInfo RShape(MatMul->getArgOperand(3), MatMul->getArgOperand(4)); in emitSIMDTiling() local
1474 const unsigned C = RShape.NumColumns; in emitSIMDTiling()
1483 createTiledLoops(MatMul, APtr, LShape, BPtr, RShape, Store); in emitSIMDTiling()
1500 RShape, Builder.getInt64(K), Builder.getInt64(J), in emitSIMDTiling()
1548 ShapeInfo RShape(MatMul->getArgOperand(3), MatMul->getArgOperand(4)); in LowerMatrixMultiplyFused() local
1551 const unsigned C = RShape.NumColumns; in LowerMatrixMultiplyFused()
1630 ShapeInfo RShape(MatMul->getArgOperand(3), MatMul->getArgOperand(4)); in LowerMultiply() local
1633 const MatrixTy &Rhs = getMatrix(MatMul->getArgOperand(1), RShape, Builder); in LowerMultiply()
1638 const unsigned C = RShape.NumColumns; in LowerMultiply()
1639 assert(LShape.NumColumns == RShape.NumRows); in LowerMultiply()