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=PetscTools::CreateVec(size, local);
00088     CalculateOwnership(vec);
00089     VecDestroy(vec);
00090 }
00091 
00092 DistributedVectorFactory::DistributedVectorFactory(DistributedVectorFactory* pOriginalFactory)
00093     : mPetscStatusKnown(false),
00094       mpOriginalFactory(pOriginalFactory)
00095 {
00096     assert(mpOriginalFactory != NULL);
00097     //Normally called when mpOriginalFactory->GetNumProcs() != PetscTools::GetNumProcs()
00098     //so ignore mpOriginalFactory->GetLocalOwnership()
00099     Vec vec=PetscTools::CreateVec(mpOriginalFactory->GetProblemSize());
00100     
00101     CalculateOwnership(vec);
00102     VecDestroy(vec);
00103 }
00104 
00105 DistributedVectorFactory::DistributedVectorFactory(unsigned lo, unsigned hi, unsigned size, unsigned numProcs)
00106     : mLo(lo),
00107       mHi(hi),
00108       mProblemSize(size),
00109       mNumProcs(numProcs),
00110       mPetscStatusKnown(false),
00111       mpOriginalFactory(NULL)
00112 {
00113 #ifndef NDEBUG
00114     CheckForPetsc();
00115 #endif
00116 }
00117 
00118 DistributedVectorFactory::~DistributedVectorFactory()
00119 {
00120     delete mpOriginalFactory;
00121 }
00122 
00123 
00124 void DistributedVectorFactory::CheckForPetsc()
00125 {
00126     assert(mPetscStatusKnown==false);
00127     PetscTruth petsc_is_initialised;
00128     PetscInitialized(&petsc_is_initialised);
00129 
00130     //Tripping this assertion means that PETSc and MPI weren't intialised
00131     //A unit test should include the global fixture:
00132     //#include "PetscSetupAndFinalize.hpp"
00133     assert(petsc_is_initialised);
00134     mPetscStatusKnown=true;
00135 }
00136 
00137 bool DistributedVectorFactory::IsGlobalIndexLocal(unsigned globalIndex)
00138 {
00139     return (mLo<=globalIndex && globalIndex<mHi);
00140 }
00141 
00142 Vec DistributedVectorFactory::CreateVec()
00143 {
00144     Vec vec=PetscTools::CreateVec(mProblemSize, mHi-mLo);
00145     return vec;
00146 }
00147 
00148 Vec DistributedVectorFactory::CreateVec(unsigned stride)
00149 {
00150     Vec vec;
00151     VecCreateMPI(PETSC_COMM_WORLD, stride*(mHi-mLo), stride*mProblemSize, &vec);
00152     return vec;
00153 }
00154 
00155 DistributedVector DistributedVectorFactory::CreateDistributedVector(Vec vec)
00156 {
00157     DistributedVector dist_vector(vec, this);
00158     return dist_vector;
00159 }
00160 
00161 
00162 // Serialization for Boost >= 1.36
00163 #include "SerializationExportWrapperForCpp.hpp"
00164 CHASTE_CLASS_EXPORT(DistributedVectorFactory)

Generated on Mon Nov 1 12:35:16 2010 for Chaste by  doxygen 1.5.5