I have the following doubts, I am developing a genetic algorithm that uses a second program to do certain calculations. This second program is implemented parallelization.
My program calls this second program to do the necessary calculations. With MPI, I can run two calculations at the same time.
But I would like to implement a way to run these same calculations using also parallelizing own program. a simple scheme below
GENETIC
|
| ---> MPI HERE
/ \
/ \
/ \
1º machine - PROGRAM PROGRAM - 2º machine
/\ /\
/ \ / \
/ \ / \
program paralell program paralell
That is, I reserve the MPI 6 cores on 2 machines, 3 on each machine to run my genetic algorithm, in each of these machines I share the task called 2x the second program, 1 on each machine and each machine the second program will do the calculations using 3 cores.
Sorry for my English, I did my maximum to explain in a simple way, if you still have any questions about the process I try to explain in a different way ...