Home
last modified time | relevance | path

Searched refs:maxRowLeng (Results 1 – 5 of 5) sorted by relevance

/dports/science/hypre/hypre-2.23.0/src/FEI_mv/femli/
H A Dmli_method_amgcr.cxx976 int *colInd, rowSize, jcol, one=1, maxRowLeng, nnz; in createPmat() local
1120 maxRowLeng = 0; in createPmat()
1134 if (newRowSize > maxRowLeng) maxRowLeng = newRowSize; in createPmat()
1140 newColInd = new int[maxRowLeng]; in createPmat()
1141 newColVal = new double[maxRowLeng]; in createPmat()
1203 maxRowLeng = 0; in createPmat()
1211 if (newRowSize > maxRowLeng) maxRowLeng = newRowSize; in createPmat()
1315 maxRowLeng = 0; in createPmat()
1325 if (rowLengs[irow] > maxRowLeng) maxRowLeng = rowLengs[irow]; in createPmat()
1333 newColInd = new int[maxRowLeng]; in createPmat()
[all …]
H A Dmli_method_amgrs.cxx1442 int *colInd, rowSize, jcol, one=1, maxRowLeng, nnz, PDegree=PDEGREE; in createPmat() local
1585 maxRowLeng = 0; in createPmat()
1599 if (newRowSize > maxRowLeng) maxRowLeng = newRowSize; in createPmat()
1605 newColInd = new int[maxRowLeng]; in createPmat()
1606 newColVal = new double[maxRowLeng]; in createPmat()
1668 maxRowLeng = 0; in createPmat()
1676 if (newRowSize > maxRowLeng) maxRowLeng = newRowSize; in createPmat()
1767 maxRowLeng = 0; in createPmat()
1777 if (rowLengs[irow] > maxRowLeng) maxRowLeng = rowLengs[irow]; in createPmat()
1785 newColInd = new int[maxRowLeng]; in createPmat()
[all …]
H A Dmli_utils.c940 int newStartRow, maxRowLeng, index, ierr, irow, sRowNum; in MLI_Utils_HypreBoolMatrixDecompress() local
987 maxRowLeng = 0; in MLI_Utils_HypreBoolMatrixDecompress()
993 if ( rowSize > maxRowLeng ) maxRowLeng = rowSize; in MLI_Utils_HypreBoolMatrixDecompress()
1005 if ( maxRowLeng > 0 ) in MLI_Utils_HypreBoolMatrixDecompress()
1007 newInd = hypre_TAlloc(int, maxRowLeng , HYPRE_MEMORY_HOST); in MLI_Utils_HypreBoolMatrixDecompress()
1008 newVal = hypre_TAlloc(double, maxRowLeng , HYPRE_MEMORY_HOST); in MLI_Utils_HypreBoolMatrixDecompress()
1009 sInd = hypre_TAlloc(int, maxRowLeng , HYPRE_MEMORY_HOST); in MLI_Utils_HypreBoolMatrixDecompress()
1010 for ( irow = 0; irow < maxRowLeng; irow++ ) newVal[irow] = 1.0; in MLI_Utils_HypreBoolMatrixDecompress()
/dports/science/hypre/hypre-2.23.0/src/FEI_mv/fei-hypre/
H A DHYPRE_LinSysCore.cxx2062 int maxRowLeng, newLeng, rowSize, *colInd, nrows; in matrixLoadComplete() local
2118 maxRowLeng = 0; in matrixLoadComplete()
2122 if ( leng > maxRowLeng ) maxRowLeng = leng; in matrixLoadComplete()
2124 if ( maxRowLeng > 0 ) in matrixLoadComplete()
2126 newColInd = new int[maxRowLeng]; in matrixLoadComplete()
2127 newColVal = new double[maxRowLeng]; in matrixLoadComplete()
2161 if ( maxRowLeng > 0 ) in matrixLoadComplete()
H A DHYPRE_SlideReduction.cxx3478 int nRecvs, *recvStarts, pstart, pend, maxRowLeng; in scaleMatrixVector() local
3530 maxRowLeng = 0; in scaleMatrixVector()
3536 if ( rowLengs[irow] > maxRowLeng ) maxRowLeng = rowLengs[irow]; in scaleMatrixVector()
3587 colInd = new int[maxRowLeng]; in scaleMatrixVector()
3588 colVal = new double[maxRowLeng]; in scaleMatrixVector()