| 1 | /*BHEADER**********************************************************************
|
|---|
| 2 | * Copyright (c) 2008, Lawrence Livermore National Security, LLC.
|
|---|
| 3 | * Produced at the Lawrence Livermore National Laboratory.
|
|---|
| 4 | * This file is part of HYPRE. See file COPYRIGHT for details.
|
|---|
| 5 | *
|
|---|
| 6 | * HYPRE is free software; you can redistribute it and/or modify it under the
|
|---|
| 7 | * terms of the GNU Lesser General Public License (as published by the Free
|
|---|
| 8 | * Software Foundation) version 2.1 dated February 1999.
|
|---|
| 9 | *
|
|---|
| 10 | * $Revision: 2.4 $
|
|---|
| 11 | ***********************************************************************EHEADER*/
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 | /******************************************************************************
|
|---|
| 16 | *
|
|---|
| 17 | * SStruct inner product routine
|
|---|
| 18 | *
|
|---|
| 19 | *****************************************************************************/
|
|---|
| 20 |
|
|---|
| 21 | #include "headers.h"
|
|---|
| 22 |
|
|---|
| 23 | /*--------------------------------------------------------------------------
|
|---|
| 24 | * hypre_SStructPInnerProd
|
|---|
| 25 | *--------------------------------------------------------------------------*/
|
|---|
| 26 |
|
|---|
| 27 | int
|
|---|
| 28 | hypre_SStructPInnerProd( hypre_SStructPVector *px,
|
|---|
| 29 | hypre_SStructPVector *py,
|
|---|
| 30 | double *presult_ptr )
|
|---|
| 31 | {
|
|---|
| 32 | int ierr = 0;
|
|---|
| 33 | int nvars = hypre_SStructPVectorNVars(px);
|
|---|
| 34 | double presult;
|
|---|
| 35 | double sresult;
|
|---|
| 36 | int var;
|
|---|
| 37 |
|
|---|
| 38 | presult = 0.0;
|
|---|
| 39 | for (var = 0; var < nvars; var++)
|
|---|
| 40 | {
|
|---|
| 41 | sresult = hypre_StructInnerProd(hypre_SStructPVectorSVector(px, var),
|
|---|
| 42 | hypre_SStructPVectorSVector(py, var));
|
|---|
| 43 | presult += sresult;
|
|---|
| 44 | }
|
|---|
| 45 |
|
|---|
| 46 | *presult_ptr = presult;
|
|---|
| 47 |
|
|---|
| 48 | return ierr;
|
|---|
| 49 | }
|
|---|
| 50 |
|
|---|
| 51 | /*--------------------------------------------------------------------------
|
|---|
| 52 | * hypre_SStructInnerProd
|
|---|
| 53 | *--------------------------------------------------------------------------*/
|
|---|
| 54 |
|
|---|
| 55 | int
|
|---|
| 56 | hypre_SStructInnerProd( hypre_SStructVector *x,
|
|---|
| 57 | hypre_SStructVector *y,
|
|---|
| 58 | double *result_ptr )
|
|---|
| 59 | {
|
|---|
| 60 | int ierr = 0;
|
|---|
| 61 | int nparts = hypre_SStructVectorNParts(x);
|
|---|
| 62 | double result;
|
|---|
| 63 | double presult;
|
|---|
| 64 | int part;
|
|---|
| 65 |
|
|---|
| 66 | int x_object_type= hypre_SStructVectorObjectType(x);
|
|---|
| 67 | int y_object_type= hypre_SStructVectorObjectType(y);
|
|---|
| 68 |
|
|---|
| 69 | if (x_object_type != y_object_type)
|
|---|
| 70 | {
|
|---|
| 71 | printf("vector object types different- cannot compute inner product\n");
|
|---|
| 72 | return ierr;
|
|---|
| 73 | }
|
|---|
| 74 |
|
|---|
| 75 | result = 0.0;
|
|---|
| 76 |
|
|---|
| 77 | if (x_object_type == HYPRE_SSTRUCT)
|
|---|
| 78 | {
|
|---|
| 79 | for (part = 0; part < nparts; part++)
|
|---|
| 80 | {
|
|---|
| 81 | hypre_SStructPInnerProd(hypre_SStructVectorPVector(x, part),
|
|---|
| 82 | hypre_SStructVectorPVector(y, part), &presult);
|
|---|
| 83 | result += presult;
|
|---|
| 84 | }
|
|---|
| 85 | }
|
|---|
| 86 |
|
|---|
| 87 | else if (x_object_type == HYPRE_PARCSR)
|
|---|
| 88 | {
|
|---|
| 89 | hypre_ParVector *x_par;
|
|---|
| 90 | hypre_ParVector *y_par;
|
|---|
| 91 |
|
|---|
| 92 | hypre_SStructVectorConvert(x, &x_par);
|
|---|
| 93 | hypre_SStructVectorConvert(y, &y_par);
|
|---|
| 94 |
|
|---|
| 95 | result= hypre_ParVectorInnerProd(x_par, y_par);
|
|---|
| 96 | }
|
|---|
| 97 |
|
|---|
| 98 | *result_ptr = result;
|
|---|
| 99 |
|
|---|
| 100 | return ierr;
|
|---|
| 101 | }
|
|---|