From 9c834284514e7988ab1e0780d1b58a9a9f317751 Mon Sep 17 00:00:00 2001 From: raphael couturier Date: Wed, 3 Sep 2014 20:08:10 +0200 Subject: [PATCH] petites modifs --- code/ex29.c | 12 +++++--- paper.tex | 83 ++++++++++++++++++++++++++++++++++++++++++----------- 2 files changed, 75 insertions(+), 20 deletions(-) diff --git a/code/ex29.c b/code/ex29.c index f647a9b..ec89b02 100644 --- a/code/ex29.c +++ b/code/ex29.c @@ -1,7 +1,6 @@ -// /home/couturie/work/petsc-3.5.1/arch-linux2-c-debug/bin/mpirun -np 3 ex29 -da_grid_x 600 -da_grid_y 600 -ksp_type fgmres -bc_type neumann - +// /home/couturie/work/petsc-3.5.1/arch-linux2-c-debug/bin/mpirun -np 3 ex29 -da_grid_x 600 -da_grid_y 600 -ksp_type fgmres @@ -66,7 +65,7 @@ int KrylovMinimize(Mat A, Vec b, Vec x) { PetscScalar gamma, alpha, oldgamma, beta; PetscReal norm=20, Eprecision=1e-6, cgprec=1e-40; - PetscInt giter=0, ColS=12, col=0, Emaxiter=50000000, iter=0, iterations=15, Iiter=0; + PetscInt giter=0, ColS=8, col=0, Emaxiter=50000000, iter=0, iterations=15, Iiter=0; PetscErrorCode ierr; PetscScalar T1, T2; KSP ksp; @@ -243,7 +242,7 @@ int KrylovMinimizeLSQR(Mat A, Vec b, Vec x) { PetscScalar alpha, beta; PetscReal norm=20, Eprecision=1e-6, tol=1e-40; - PetscInt giter=0, ColS=12, col=0, Emaxiter=50000000, iter=0, iterations=20, Iiter=0; + PetscInt giter=0, ColS=8, col=0, Emaxiter=50000000, iter=0, iterations=15, Iiter=0; PetscErrorCode ierr; PetscScalar T1, T2; KSP ksp; @@ -481,6 +480,11 @@ int main(int argc,char **argv) PetscInitialize(&argc,&argv,(char*)0,help); + + PetscMPIInt size; + MPI_Comm_size(PETSC_COMM_WORLD,&size); + PetscPrintf(PETSC_COMM_WORLD,"Number of processors = %d\n",size); + ierr = KSPCreate(PETSC_COMM_WORLD,&ksp);CHKERRQ(ierr); ierr = DMDACreate2d(PETSC_COMM_WORLD, DM_BOUNDARY_NONE, DM_BOUNDARY_NONE,DMDA_STENCIL_STAR,-3,-3,PETSC_DECIDE,PETSC_DECIDE,1,1,0,0,&da);CHKERRQ(ierr); ierr = DMDASetUniformCoordinates(da,0,1,0,1,0,0);CHKERRQ(ierr); diff --git a/paper.tex b/paper.tex index 0c0299f..087ff6e 100644 --- a/paper.tex +++ b/paper.tex @@ -538,15 +538,42 @@ Iterative Krylov methods; sparse linear systems; error minimization; PETSc; %à % no \IEEEPARstart % You must have at least 2 lines in the paragraph with the drop letter % (should never be an issue) -Iterative methods are become more attractive than direct ones to solve large sparse linear systems. They are more effective in a parallel context and require less memory and arithmetic operations than direct methods. A number of iterative methods are proposed and adapted by many researchers and the increased need for solving very large sparse linear systems triggered the development of efficient iterative techniques suitable for the parallel processing. - -The most successful iterative methods currently available are those based on Krylov subspaces which consist in forming a basis of a sequence of successive matrix powers times an initial vector for example the residual. These methods are based on orthogonality of vectors of the Krylov subspace basis to solve linear systems. The most well-known iterative Krylov subspace methods are Conjugate Gradient method and GMRES method (generalized minimal residual). - -However, the iterative methods suffer from scalability problems on parallel computing platforms with many processors due to their need for reduction operations and collective communications to perform matrix-vector multiplications. The communications on large clusters with thousands of cores and large sizes of messages can significantly affect the performances of iterative methods. In practice, Krylov subspace iteration methods are often used with preconditioners in order to increase their convergence and accelerate their performances. However, most of the good preconditioners are not scalable on large clusters. - -In this paper we propose a two-stage algorithm based on two nested iterations called inner-outer iterations. The algorithm consists in solving the sparse linear system iteratively with a small number of inner iterations and restarts the outer step with a new solution minimizing some error function over a Krylov subspace. The algorithm is iterative and easy to parallelize on large clusters and the minimization technique improves its convergence and performances. - -The present paper is organized as follows. In Section~\ref{sec:02} some related works are presented. Section~\ref{sec:03} presents our two-stage algorithm based on Krylov subspace iteration methods. Section~\ref{sec:04} shows some experimental results obtained on large clusters of our algorithm using routines of PETSc toolkit. +Iterative methods are become more attractive than direct ones to solve very +large sparse linear systems. They are more effective in a parallel context and +require less memory and arithmetic operations than direct methods. A number of +iterative methods are proposed and adapted by many researchers and the increased +need for solving very large sparse linear systems triggered the development of +efficient iterative techniques suitable for the parallel processing. + +Most of the successful iterative methods currently available are based on Krylov +subspaces which consist in forming a basis of a sequence of successive matrix +powers times an initial vector for example the residual. These methods are based +on orthogonality of vectors of the Krylov subspace basis to solve linear +systems. The most well-known iterative Krylov subspace methods are Conjugate +Gradient method and GMRES method (generalized minimal residual). + +However, iterative methods suffer from scalability problems on parallel +computing platforms with many processors due to their need for reduction +operations and collective communications to perform matrix-vector +multiplications. The communications on large clusters with thousands of cores +and large sizes of messages can significantly affect the performances of +iterative methods. In practice, Krylov subspace iteration methods are often used +with preconditioners in order to increase their convergence and accelerate their +performances. However, most of the good preconditioners are not scalable on +large clusters. + +In this paper we propose a two-stage algorithm based on two nested iterations +called inner-outer iterations. This algorithm consists in solving the sparse +linear system iteratively with a small number of inner iterations and restarts +the outer step with a new solution minimizing some error functions over a Krylov +subspace. This algorithm is iterative and easy to parallelize on large clusters +and the minimization technique improves its convergence and performances. + +The present paper is organized as follows. In Section~\ref{sec:02} some related +works are presented. Section~\ref{sec:03} presents our two-stage algorithm based +on Krylov subspace iteration methods. Section~\ref{sec:04} shows some +experimental results obtained on large clusters of our algorithm using routines +of PETSc toolkit. %%%********************************************************* %%%********************************************************* @@ -566,13 +593,29 @@ The present paper is organized as follows. In Section~\ref{sec:02} some related %%%********************************************************* \section{A Krylov two-stage algorithm} \label{sec:03} -We propose a two-stage algorithm to solve large sparse linear systems of the form $Ax=b$, where $A\in\mathbb{R}^{n\times n}$ is a sparse and square nonsingular matrix, $x\in\mathbb{R}^n$ is the solution vector and $b\in\mathbb{R}^n$ is the right-hand side. The algorithm is implemented as an inner-outer iteration solver based on iterative Krylov methods. The main key points of our solver are given in Algorithm~\ref{algo:01}. - -In order to accelerate the convergence, the outer iteration is implemented as an iterative Krylov method which minimizes some error function over a Krylov subspace~\cite{saad96}. At every iteration, the sparse linear system $Ax=b$ is solved iteratively with an iterative method for example GMRES method~\cite{saad86} and the Krylov subspace that we used is spanned by a basis $S$ composed of successive solutions issued from the inner iteration +A two-stage algorithm is proposed to solve large sparse linear systems of the +form $Ax=b$, where $A\in\mathbb{R}^{n\times n}$ is a sparse and square +nonsingular matrix, $x\in\mathbb{R}^n$ is the solution vector and +$b\in\mathbb{R}^n$ is the right-hand side. The algorithm is implemented as an +inner-outer iteration solver based on iterative Krylov methods. The main key +points of our solver are given in Algorithm~\ref{algo:01}. + +In order to accelerate the convergence, the outer iteration is implemented as an +iterative Krylov method which minimizes some error functions over a Krylov +subspace~\cite{saad96}. At each iteration, the sparse linear system $Ax=b$ is +solved iteratively with an iterative method, for example GMRES +method~\cite{saad86} or some of its variants, and the Krylov subspace that we +used is spanned by a basis $S$ composed of successive solutions issued from the +inner iteration \begin{equation} S = \{x^1, x^2, \ldots, x^s\} \text{,~} s\leq n. \end{equation} -The advantage of such a Krylov subspace is that we neither need an orthogonal basis nor any synchronization between processors to generate this basis. The algorithm is periodically restarted every $s$ iterations with a new initial guess $x=S\alpha$ which minimizes the residual norm $\|b-Ax\|_2$ over the Krylov subspace spanned by vectors of $S$, where $\alpha$ is a solution of the normal equations +The advantage of such a Krylov subspace is that we neither need an orthogonal +basis nor any synchronization between processors to generate this basis. The +algorithm is periodically restarted every $s$ iterations with a new initial +guess $x=S\alpha$ which minimizes the residual norm $\|b-Ax\|_2$ over the Krylov +subspace spanned by vectors of $S$, where $\alpha$ is a solution of the normal +equations \begin{equation} R^TR\alpha = R^Tb, \end{equation} @@ -581,7 +624,11 @@ which is associated with the least-squares problem \underset{\alpha\in\mathbb{R}^{s}}{min}\|b-R\alpha\|_2 \label{eq:01} \end{equation} -such that $R=AS$ is a dense rectangular matrix in $\mathbb{R}^{n\times s}$, $s\ll n$, and $R^T$ denotes the transpose of matrix $R$. We use an iterative method to solve the least-squares problem~(\ref{eq:01}) as CGLS~\cite{hestenes52} or LSQR~\cite{paige82} methods which is more appropriate than a direct method in the parallel context. +such that $R=AS$ is a dense rectangular matrix in $\mathbb{R}^{n\times s}$, +$s\ll n$, and $R^T$ denotes the transpose of matrix $R$. We use an iterative +method to solve the least-squares problem~(\ref{eq:01}) such as CGLS +~\cite{hestenes52} or LSQR~\cite{paige82} which are more appropriate than a +direct method in the parallel context. \begin{algorithm}[t] \caption{A Krylov two-stage algorithm} @@ -591,17 +638,21 @@ such that $R=AS$ is a dense rectangular matrix in $\mathbb{R}^{n\times s}$, $s\l \State Set the initial guess $x^0$ \For {$k=1,2,3,\ldots$ until convergence} \State Solve iteratively $Ax^k=b$ - \State Add vector $x^k$ to Krylov subspace basis $S$ + \State $S_{k~mod~s}=x^k$ \If {$k$ mod $s=0$ {\bf and} not convergence} \State Compute dense matrix $R=AS$ \State Solve least-squares problem $\underset{\alpha\in\mathbb{R}^{s}}{min}\|b-R\alpha\|_2$ \State Compute minimizer $x^k=S\alpha$ - \State Reinitialize Krylov subspace basis $S$ \EndIf \EndFor \end{algorithmic} \label{algo:01} \end{algorithm} + +Operation $S_{k~ mod~ s}=x^k$ consists in copying the residual $x_k$ into the +column $k~ mod~ s$ of the matrix $S$. After the minimization, the matrix $S$ is +reused with the new values of the residuals. + %%%********************************************************* %%%********************************************************* -- 2.39.5