git-subtree-dir: software/gecode_base git-subtree-split: bbefcea214fec798a0f5acc442581984555acd21
327 lines
9.3 KiB
C++
327 lines
9.3 KiB
C++
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
|
|
/*
|
|
* Main authors:
|
|
* Christian Schulte <schulte@gecode.org>
|
|
*
|
|
* Copyright:
|
|
* Christian Schulte, 2015
|
|
*
|
|
* This file is part of Gecode, the generic constraint
|
|
* development environment:
|
|
* http://www.gecode.org
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
* a copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
* the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be
|
|
* included in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
#include <cmath>
|
|
#include <algorithm>
|
|
|
|
namespace Gecode { namespace Search {
|
|
|
|
/// A PBS engine builder
|
|
template<class T, template<class> class E>
|
|
class PbsBuilder : public Builder {
|
|
using Builder::opt;
|
|
public:
|
|
/// The constructor
|
|
PbsBuilder(const Options& opt);
|
|
/// The actual build function
|
|
virtual Engine* operator() (Space* s) const;
|
|
};
|
|
|
|
template<class T, template<class> class E>
|
|
inline
|
|
PbsBuilder<T,E>::PbsBuilder(const Options& opt)
|
|
: Builder(opt,E<T>::best) {}
|
|
|
|
template<class T, template<class> class E>
|
|
Engine*
|
|
PbsBuilder<T,E>::operator() (Space* s) const {
|
|
return build<T,PBS<T,E> >(s,opt);
|
|
}
|
|
|
|
}}
|
|
|
|
#include <gecode/search/seq/dead.hh>
|
|
|
|
namespace Gecode { namespace Search { namespace Seq {
|
|
|
|
/// Create stop object
|
|
GECODE_SEARCH_EXPORT Stop*
|
|
pbsstop(Stop* so);
|
|
|
|
/// Create sequential portfolio engine
|
|
GECODE_SEARCH_EXPORT Engine*
|
|
pbsengine(Engine** slaves, Stop** stops, unsigned int n_slaves,
|
|
const Statistics& stat, const Search::Options& opt, bool best);
|
|
|
|
}}}
|
|
|
|
namespace Gecode { namespace Search { namespace Par {
|
|
|
|
/// Create stop object
|
|
GECODE_SEARCH_EXPORT Stop*
|
|
pbsstop(Stop* so);
|
|
|
|
/// Create parallel portfolio engine
|
|
GECODE_SEARCH_EXPORT Engine*
|
|
pbsengine(Engine** slaves, Stop** stops, unsigned int n_slaves,
|
|
const Statistics& stat, bool best);
|
|
|
|
}}}
|
|
|
|
namespace Gecode { namespace Search {
|
|
|
|
template<class T, template<class> class E>
|
|
Engine*
|
|
pbsseq(T* master, const Search::Statistics& stat, Options& opt) {
|
|
Stop* stop = opt.stop;
|
|
Region r;
|
|
|
|
// In case there are more threads than assets requested
|
|
opt.threads = std::max(floor(opt.threads /
|
|
static_cast<double>(opt.assets)),1.0);
|
|
|
|
unsigned int n_slaves = opt.assets;
|
|
Engine** slaves = r.alloc<Engine*>(n_slaves);
|
|
Stop** stops = r.alloc<Stop*>(n_slaves);
|
|
|
|
WrapTraceRecorder::engine(opt.tracer,
|
|
SearchTracer::EngineType::PBS, n_slaves);
|
|
|
|
for (unsigned int i=0U; i<n_slaves; i++) {
|
|
opt.stop = stops[i] = Seq::pbsstop(stop);
|
|
Space* slave = (i == n_slaves-1) ?
|
|
master : master->clone();
|
|
(void) slave->slave(i);
|
|
slaves[i] = build<T,E>(slave,opt);
|
|
}
|
|
|
|
return Seq::pbsengine(slaves,stops,n_slaves,stat,opt,E<T>::best);
|
|
}
|
|
|
|
template<class T, template<class> class E>
|
|
Engine*
|
|
pbsseq(T* master, SEBs& sebs,
|
|
const Search::Statistics& stat, Options& opt, bool best) {
|
|
Region r;
|
|
|
|
int n_slaves = sebs.size();
|
|
Engine** slaves = r.alloc<Engine*>(n_slaves);
|
|
Stop** stops = r.alloc<Stop*>(n_slaves);
|
|
|
|
WrapTraceRecorder::engine(opt.tracer,
|
|
SearchTracer::EngineType::PBS,
|
|
static_cast<unsigned int>(n_slaves));
|
|
|
|
for (int i=0; i<n_slaves; i++) {
|
|
// Re-configure slave options
|
|
stops[i] = Seq::pbsstop(sebs[i]->options().stop);
|
|
sebs[i]->options().stop = stops[i];
|
|
sebs[i]->options().clone = false;
|
|
Space* slave = (i == n_slaves-1) ?
|
|
master : master->clone();
|
|
(void) slave->slave(static_cast<unsigned int>(i));
|
|
slaves[i] = (*sebs[i])(slave);
|
|
delete sebs[i];
|
|
}
|
|
|
|
return Seq::pbsengine(slaves,stops,static_cast<unsigned int>(n_slaves),
|
|
stat,opt,best);
|
|
}
|
|
|
|
#ifdef GECODE_HAS_THREADS
|
|
|
|
template<class T, template<class> class E>
|
|
Engine*
|
|
pbspar(T* master, const Search::Statistics& stat, Options& opt) {
|
|
Stop* stop = opt.stop;
|
|
Region r;
|
|
|
|
// Limit the number of slaves to the number of threads
|
|
unsigned int n_slaves = std::min(static_cast<unsigned int>(opt.threads),
|
|
opt.assets);
|
|
// Redistribute additional threads to slaves
|
|
opt.threads = floor(opt.threads / static_cast<double>(n_slaves));
|
|
|
|
WrapTraceRecorder::engine(opt.tracer,
|
|
SearchTracer::EngineType::PBS, n_slaves);
|
|
|
|
Engine** slaves = r.alloc<Engine*>(n_slaves);
|
|
Stop** stops = r.alloc<Stop*>(n_slaves);
|
|
|
|
for (unsigned int i=0U; i<n_slaves; i++) {
|
|
opt.stop = stops[i] = Par::pbsstop(stop);
|
|
Space* slave = (i == n_slaves-1) ?
|
|
master : master->clone();
|
|
(void) slave->slave(static_cast<unsigned int>(i));
|
|
slaves[i] = build<T,E>(slave,opt);
|
|
}
|
|
|
|
return Par::pbsengine(slaves,stops,n_slaves,stat,E<T>::best);
|
|
}
|
|
|
|
template<class T, template<class> class E>
|
|
Engine*
|
|
pbspar(T* master, SEBs& sebs,
|
|
const Search::Statistics& stat, Options& opt, bool best) {
|
|
Region r;
|
|
|
|
// Limit the number of slaves to the number of threads
|
|
int n_slaves = std::min(static_cast<int>(opt.threads),
|
|
sebs.size());
|
|
|
|
WrapTraceRecorder::engine(opt.tracer,
|
|
SearchTracer::EngineType::PBS,
|
|
static_cast<unsigned int>(n_slaves));
|
|
|
|
Engine** slaves = r.alloc<Engine*>(n_slaves);
|
|
Stop** stops = r.alloc<Stop*>(n_slaves);
|
|
|
|
for (int i=0; i<n_slaves; i++) {
|
|
// Re-configure slave options
|
|
stops[i] = Par::pbsstop(sebs[i]->options().stop);
|
|
sebs[i]->options().stop = stops[i];
|
|
sebs[i]->options().clone = false;
|
|
Space* slave = (i == n_slaves-1) ?
|
|
master : master->clone();
|
|
(void) slave->slave(static_cast<unsigned int>(i));
|
|
slaves[i] = (*sebs[i])(slave);
|
|
delete sebs[i];
|
|
}
|
|
// Delete excess builders
|
|
for (int i=n_slaves; i<sebs.size(); i++)
|
|
delete sebs[i];
|
|
|
|
return Par::pbsengine(slaves,stops,static_cast<unsigned int>(n_slaves),
|
|
stat,best);
|
|
}
|
|
|
|
#endif
|
|
|
|
}}
|
|
|
|
namespace Gecode {
|
|
|
|
template<class T, template<class> class E>
|
|
PBS<T,E>::PBS(T* s, const Search::Options& o) {
|
|
Search::Options opt(o.expand());
|
|
|
|
if (opt.assets == 0)
|
|
throw Search::NoAssets("PBS::PBS");
|
|
|
|
Search::Statistics stat;
|
|
|
|
if (s->status(stat) == SS_FAILED) {
|
|
stat.fail++;
|
|
if (!opt.clone)
|
|
delete s;
|
|
e = Search::Seq::dead(opt,stat);
|
|
return;
|
|
}
|
|
|
|
// Check whether a clone must be used
|
|
T* master = opt.clone ?
|
|
dynamic_cast<T*>(s->clone()) : s;
|
|
opt.clone = false;
|
|
|
|
// Always execute master function
|
|
(void) master->master(0);
|
|
|
|
// No need to create a portfolio engine but must run slave function
|
|
if (o.assets == 1) {
|
|
(void) master->slave(0);
|
|
e = Search::build<T,E>(master,opt);
|
|
return;
|
|
}
|
|
|
|
#ifdef GECODE_HAS_THREADS
|
|
if (opt.threads > 1.0)
|
|
e = Search::pbspar<T,E>(master,stat,opt);
|
|
else
|
|
#endif
|
|
e = Search::pbsseq<T,E>(master,stat,opt);
|
|
}
|
|
|
|
template<class T, template<class> class E>
|
|
void
|
|
PBS<T,E>::build(T* s, SEBs& sebs, const Search::Options& o) {
|
|
// Check whether all sebs do either best solution search or not
|
|
bool best;
|
|
{
|
|
int b = 0;
|
|
for (int i=0; i<sebs.size(); i++)
|
|
b += sebs[i]->best() ? 1 : 0;
|
|
if ((b > 0) && (b < sebs.size()))
|
|
throw Search::MixedBest("PBS::PBS");
|
|
best = (b == sebs.size());
|
|
}
|
|
|
|
Search::Options opt(o.expand());
|
|
Search::Statistics stat;
|
|
|
|
if (s->status(stat) == SS_FAILED) {
|
|
stat.fail++;
|
|
if (!opt.clone)
|
|
delete s;
|
|
e = Search::Seq::dead(opt,stat);
|
|
return;
|
|
}
|
|
|
|
// Check whether a clone must be used
|
|
T* master = opt.clone ?
|
|
dynamic_cast<T*>(s->clone()) : s;
|
|
opt.clone = false;
|
|
|
|
// Always execute master function
|
|
(void) master->master(0);
|
|
|
|
#ifdef GECODE_HAS_THREADS
|
|
if (opt.threads > 1.0)
|
|
e = Search::pbspar<T,E>(master,sebs,stat,opt,best);
|
|
else
|
|
#endif
|
|
e = Search::pbsseq<T,E>(master,sebs,stat,opt,best);
|
|
}
|
|
|
|
template<class T, template<class> class E>
|
|
inline
|
|
PBS<T,E>::PBS(T* s, SEBs& sebs, const Search::Options& o) {
|
|
build(s,sebs,o);
|
|
}
|
|
|
|
template<class T, template<class> class E>
|
|
inline T*
|
|
pbs(T* s, const Search::Options& o) {
|
|
PBS<T,E> r(s,o);
|
|
return r.next();
|
|
}
|
|
|
|
template<class T, template<class> class E>
|
|
inline SEB
|
|
pbs(const Search::Options& o) {
|
|
return new Search::PbsBuilder<T,E>(o);
|
|
}
|
|
|
|
}
|
|
|
|
// STATISTICS: search-other
|