DistributedVectorFactory.cpp

00001 /*
00002 
00003 Copyright (C) University of Oxford, 2005-2010
00004 
00005 University of Oxford means the Chancellor, Masters and Scholars of the
00006 University of Oxford, having an administrative office at Wellington
00007 Square, Oxford OX1 2JD, UK.
00008 
00009 This file is part of Chaste.
00010 
00011 Chaste is free software: you can redistribute it and/or modify it
00012 under the terms of the GNU Lesser General Public License as published
00013 by the Free Software Foundation, either version 2.1 of the License, or
00014 (at your option) any later version.
00015 
00016 Chaste is distributed in the hope that it will be useful, but WITHOUT
00017 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
00019 License for more details. The offer of Chaste under the terms of the
00020 License is subject to the License being interpreted in accordance with
00021 English Law and subject to any action against the University of Oxford
00022 being under the jurisdiction of the English Courts.
00023 
00024 You should have received a copy of the GNU Lesser General Public License
00025 along with Chaste. If not, see <http://www.gnu.org/licenses/>.
00026 
00027 */
00028 
00029 #include <cassert>
00030 
00031 #include "DistributedVectorFactory.hpp"
00032 
00033 // Initialise static data
00034 bool DistributedVectorFactory::msCheckNumberOfProcessesOnLoad = true;
00035 
00036 
00037 
00038 void DistributedVectorFactory::CalculateOwnership(Vec vec)
00039 {
00040 #ifndef NDEBUG
00041     if (!mPetscStatusKnown)
00042     {
00043         CheckForPetsc();
00044     }
00045 #endif
00046     // calculate my range
00047     PetscInt petsc_lo, petsc_hi;
00048     VecGetOwnershipRange(vec, &petsc_lo, &petsc_hi);
00049     mLo = (unsigned)petsc_lo;
00050     mHi = (unsigned)petsc_hi;
00051     // vector size
00052     PetscInt size;
00053     VecGetSize(vec, &size);
00054     mProblemSize = (unsigned) size;
00055     mNumProcs = PetscTools::GetNumProcs();
00056 }
00057 
00058 
00059 void DistributedVectorFactory::SetFromFactory(DistributedVectorFactory* pFactory)
00060 {
00061     if (pFactory->GetNumProcs() != mNumProcs)
00062     {
00063         EXCEPTION("Cannot set from a factory for a different number of processes.");
00064     }
00065     if (pFactory->GetProblemSize() != mProblemSize)
00066     {
00067         EXCEPTION("Cannot set from a factory for a different problem size.");
00068     }
00069     mLo = pFactory->GetLow();
00070     mHi = pFactory->GetHigh();
00071 }
00072 
00073 DistributedVectorFactory::DistributedVectorFactory(Vec vec)
00074     : mPetscStatusKnown(false),
00075       mpOriginalFactory(NULL)
00076 {
00077     CalculateOwnership(vec);
00078 }
00079 
00080 DistributedVectorFactory::DistributedVectorFactory(unsigned size, PetscInt local)
00081     : mPetscStatusKnown(false),
00082       mpOriginalFactory(NULL)
00083 {
00084 #ifndef NDEBUG
00085     CheckForPetsc();
00086 #endif
00087     Vec vec;
00088     VecCreate(PETSC_COMM_WORLD, &vec);
00089     VecSetSizes(vec, local, size);
00090     VecSetFromOptions(vec);
00091     CalculateOwnership(vec);
00092     VecDestroy(vec);
00093 }
00094 
00095 DistributedVectorFactory::DistributedVectorFactory(DistributedVectorFactory* pOriginalFactory)
00096     : mPetscStatusKnown(false),
00097       mpOriginalFactory(pOriginalFactory)
00098 {
00099     assert(mpOriginalFactory != NULL);
00100     Vec vec;
00101     VecCreate(PETSC_COMM_WORLD, &vec);
00102     VecSetSizes(vec, PETSC_DECIDE, mpOriginalFactory->GetProblemSize());
00103     VecSetFromOptions(vec);
00104     CalculateOwnership(vec);
00105     VecDestroy(vec);
00106 }
00107 
00108 DistributedVectorFactory::DistributedVectorFactory(unsigned lo, unsigned hi, unsigned size, unsigned numProcs)
00109     : mLo(lo),
00110       mHi(hi),
00111       mProblemSize(size),
00112       mNumProcs(numProcs),
00113       mPetscStatusKnown(false),
00114       mpOriginalFactory(NULL)
00115 {
00116 #ifndef NDEBUG
00117     CheckForPetsc();
00118 #endif
00119 }
00120 
00121 DistributedVectorFactory::~DistributedVectorFactory()
00122 {
00123     delete mpOriginalFactory;
00124 }
00125 
00126 
00127 void DistributedVectorFactory::CheckForPetsc()
00128 {
00129     assert(mPetscStatusKnown==false);
00130     PetscTruth petsc_is_initialised;
00131     PetscInitialized(&petsc_is_initialised);
00132 
00133     //Tripping this assertion means that PETSc and MPI weren't intialised
00134     //A unit test should include the global fixture:
00135     //#include "PetscSetupAndFinalize.hpp"
00136     assert(petsc_is_initialised);
00137     mPetscStatusKnown=true;
00138 }
00139 
00140 bool DistributedVectorFactory::IsGlobalIndexLocal(unsigned globalIndex)
00141 {
00142     return (mLo<=globalIndex && globalIndex<mHi);
00143 }
00144 
00145 Vec DistributedVectorFactory::CreateVec()
00146 {
00147     Vec vec;
00148     VecCreate(PETSC_COMM_WORLD, &vec);
00149     VecSetSizes(vec, mHi-mLo, mProblemSize);
00150     VecSetFromOptions(vec);
00151     return vec;
00152 }
00153 
00154 Vec DistributedVectorFactory::CreateVec(unsigned stride)
00155 {
00156     Vec vec;
00157     VecCreateMPI(PETSC_COMM_WORLD, stride*(mHi-mLo), stride*mProblemSize, &vec);
00158     return vec;
00159 }
00160 
00161 DistributedVector DistributedVectorFactory::CreateDistributedVector(Vec vec)
00162 {
00163     DistributedVector dist_vector(vec, this);
00164     return dist_vector;
00165 }
00166 
00167 
00168 // Serialization for Boost >= 1.36
00169 #include "SerializationExportWrapperForCpp.hpp"
00170 CHASTE_CLASS_EXPORT(DistributedVectorFactory);

Generated by  doxygen 1.6.2