Lines Matching refs:LShape

1366     ShapeInfo LShape(MatMul->getArgOperand(2), MatMul->getArgOperand(3));  in isFusionProfitable()  local
1369 const unsigned R = LShape.NumRows; in isFusionProfitable()
1371 const unsigned M = LShape.NumColumns; in isFusionProfitable()
1405 void createTiledLoops(CallInst *MatMul, Value *LPtr, ShapeInfo LShape, in createTiledLoops() argument
1410 TileInfo TI(LShape.NumRows, RShape.NumColumns, LShape.NumColumns, TileSize); in createTiledLoops()
1438 MatrixTy A = loadMatrix(LPtr, {}, false, LShape, TI.CurrentRow, TI.CurrentK, in createTiledLoops()
1447 Store->isVolatile(), {LShape.NumRows, RShape.NumColumns}, in createTiledLoops()
1457 unsigned InnerLoopUnrollCount = std::min(10u, LShape.NumColumns / TileSize); in createTiledLoops()
1470 ShapeInfo LShape(MatMul->getArgOperand(2), MatMul->getArgOperand(3)); in emitSIMDTiling() local
1473 const unsigned R = LShape.NumRows; in emitSIMDTiling()
1475 const unsigned M = LShape.NumColumns; in emitSIMDTiling()
1483 createTiledLoops(MatMul, APtr, LShape, BPtr, RShape, Store); in emitSIMDTiling()
1496 LShape, Builder.getInt64(I), Builder.getInt64(K), in emitSIMDTiling()
1547 ShapeInfo LShape(MatMul->getArgOperand(2), MatMul->getArgOperand(3)); in LowerMatrixMultiplyFused() local
1549 const unsigned R = LShape.NumRows; in LowerMatrixMultiplyFused()
1550 const unsigned M = LShape.NumColumns; in LowerMatrixMultiplyFused()
1629 ShapeInfo LShape(MatMul->getArgOperand(2), MatMul->getArgOperand(3)); in LowerMultiply() local
1632 const MatrixTy &Lhs = getMatrix(MatMul->getArgOperand(0), LShape, Builder); in LowerMultiply()
1637 const unsigned R = LShape.NumRows; in LowerMultiply()
1639 assert(LShape.NumColumns == RShape.NumRows); in LowerMultiply()