From: Anthony Geay Date: Wed, 12 Aug 2020 12:57:18 +0000 (+0200) Subject: Parallel implementation of getCellsLyingOnNodes(True) X-Git-Tag: V9_5_asterxx_0~4 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=beec84a61c404f2898b20cb9c7db9171e527518d;p=tools%2Fmedcoupling.git Parallel implementation of getCellsLyingOnNodes(True) --- diff --git a/src/ParaMEDMEM/ParaUMesh.cxx b/src/ParaMEDMEM/ParaUMesh.cxx index e5ea86c62..678c5ea9a 100644 --- a/src/ParaMEDMEM/ParaUMesh.cxx +++ b/src/ParaMEDMEM/ParaUMesh.cxx @@ -74,7 +74,81 @@ std::vector ParaUMesh::getDirectChildrenWithNull() cons MCAuto ParaUMesh::getCellIdsLyingOnNodes(const DataArrayIdType *globalNodeIds, bool fullyIn) const { if(fullyIn) - throw INTERP_KERNEL::Exception("ParaUMesh::getCellIdsLyingOnNodes : not implemented yet for fullyIn == True !"); + return this->getCellIdsLyingOnNodesTrue(globalNodeIds); + else + return this->getCellIdsLyingOnNodesFalse(globalNodeIds); +} + +MCAuto ParaUMesh::getCellIdsLyingOnNodesTrue(const DataArrayIdType *globalNodeIds) const +{ + MPI_Comm comm(MPI_COMM_WORLD); + CommInterface ci; + int size; + ci.commSize(comm,&size); + std::unique_ptr nbOfElems(new mcIdType[size]),nbOfElems2(new mcIdType[size]),nbOfElems3(new mcIdType[size]); + mcIdType nbOfNodeIdsLoc(globalNodeIds->getNumberOfTuples()); + ci.allGather(&nbOfNodeIdsLoc,1,MPI_ID_TYPE,nbOfElems.get(),1,MPI_ID_TYPE,comm); + //store for each proc the local nodeids intercepted by current proc + std::vector< MCAuto > tabs(size); + // loop to avoid to all procs to have all the nodes per proc + for(int subDiv = 0 ; subDiv < size ; ++subDiv) + { + std::unique_ptr nbOfElemsSp(CommInterface::SplitArrayOfLength(nbOfElems,size,subDiv,size)); + mcIdType nbOfNodeIdsSum(std::accumulate(nbOfElemsSp.get(),nbOfElemsSp.get()+size,0)); + std::unique_ptr allGlobalNodeIds(new mcIdType[nbOfNodeIdsSum]); + std::unique_ptr nbOfElemsInt( CommInterface::ToIntArray(nbOfElemsSp,size) ); + std::unique_ptr offsetsIn( CommInterface::ComputeOffset(nbOfElemsInt,size) ); + mcIdType startGlobalNodeIds,endGlobalNodeIds; + DataArray::GetSlice(0,globalNodeIds->getNumberOfTuples(),1,subDiv,size,startGlobalNodeIds,endGlobalNodeIds); + ci.allGatherV(globalNodeIds->begin()+startGlobalNodeIds,endGlobalNodeIds-startGlobalNodeIds,MPI_ID_TYPE,allGlobalNodeIds.get(),nbOfElemsInt.get(),offsetsIn.get(),MPI_ID_TYPE,comm); + mcIdType offset(0); + for(int curRk = 0 ; curRk < size ; ++curRk) + { + MCAuto globalNodeIdsOfCurProc(DataArrayIdType::New()); + globalNodeIdsOfCurProc->useArray(allGlobalNodeIds.get()+offset,false,DeallocType::CPP_DEALLOC,nbOfElemsSp[curRk],1); + offset += nbOfElemsSp[curRk]; + MCAuto globalNodeIdsCaptured(_node_global->buildIntersection(globalNodeIdsOfCurProc)); + MCAuto localNodeIdsToLocate(_node_global->findIdForEach(globalNodeIdsCaptured->begin(),globalNodeIdsCaptured->end())); + if(tabs[curRk].isNull()) + tabs[curRk] = localNodeIdsToLocate; + else + tabs[curRk]->insertAtTheEnd(localNodeIdsToLocate->begin(),localNodeIdsToLocate->end()); + } + } + + for(int curRk = 0 ; curRk < size ; ++curRk) + { + MCAuto localNodeIds(tabs[curRk]); + localNodeIds->sort(); + MCAuto localNodeIdsUnique(localNodeIds->buildUnique()); + MCAuto localCellCaptured(_mesh->getCellIdsLyingOnNodes(localNodeIdsUnique->begin(),localNodeIdsUnique->end(),true)); + MCAuto localCellCapturedGlob(_cell_global->selectByTupleIdSafe(localCellCaptured->begin(),localCellCaptured->end())); + tabs[curRk] = localCellCapturedGlob; + } + + for(int curRk = 0 ; curRk < size ; ++curRk) + { + tabs[curRk] = tabs[curRk]->buildUniqueNotSorted(); + nbOfElems3[curRk] = tabs[curRk]->getNumberOfTuples(); + } + std::vector tabss(tabs.begin(),tabs.end()); + MCAuto cells(DataArrayIdType::Aggregate(tabss)); + ci.allToAll(nbOfElems3.get(),1,MPI_ID_TYPE,nbOfElems2.get(),1,MPI_ID_TYPE,comm); + mcIdType nbOfCellIdsSum(std::accumulate(nbOfElems2.get(),nbOfElems2.get()+size,0)); + MCAuto cellIdsFromProcs(DataArrayIdType::New()); + cellIdsFromProcs->alloc(nbOfCellIdsSum,1); + { + std::unique_ptr nbOfElemsInt( CommInterface::ToIntArray(nbOfElems3,size) ),nbOfElemsOutInt( CommInterface::ToIntArray(nbOfElems2,size) ); + std::unique_ptr offsetsIn( CommInterface::ComputeOffset(nbOfElemsInt,size) ), offsetsOut( CommInterface::ComputeOffset(nbOfElemsOutInt,size) ); + ci.allToAllV(cells->begin(),nbOfElemsInt.get(),offsetsIn.get(),MPI_ID_TYPE, + cellIdsFromProcs->getPointer(),nbOfElemsOutInt.get(),offsetsOut.get(),MPI_ID_TYPE,comm); + } + cellIdsFromProcs->sort(); + return cellIdsFromProcs; +} + +MCAuto ParaUMesh::getCellIdsLyingOnNodesFalse(const DataArrayIdType *globalNodeIds) const +{ MPI_Comm comm(MPI_COMM_WORLD); CommInterface ci; int size; diff --git a/src/ParaMEDMEM/ParaUMesh.hxx b/src/ParaMEDMEM/ParaUMesh.hxx index 8086d85b1..fa41e50a9 100644 --- a/src/ParaMEDMEM/ParaUMesh.hxx +++ b/src/ParaMEDMEM/ParaUMesh.hxx @@ -58,6 +58,8 @@ namespace MEDCoupling MCAuto _cell_global; MCAuto _node_global; private: + MCAuto getCellIdsLyingOnNodesFalse(const DataArrayIdType *globalNodeIds) const; + MCAuto getCellIdsLyingOnNodesTrue(const DataArrayIdType *globalNodeIds) const; template typename Traits::ArrayType *redistributeCellFieldT(const DataArrayIdType *globalCellIds, const typename Traits::ArrayType *fieldValueToRed) const {