hypre/sstruct_ls/krylov_sstruct.c

314 lines
9.9 KiB
C

/*BHEADER**********************************************************************
* Copyright (c) 2007, Lawrence Livermore National Security, LLC.
* Produced at the Lawrence Livermore National Laboratory.
* Written by the HYPRE team. UCRL-CODE-222953.
* All rights reserved.
*
* This file is part of HYPRE (see http://www.llnl.gov/CASC/hypre/).
* Please see the COPYRIGHT_and_LICENSE file for the copyright notice,
* disclaimer, contact information and the GNU Lesser General Public License.
*
* HYPRE is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License (as published by the Free Software
* Foundation) version 2.1 dated February 1999.
*
* HYPRE is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the IMPLIED WARRANTY OF MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the terms and conditions of the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* $Revision$
***********************************************************************EHEADER*/
/******************************************************************************
*
* SStruct matrix-vector implementation of Krylov interface routines.
*
*****************************************************************************/
#include "headers.h"
/*--------------------------------------------------------------------------
* hypre_SStructKrylovCAlloc
*--------------------------------------------------------------------------*/
char *
hypre_SStructKrylovCAlloc( int count,
int elt_size )
{
return( hypre_CAlloc( count, elt_size ) );
}
/*--------------------------------------------------------------------------
* hypre_SStructKrylovFree
*--------------------------------------------------------------------------*/
int
hypre_SStructKrylovFree( char *ptr )
{
int ierr = 0;
hypre_Free( ptr );
return ierr;
}
/*--------------------------------------------------------------------------
* hypre_SStructKrylovCreateVector
*--------------------------------------------------------------------------*/
void *
hypre_SStructKrylovCreateVector( void *vvector )
{
hypre_SStructVector *vector = vvector;
hypre_SStructVector *new_vector;
int object_type;
int nparts= hypre_SStructVectorNParts(vector);
hypre_SStructPVector *pvector;
hypre_StructVector *svector;
hypre_SStructPVector *new_pvector;
hypre_StructVector *new_svector;
int *num_ghost;
int part;
int nvars, var;
object_type= hypre_SStructVectorObjectType(vector);
HYPRE_SStructVectorCreate(hypre_SStructVectorComm(vector),
hypre_SStructVectorGrid(vector),
&new_vector);
HYPRE_SStructVectorSetObjectType(new_vector, object_type);
if (object_type == HYPRE_SSTRUCT || object_type == HYPRE_STRUCT)
{
for (part= 0; part< nparts; part++)
{
pvector = hypre_SStructVectorPVector(vector, part);
new_pvector= hypre_SStructVectorPVector(new_vector, part);
nvars = hypre_SStructPVectorNVars(pvector);
for (var= 0; var< nvars; var++)
{
svector= hypre_SStructPVectorSVector(pvector, var);
num_ghost= hypre_StructVectorNumGhost(svector);
new_svector= hypre_SStructPVectorSVector(new_pvector, var);
hypre_StructVectorSetNumGhost(new_svector, num_ghost);
}
}
}
HYPRE_SStructVectorInitialize(new_vector);
HYPRE_SStructVectorAssemble(new_vector);
return ( (void *) new_vector );
}
/*--------------------------------------------------------------------------
* hypre_SStructKrylovCreateVectorArray
*--------------------------------------------------------------------------*/
void *
hypre_SStructKrylovCreateVectorArray(int n, void *vvector )
{
hypre_SStructVector *vector = vvector;
hypre_SStructVector **new_vector;
int object_type;
int nparts= hypre_SStructVectorNParts(vector);
hypre_SStructPVector *pvector;
hypre_StructVector *svector;
hypre_SStructPVector *new_pvector;
hypre_StructVector *new_svector;
int *num_ghost;
int part;
int nvars, var;
int i;
object_type= hypre_SStructVectorObjectType(vector);
new_vector = hypre_CTAlloc(hypre_SStructVector*,n);
for (i=0; i < n; i++)
{
HYPRE_SStructVectorCreate(hypre_SStructVectorComm(vector),
hypre_SStructVectorGrid(vector),
&new_vector[i]);
HYPRE_SStructVectorSetObjectType(new_vector[i], object_type);
if (object_type == HYPRE_SSTRUCT || object_type == HYPRE_STRUCT)
{
for (part= 0; part< nparts; part++)
{
pvector = hypre_SStructVectorPVector(vector, part);
new_pvector= hypre_SStructVectorPVector(new_vector[i], part);
nvars = hypre_SStructPVectorNVars(pvector);
for (var= 0; var< nvars; var++)
{
svector= hypre_SStructPVectorSVector(pvector, var);
num_ghost= hypre_StructVectorNumGhost(svector);
new_svector= hypre_SStructPVectorSVector(new_pvector, var);
hypre_StructVectorSetNumGhost(new_svector, num_ghost);
}
}
}
HYPRE_SStructVectorInitialize(new_vector[i]);
HYPRE_SStructVectorAssemble(new_vector[i]);
}
return ( (void *) new_vector );
}
/*--------------------------------------------------------------------------
* hypre_SStructKrylovDestroyVector
*--------------------------------------------------------------------------*/
int
hypre_SStructKrylovDestroyVector( void *vvector )
{
hypre_SStructVector *vector = vvector;
return( HYPRE_SStructVectorDestroy( vector ) );
}
/*--------------------------------------------------------------------------
* hypre_SStructKrylovMatvecCreate
*--------------------------------------------------------------------------*/
void *
hypre_SStructKrylovMatvecCreate( void *A,
void *x )
{
void *matvec_data;
hypre_SStructMatvecCreate( &matvec_data );
hypre_SStructMatvecSetup( matvec_data,
(hypre_SStructMatrix *) A,
(hypre_SStructVector *) x );
return ( matvec_data );
}
/*--------------------------------------------------------------------------
* hypre_SStructKrylovMatvec
*--------------------------------------------------------------------------*/
int
hypre_SStructKrylovMatvec( void *matvec_data,
double alpha,
void *A,
void *x,
double beta,
void *y )
{
return ( hypre_SStructMatvec( alpha,
(hypre_SStructMatrix *) A,
(hypre_SStructVector *) x,
beta,
(hypre_SStructVector *) y ) );
}
/*--------------------------------------------------------------------------
* hypre_SStructKrylovMatvecDestroy
*--------------------------------------------------------------------------*/
int
hypre_SStructKrylovMatvecDestroy( void *matvec_data )
{
return ( hypre_SStructMatvecDestroy( matvec_data ) );
}
/*--------------------------------------------------------------------------
* hypre_SStructKrylovInnerProd
*--------------------------------------------------------------------------*/
double
hypre_SStructKrylovInnerProd( void *x,
void *y )
{
double result;
hypre_SStructInnerProd( (hypre_SStructVector *) x,
(hypre_SStructVector *) y, &result );
return result;
}
/*--------------------------------------------------------------------------
* hypre_SStructKrylovCopyVector
*--------------------------------------------------------------------------*/
int
hypre_SStructKrylovCopyVector( void *x,
void *y )
{
return ( hypre_SStructCopy( (hypre_SStructVector *) x,
(hypre_SStructVector *) y ) );
}
/*--------------------------------------------------------------------------
* hypre_SStructKrylovClearVector
*--------------------------------------------------------------------------*/
int
hypre_SStructKrylovClearVector( void *x )
{
return ( hypre_SStructVectorSetConstantValues( (hypre_SStructVector *) x,
0.0 ) );
}
/*--------------------------------------------------------------------------
* hypre_SStructKrylovScaleVector
*--------------------------------------------------------------------------*/
int
hypre_SStructKrylovScaleVector( double alpha,
void *x )
{
return ( hypre_SStructScale( alpha, (hypre_SStructVector *) x ) );
}
/*--------------------------------------------------------------------------
* hypre_SStructKrylovAxpy
*--------------------------------------------------------------------------*/
int
hypre_SStructKrylovAxpy( double alpha,
void *x,
void *y )
{
return ( hypre_SStructAxpy( alpha, (hypre_SStructVector *) x,
(hypre_SStructVector *) y ) );
}
/*--------------------------------------------------------------------------
* hypre_SStructKrylovCommInfo
*--------------------------------------------------------------------------*/
int
hypre_SStructKrylovCommInfo( void *A,
int *my_id,
int *num_procs )
{
MPI_Comm comm = hypre_SStructMatrixComm((hypre_SStructMatrix *) A);
MPI_Comm_size(comm,num_procs);
MPI_Comm_rank(comm,my_id);
return 0;
}