Lines Matching defs:StoreVal
1187 /// Stores a sub-matrix \p StoreVal into the \p R x \p C matrix starting at \p
1189 void storeMatrix(const MatrixTy &StoreVal, Value *MatrixPtr,
1196 auto *TileTy = FixedVectorType::get(EltTy, StoreVal.getNumRows() *
1197 StoreVal.getNumColumns());
1199 storeMatrix(TileTy, StoreVal, TileStart, MAlign,
1203 /// Store matrix \p StoreVal starting at \p Ptr and using \p Stride between
1205 MatrixTy storeMatrix(Type *Ty, MatrixTy StoreVal, Value *Ptr,
1210 for (auto Vec : enumerate(StoreVal.vectors())) {
1215 Stride, StoreVal.getStride(), VType->getElementType(), Builder);
1222 return MatrixTy().addNumStores(getNumOps(StoreVal.getVectorTy()) *
1223 StoreVal.getNumVectors());
1230 auto StoreVal = getMatrix(Matrix, Shape, Builder);
1232 storeMatrix(Matrix->getType(), StoreVal, Ptr, A, Stride,