X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=inline;f=src%2Fengine%2FPlayGround.cxx;h=e896f1f4d83c4377487da97e38f68eb853ef3a8e;hb=fd4934f49ee2770cd881b0f25a4bb00b12183b68;hp=a962358f944b1625c4c8db3095c8aaae56aa16bc;hpb=3d9e3f950d031a2ece660fd714833c17b3a764f7;p=modules%2Fyacs.git diff --git a/src/engine/PlayGround.cxx b/src/engine/PlayGround.cxx index a962358f9..e896f1f4d 100644 --- a/src/engine/PlayGround.cxx +++ b/src/engine/PlayGround.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2006-2019 CEA/DEN, EDF R&D +// Copyright (C) 2006-2020 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -25,10 +25,79 @@ #include #include #include +#include #include using namespace YACS::ENGINE; +std::size_t Resource::getNumberOfFreePlace(int nbCoresPerCont) const +{ + std::size_t ret(0),pos(0); + while( pos < _occupied.size() ) + { + bool isChunckFree(true); + int posInChunck(0); + for( ; ( posInChunck < nbCoresPerCont ) && ( pos < _occupied.size() ) ; ++posInChunck, ++pos) + if(_occupied[pos]) + isChunckFree = false; + if( isChunckFree && (posInChunck == nbCoresPerCont) ) + ret++; + } + return ret; +} + +std::vector Resource::allocateFor(std::size_t& nbOfPlacesToTake, int nbCoresPerCont) const +{ + std::vector ret; + std::size_t pos(0),curWorkerId(0); + while( ( pos < _occupied.size() ) && ( nbOfPlacesToTake > 0 ) ) + { + bool isChunckFree(true); + int posInChunck(0); + for( ; ( posInChunck < nbCoresPerCont ) && ( pos < _occupied.size() ) ; ++posInChunck, ++pos) + if(_occupied[pos]) + isChunckFree = false; + if( isChunckFree && (posInChunck == nbCoresPerCont) ) + { + for(int i = 0 ; i < nbCoresPerCont ; ++i) + _occupied[pos-nbCoresPerCont+i] = true; + ret.push_back(curWorkerId); + --nbOfPlacesToTake; + } + ++curWorkerId; + } + return ret; +} + +void Resource::release(std::size_t workerId, int nbCoresPerCont) const +{ + if(workerId >= this->getNumberOfWorkers(nbCoresPerCont)) + throw Exception("Resource::release : invalid worker id !"); + std::size_t pos(workerId*static_cast(nbCoresPerCont)); + for(int i = 0 ; i < nbCoresPerCont ; ++i) + { + if(!_occupied[pos + static_cast(i)]) + throw Exception("Resource::release : internal error ! A core is expected to be occupied !"); + _occupied[pos + static_cast(i)] = false; + } +} + +std::size_t Resource::getNumberOfWorkers(int nbCoresPerCont) const +{ + return static_cast(this->nbCores())/static_cast(nbCoresPerCont); +} + +void Resource::printSelf(std::ostream& oss) const +{ + oss << this->name() << " (" << this->nbCores() << ") : "; + for(auto it : this->_occupied) + { + if(it) + oss << "1"; + else + oss << "0"; + } +} std::string PlayGround::printSelf() const { @@ -112,6 +181,56 @@ std::vector PlayGround::GetIdsMatching(const std::vector& bigArr, con return ret; } +std::size_t PlayGround::getNumberOfFreePlace(int nbCoresPerCont) const +{ + std::size_t ret(0); + for(auto res : _data) + { + ret += res.getNumberOfFreePlace(nbCoresPerCont); + } + return ret; +} + +std::vector PlayGround::allocateFor(std::size_t nbOfPlacesToTake, int nbCoresPerCont) const +{ + std::vector ret; + std::size_t nbOfPlacesToTakeCpy(nbOfPlacesToTake),offset(0); + for(const auto& res : _data) + { + std::vector contIdsInRes(res.allocateFor(nbOfPlacesToTakeCpy,nbCoresPerCont)); + std::for_each(contIdsInRes.begin(),contIdsInRes.end(),[offset](std::size_t& val) { val += offset; }); + ret.insert(ret.end(),contIdsInRes.begin(),contIdsInRes.end()); + offset += static_cast(res.nbCores()/nbCoresPerCont); + } + if( ( nbOfPlacesToTakeCpy!=0 ) || ( ret.size()!=nbOfPlacesToTake ) ) + throw Exception("PlayGround::allocateFor : internal error ! Promised place is not existing !"); + return ret; +} + +void PlayGround::release(std::size_t workerId, int nbCoresPerCont) const +{ + std::size_t offset(0); + for(const auto& res : _data) + { + std::size_t nbOfWorker(static_cast(res.nbCores()/nbCoresPerCont)); + std::size_t minId(offset),maxId(offset+nbOfWorker); + if(workerId>=minId && workerId PlayGround::BuildVectOfIdsFromVecBool(const std::vector& v) { std::size_t sz(std::count(v.begin(),v.end(),true)),i(0);