Lines Matching refs:RShape

1339     ShapeInfo RShape(MatMul->getArgOperand(3), MatMul->getArgOperand(4));  in lowerDotProduct()  local
1341 if (LShape.NumRows != 1 || RShape.NumColumns != 1) // not a dot product in lowerDotProduct()
1697 ShapeInfo RShape(MatMul->getArgOperand(3), MatMul->getArgOperand(4)); in isFusionProfitable() local
1700 const unsigned C = RShape.NumColumns; in isFusionProfitable()
1737 Value *RPtr, ShapeInfo RShape, StoreInst *Store) { in createTiledLoops() argument
1741 TileInfo TI(LShape.NumRows, RShape.NumColumns, LShape.NumColumns, TileSize); in createTiledLoops()
1773 loadMatrix(RPtr, {}, false, RShape, TI.KLoop.Index, TI.ColumnLoop.Index, in createTiledLoops()
1780 Store->isVolatile(), {LShape.NumRows, RShape.NumColumns}, in createTiledLoops()
1804 ShapeInfo RShape(MatMul->getArgOperand(3), MatMul->getArgOperand(4)); in emitSIMDTiling() local
1807 const unsigned C = RShape.NumColumns; in emitSIMDTiling()
1816 createTiledLoops(MatMul, APtr, LShape, BPtr, RShape, Store); in emitSIMDTiling()
1833 RShape, Builder.getInt64(K), Builder.getInt64(J), in emitSIMDTiling()
1883 ShapeInfo RShape(MatMul->getArgOperand(3), MatMul->getArgOperand(4)); in LowerMatrixMultiplyFused() local
1886 const unsigned C = RShape.NumColumns; in LowerMatrixMultiplyFused()
2014 ShapeInfo RShape(MatMul->getArgOperand(3), MatMul->getArgOperand(4)); in LowerMultiply() local
2017 const MatrixTy &Rhs = getMatrix(MatMul->getArgOperand(1), RShape, Builder); in LowerMultiply()
2022 const unsigned C = RShape.NumColumns; in LowerMultiply()
2023 assert(LShape.NumColumns == RShape.NumRows); in LowerMultiply()