hypre/struct_mv/computation.c
falgout 46488e8cbc Added HYPRE_Complex and HYPRE_Real types in place of double.
Added an example code to test CG on a 4D HYPRE_SSTRUCT complex problem.
Added regression tests for bigint, maxdim, and complex.
Added a test to make sure double types are not added to the source.
See [Issue995] in the tracker for more details.
2013-10-11 19:48:06 +00:00

366 lines
12 KiB
C

/*BHEADER**********************************************************************
* Copyright (c) 2008, Lawrence Livermore National Security, LLC.
* Produced at the Lawrence Livermore National Laboratory.
* This file is part of HYPRE. See file COPYRIGHT for details.
*
* HYPRE is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License (as published by the Free
* Software Foundation) version 2.1 dated February 1999.
*
* $Revision$
***********************************************************************EHEADER*/
/******************************************************************************
*
*****************************************************************************/
#include "_hypre_struct_mv.h"
/*--------------------------------------------------------------------------
*--------------------------------------------------------------------------*/
HYPRE_Int
hypre_ComputeInfoCreate( hypre_CommInfo *comm_info,
hypre_BoxArrayArray *indt_boxes,
hypre_BoxArrayArray *dept_boxes,
hypre_ComputeInfo **compute_info_ptr )
{
hypre_ComputeInfo *compute_info;
compute_info = hypre_TAlloc(hypre_ComputeInfo, 1);
hypre_ComputeInfoCommInfo(compute_info) = comm_info;
hypre_ComputeInfoIndtBoxes(compute_info) = indt_boxes;
hypre_ComputeInfoDeptBoxes(compute_info) = dept_boxes;
hypre_SetIndex(hypre_ComputeInfoStride(compute_info), 1);
*compute_info_ptr = compute_info;
return hypre_error_flag;
}
/*--------------------------------------------------------------------------
*--------------------------------------------------------------------------*/
HYPRE_Int
hypre_ComputeInfoProjectSend( hypre_ComputeInfo *compute_info,
hypre_Index index,
hypre_Index stride )
{
hypre_CommInfoProjectSend(hypre_ComputeInfoCommInfo(compute_info),
index, stride);
return hypre_error_flag;
}
/*--------------------------------------------------------------------------
*--------------------------------------------------------------------------*/
HYPRE_Int
hypre_ComputeInfoProjectRecv( hypre_ComputeInfo *compute_info,
hypre_Index index,
hypre_Index stride )
{
hypre_CommInfoProjectRecv(hypre_ComputeInfoCommInfo(compute_info),
index, stride);
return hypre_error_flag;
}
/*--------------------------------------------------------------------------
*--------------------------------------------------------------------------*/
HYPRE_Int
hypre_ComputeInfoProjectComp( hypre_ComputeInfo *compute_info,
hypre_Index index,
hypre_Index stride )
{
hypre_ProjectBoxArrayArray(hypre_ComputeInfoIndtBoxes(compute_info),
index, stride);
hypre_ProjectBoxArrayArray(hypre_ComputeInfoDeptBoxes(compute_info),
index, stride);
hypre_CopyIndex(stride, hypre_ComputeInfoStride(compute_info));
return hypre_error_flag;
}
/*--------------------------------------------------------------------------
*--------------------------------------------------------------------------*/
HYPRE_Int
hypre_ComputeInfoDestroy( hypre_ComputeInfo *compute_info )
{
hypre_TFree(compute_info);
return hypre_error_flag;
}
/*--------------------------------------------------------------------------
* Return descriptions of communications and computations patterns for
* a given grid-stencil computation. If HYPRE\_OVERLAP\_COMM\_COMP is
* defined, then the patterns are computed to allow for overlapping
* communications and computations. The default is no overlap.
*
* Note: This routine assumes that the grid boxes do not overlap.
*--------------------------------------------------------------------------*/
HYPRE_Int
hypre_CreateComputeInfo( hypre_StructGrid *grid,
hypre_StructStencil *stencil,
hypre_ComputeInfo **compute_info_ptr )
{
HYPRE_Int ndim = hypre_StructGridNDim(grid);
hypre_CommInfo *comm_info;
hypre_BoxArrayArray *indt_boxes;
hypre_BoxArrayArray *dept_boxes;
hypre_BoxArray *boxes;
hypre_BoxArray *cbox_array;
hypre_Box *cbox;
HYPRE_Int i;
#ifdef HYPRE_OVERLAP_COMM_COMP
hypre_Box *rembox;
hypre_Index *stencil_shape;
hypre_Index lborder, rborder;
HYPRE_Int cbox_array_size;
HYPRE_Int s, d;
#endif
/*------------------------------------------------------
* Extract needed grid info
*------------------------------------------------------*/
boxes = hypre_StructGridBoxes(grid);
/*------------------------------------------------------
* Get communication info
*------------------------------------------------------*/
hypre_CreateCommInfoFromStencil(grid, stencil, &comm_info);
#ifdef HYPRE_OVERLAP_COMM_COMP
/*------------------------------------------------------
* Compute border info
*------------------------------------------------------*/
hypre_SetIndex(lborder, 0);
hypre_SetIndex(rborder, 0);
stencil_shape = hypre_StructStencilShape(stencil);
for (s = 0; s < hypre_StructStencilSize(stencil); s++)
{
for (d = 0; d < ndim; d++)
{
i = hypre_IndexD(stencil_shape[s], d);
if (i < 0)
{
lborder[d] = hypre_max(lborder[d], -i);
}
else if (i > 0)
{
rborder[d] = hypre_max(rborder[d], i);
}
}
}
/*------------------------------------------------------
* Set up the dependent boxes
*------------------------------------------------------*/
dept_boxes = hypre_BoxArrayArrayCreate(hypre_BoxArraySize(boxes), ndim);
rembox = hypre_BoxCreate(hypre_StructGridNDim(grid));
hypre_ForBoxI(i, boxes)
{
cbox_array = hypre_BoxArrayArrayBoxArray(dept_boxes, i);
hypre_BoxArraySetSize(cbox_array, 2*ndim);
hypre_CopyBox(hypre_BoxArrayBox(boxes, i), rembox);
cbox_array_size = 0;
for (d = 0; d < ndim; d++)
{
if ( (hypre_BoxVolume(rembox)) && lborder[d] )
{
cbox = hypre_BoxArrayBox(cbox_array, cbox_array_size);
hypre_CopyBox(rembox, cbox);
hypre_BoxIMaxD(cbox, d) =
hypre_BoxIMinD(cbox, d) + lborder[d] - 1;
hypre_BoxIMinD(rembox, d) =
hypre_BoxIMinD(cbox, d) + lborder[d];
cbox_array_size++;
}
if ( (hypre_BoxVolume(rembox)) && rborder[d] )
{
cbox = hypre_BoxArrayBox(cbox_array, cbox_array_size);
hypre_CopyBox(rembox, cbox);
hypre_BoxIMinD(cbox, d) =
hypre_BoxIMaxD(cbox, d) - rborder[d] + 1;
hypre_BoxIMaxD(rembox, d) =
hypre_BoxIMaxD(cbox, d) - rborder[d];
cbox_array_size++;
}
}
hypre_BoxArraySetSize(cbox_array, cbox_array_size);
}
hypre_BoxDestroy(rembox);
/*------------------------------------------------------
* Set up the independent boxes
*------------------------------------------------------*/
indt_boxes = hypre_BoxArrayArrayCreate(hypre_BoxArraySize(boxes), ndim);
hypre_ForBoxI(i, boxes)
{
cbox_array = hypre_BoxArrayArrayBoxArray(indt_boxes, i);
hypre_BoxArraySetSize(cbox_array, 1);
cbox = hypre_BoxArrayBox(cbox_array, 0);
hypre_CopyBox(hypre_BoxArrayBox(boxes, i), cbox);
for (d = 0; d < ndim; d++)
{
if ( lborder[d] )
{
hypre_BoxIMinD(cbox, d) += lborder[d];
}
if ( rborder[d] )
{
hypre_BoxIMaxD(cbox, d) -= rborder[d];
}
}
}
#else
/*------------------------------------------------------
* Set up the independent boxes
*------------------------------------------------------*/
indt_boxes = hypre_BoxArrayArrayCreate(hypre_BoxArraySize(boxes), ndim);
/*------------------------------------------------------
* Set up the dependent boxes
*------------------------------------------------------*/
dept_boxes = hypre_BoxArrayArrayCreate(hypre_BoxArraySize(boxes), ndim);
hypre_ForBoxI(i, boxes)
{
cbox_array = hypre_BoxArrayArrayBoxArray(dept_boxes, i);
hypre_BoxArraySetSize(cbox_array, 1);
cbox = hypre_BoxArrayBox(cbox_array, 0);
hypre_CopyBox(hypre_BoxArrayBox(boxes, i), cbox);
}
#endif
/*------------------------------------------------------
* Return
*------------------------------------------------------*/
hypre_ComputeInfoCreate(comm_info, indt_boxes, dept_boxes,
compute_info_ptr);
return hypre_error_flag;
}
/*--------------------------------------------------------------------------
* Create a computation package from a grid-based description of a
* communication-computation pattern.
*
* Note: The input boxes and processes are destroyed.
*--------------------------------------------------------------------------*/
HYPRE_Int
hypre_ComputePkgCreate( hypre_ComputeInfo *compute_info,
hypre_BoxArray *data_space,
HYPRE_Int num_values,
hypre_StructGrid *grid,
hypre_ComputePkg **compute_pkg_ptr )
{
hypre_ComputePkg *compute_pkg;
hypre_CommPkg *comm_pkg;
compute_pkg = hypre_CTAlloc(hypre_ComputePkg, 1);
hypre_CommPkgCreate(hypre_ComputeInfoCommInfo(compute_info),
data_space, data_space, num_values, NULL, 0,
hypre_StructGridComm(grid), &comm_pkg);
hypre_CommInfoDestroy(hypre_ComputeInfoCommInfo(compute_info));
hypre_ComputePkgCommPkg(compute_pkg) = comm_pkg;
hypre_ComputePkgIndtBoxes(compute_pkg) =
hypre_ComputeInfoIndtBoxes(compute_info);
hypre_ComputePkgDeptBoxes(compute_pkg) =
hypre_ComputeInfoDeptBoxes(compute_info);
hypre_CopyIndex(hypre_ComputeInfoStride(compute_info),
hypre_ComputePkgStride(compute_pkg));
hypre_StructGridRef(grid, &hypre_ComputePkgGrid(compute_pkg));
hypre_ComputePkgDataSpace(compute_pkg) = data_space;
hypre_ComputePkgNumValues(compute_pkg) = num_values;
hypre_ComputeInfoDestroy(compute_info);
*compute_pkg_ptr = compute_pkg;
return hypre_error_flag;
}
/*--------------------------------------------------------------------------
* Destroy a computation package.
*--------------------------------------------------------------------------*/
HYPRE_Int
hypre_ComputePkgDestroy( hypre_ComputePkg *compute_pkg )
{
if (compute_pkg)
{
hypre_CommPkgDestroy(hypre_ComputePkgCommPkg(compute_pkg));
hypre_BoxArrayArrayDestroy(hypre_ComputePkgIndtBoxes(compute_pkg));
hypre_BoxArrayArrayDestroy(hypre_ComputePkgDeptBoxes(compute_pkg));
hypre_StructGridDestroy(hypre_ComputePkgGrid(compute_pkg));
hypre_TFree(compute_pkg);
}
return hypre_error_flag;
}
/*--------------------------------------------------------------------------
* Initialize a non-blocking communication exchange. The independent
* computations may be done after a call to this routine, to allow for
* overlap of communications and computations.
*--------------------------------------------------------------------------*/
HYPRE_Int
hypre_InitializeIndtComputations( hypre_ComputePkg *compute_pkg,
HYPRE_Complex *data,
hypre_CommHandle **comm_handle_ptr )
{
hypre_CommPkg *comm_pkg = hypre_ComputePkgCommPkg(compute_pkg);
hypre_InitializeCommunication(comm_pkg, data, data, 0, 0, comm_handle_ptr);
return hypre_error_flag;
}
/*--------------------------------------------------------------------------
* Finalize a communication exchange. The dependent computations may
* be done after a call to this routine.
*--------------------------------------------------------------------------*/
HYPRE_Int
hypre_FinalizeIndtComputations( hypre_CommHandle *comm_handle )
{
hypre_FinalizeCommunication(comm_handle );
return hypre_error_flag;
}