From 2ca5ddb18682a2c2d1e69e2ea32cfe14cb1db756 Mon Sep 17 00:00:00 2001 From: kuepper Date: Mon, 5 Sep 2005 16:09:43 +0000 Subject: [PATCH] Remove useless PAradisEO files --- eo/tutorial/ParadisEO/.cvsignore | 1 - eo/tutorial/ParadisEO/Lesson2/.cvsignore | 1 - eo/tutorial/ParadisEO/Lesson3/.cvsignore | 1 - eo/tutorial/ParadisEO/Makefile.am | 1 - eo/tutorial/ParadisEO/README | 52 ------------------------ 5 files changed, 56 deletions(-) delete mode 100644 eo/tutorial/ParadisEO/.cvsignore delete mode 100644 eo/tutorial/ParadisEO/Lesson2/.cvsignore delete mode 100644 eo/tutorial/ParadisEO/Lesson3/.cvsignore delete mode 100644 eo/tutorial/ParadisEO/Makefile.am delete mode 100644 eo/tutorial/ParadisEO/README diff --git a/eo/tutorial/ParadisEO/.cvsignore b/eo/tutorial/ParadisEO/.cvsignore deleted file mode 100644 index 70845e08e..000000000 --- a/eo/tutorial/ParadisEO/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -Makefile.in diff --git a/eo/tutorial/ParadisEO/Lesson2/.cvsignore b/eo/tutorial/ParadisEO/Lesson2/.cvsignore deleted file mode 100644 index 70845e08e..000000000 --- a/eo/tutorial/ParadisEO/Lesson2/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -Makefile.in diff --git a/eo/tutorial/ParadisEO/Lesson3/.cvsignore b/eo/tutorial/ParadisEO/Lesson3/.cvsignore deleted file mode 100644 index 70845e08e..000000000 --- a/eo/tutorial/ParadisEO/Lesson3/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -Makefile.in diff --git a/eo/tutorial/ParadisEO/Makefile.am b/eo/tutorial/ParadisEO/Makefile.am deleted file mode 100644 index d1890d249..000000000 --- a/eo/tutorial/ParadisEO/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -SUBDIRS = Lesson1 Lesson2 Lesson3 diff --git a/eo/tutorial/ParadisEO/README b/eo/tutorial/ParadisEO/README deleted file mode 100644 index 35688438f..000000000 --- a/eo/tutorial/ParadisEO/README +++ /dev/null @@ -1,52 +0,0 @@ -Using the examples -================== - -Compiling the examples ----------------------- -Of course, you need to have MPICH installed, and to set the MPICH -variable before compiling if it is not in your regular path (see the -Makefiles). - -Running the examples --------------------- -1- For SPMD applications, this is easy. The command is: - -> mpirun -np <#num_procs> - -For example, - -> mpirun -np 3 IslandBitEA - -will launch a 3 islands-based evolutionary algorithm on the same -computer. - --------------------- -2- When you want to run different executables on some hosts, you need -a configuration file to tell which executable is running on which -machine. For instance, in Lesson1, the config file - -pc1 0 ${HOME}/eo/tutorial/ParadisEO/Lesson1/IslandBitEA1 -pc2 1 ${HOME}/eo/tutorial/ParadisEO/Lesson1/IslandBitEA1 -pc3 1 ${HOME}/eo/tutorial/ParadisEO/Lesson1/IslandBitEA2 -pc4 1 ${HOME}/eo/tutorial/ParadisEO/Lesson1/IslandBitEA2 - -is then run by the command ***launched on pc1*** - -> mpirun -p4pg pgfile ${HOME}/eo/tutorial/ParadisEO/Lesson1/IslandBitEA1 - -and will run specifies 4 processes, respectively on the hosts pc1, -pc2, pc3 and pc4. - -Here, the path of the executables are identical, but this is always -the case. - -There ***need*** to be exactly one line corresponding to the local -computer you are running the mpirun command from with 0 after the -hostname and the name of the executable ***must*** be the same than -the name you give on the mpirun command line - -You must be able to connect to all the computers listed in the -config file using ssh - -You can put the IP numbers of the computers, but NOT use 127.0.0.1 -to specify the local host if you have more than one computer involved