.../
... + -- EO
| |
| |
+-- src ----- + -- EDO
| |
| |
+-- test + -- MO
| |
| |
+-- tutorial + -- MOEO
| |
| |
+-- doc + -- SMP
| |
| |
... + -- EOMPI
|
|
+ -- EOSERIAL
Question for current maintainers: ./README: new release?
Also:
* Moving out eompi & eoserial modules (issue #2).
* Correction of the errors when executing "make doc" command.
* Adding a solution for the conflicting headers problem (see the two CMake Cache
Values: PROJECT_TAG & PROJECT_HRS_INSTALL_SUBPATH) (issue #1)
* Header inclusions:
** src: changing absolute paths into relative paths ('#include <...>' -> '#include "..."')
** test, tutorial: changing relative paths into absolute paths ('#include "..."' -> '#include <...>')
* Moving out some scripts from EDO -> to the root
* Add a new script for compilation and installation (see build_gcc_linux_install)
* Compilation with uBLAS library or EDO module: now ok
* Minor modifications on README & INSTALL files
* Comment eompi failed tests with no end
*** TODO: CPack (debian (DEB) & RedHat (RPM) packages) (issues #6 & #7) ***
61 lines
1.8 KiB
C++
Executable file
61 lines
1.8 KiB
C++
Executable file
//-----------------------------------------------------------------------------
|
|
// t-eoParallel.cpp
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include <omp.h>
|
|
|
|
#include <paradiseo/eo.h>
|
|
#include <paradiseo/eo/es/make_real.h>
|
|
//#include <paradiseo/eo/apply.h>
|
|
#include "real_value.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
typedef eoReal< eoMinimizingFitness > EOT;
|
|
|
|
int main(int ac, char** av)
|
|
{
|
|
eoParser parser(ac, av);
|
|
|
|
unsigned int popSize = parser.getORcreateParam((unsigned int)100, "popSize", "Population Size", 'P', "Evolution Engine").value();
|
|
unsigned int dimSize = parser.getORcreateParam((unsigned int)10, "dimSize", "Dimension Size", 'd', "Evolution Engine").value();
|
|
|
|
uint32_t seedParam = parser.getORcreateParam((uint32_t)0, "seed", "Random number seed", 0).value();
|
|
if (seedParam == 0) { seedParam = time(0); }
|
|
|
|
make_parallel(parser);
|
|
make_help(parser);
|
|
|
|
rng.reseed( seedParam );
|
|
|
|
eoUniformGenerator< double > gen(-5, 5);
|
|
eoInitFixedLength< EOT > init( dimSize, gen );
|
|
|
|
eoEvalFuncPtr< EOT, double, const std::vector< double >& > mainEval( real_value );
|
|
eoEvalFuncCounter< EOT > eval( mainEval );
|
|
|
|
eoPop< EOT > pop( popSize, init );
|
|
|
|
//apply< EOT >( eval, pop );
|
|
eoPopLoopEval< EOT > popEval( eval );
|
|
popEval( pop, pop );
|
|
|
|
eo::log << eo::quiet << "DONE!" << std::endl;
|
|
|
|
#ifdef ENABLE_OPENMP
|
|
|
|
#pragma omp parallel
|
|
{
|
|
if ( 0 == omp_get_thread_num() ) //Warning: omp_get_thread_num doestn't work with pragma and required openMP
|
|
{
|
|
eo::log << "num of threads: " << omp_get_num_threads() << std::endl; //Warning: omp_get_num_threads doestn't work with pragma and required openMP
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|