Difference between revisions of "Plan Max Manfrin"
From IridiaWiki
Jump to navigationJump to search(217 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
= Plan (future work) = |
= Plan (future work) = |
||
− | * Investigate the effect of parallelization on Ant Colony Optimization algorithms |
||
+ | == Milestone I: Jan - Mar 2006== |
||
+ | |||
+ | |||
+ | * Acquire practical experience in explicit parallelization on ACO algorithms |
||
+ | ** Start from sequential ACOTSP and implement various MPI variants |
||
+ | *** Sync |
||
+ | **** Multicolony - fully-connected |
||
+ | ***** colony 0 identifies the best colony; best colony broadcast its bsf solution |
||
+ | ***** colony 0 identifies the best colony and the worst colony; best colony send its bsf solution to worst colony |
||
+ | **** Multicolony - ring |
||
+ | ***** unidirectional ring |
||
+ | **** Multicolony - hypercube |
||
+ | ***** 3D hypercube |
||
+ | **** Single colony, multi local search |
||
+ | *** Async |
||
+ | **** Multicolony - completly-connected |
||
+ | ***** colony 0 identifies the best colony; best colony broadcast its bsf solution |
||
+ | ***** colony 0 identifies the best colony and the worst colony; best colony send its bsf solution to worst colony |
||
+ | **** Multicolony - ring |
||
+ | ***** unidirectional ring |
||
+ | **** Multicolony - hypercube |
||
+ | ***** 3D hypercube |
||
+ | * Paper submission to ANTS 2006 of "explicit parallelization of ACOTSP" |
||
+ | * By end of March decision if and how to extend the paper for possible Journal article |
||
+ | * By end of March decision if proceed with MPI version of ILK-H + ACOTSP |
||
+ | * Find the sentence that explain what the PhD thesis is about (what is the contribution of this thesis?) |
||
+ | ** 1. Parallelization of ACO on multi-core architectures ? |
||
+ | ** 2. Parallelization of ACO on collection of interesting problems? |
||
+ | |||
+ | |||
+ | ==Milestone II: Apr - Jun 2006== |
||
+ | |||
+ | |||
+ | * Development and empirical test of different communication schemes among colonies |
||
+ | <pre> |
||
+ | The i.a.k identify how often we do communication among colonies. |
||
+ | |||
+ | The law used to generate the periods is SQRT[(10)^(i+1)], so |
||
+ | i = 1 --> T = 10 |
||
+ | i = 2 --> T = 31 |
||
+ | i = 3 --> T = 100 |
||
+ | i = 4 --> T = 316 |
||
+ | i = 5 --> T = 1000 |
||
+ | i = 6 --> T = 3162 |
||
+ | i = 7 --> T = 10000 |
||
+ | i = 8 --> T = 31622 |
||
+ | i = 9 --> T = 100000 |
||
+ | |||
+ | The jth exchange happens at iteration |
||
+ | |||
+ | |||
+ | T * (1 - 0.a^j)/(1 - 0.a) IF (int)[x_j - x_(j-1)] > k |
||
+ | x_j = |
||
+ | k OTHERWISE |
||
+ | </pre> |
||
+ | * Start from sequential ACOTSP and implement various MPI variants |
||
+ | ** Sync |
||
+ | *** Multicolony - ring |
||
+ | **** unidirectional ring |
||
+ | ***** 4.8.10 |
||
+ | ***** 4.9.10 |
||
+ | ***** 5.8.10 |
||
+ | ***** 5.9.10 |
||
+ | ***** 6.8.10 |
||
+ | ***** 6.9.10 |
||
+ | ***** 7.6.10 |
||
+ | ***** 7.7.10 |
||
+ | * Transfer the knowledge and experience on TSP to other problems |
||
+ | ** Collaboration with Marco Caserta on parallel ACO for Set Covering Problem |
||
+ | *** he doesn't use ACO for SCP, but I've helped him anyway to parallelize his own primal-dual algorithm |
||
+ | ** Collaboration with Daniele Catanzaro on parallel ACO for phylogeny reconstruction |
||
+ | *** Start from sequential ACO algorithm and implemented MPI variant |
||
+ | **** Sync |
||
+ | ***** Multicolony - fully-connected |
||
+ | ****** colony 0 identifies the best colony; best colony broadcast its bsf solution |
||
+ | ** Identify possible problems for which IRIDIA has expertise and state-of-the-art ACO algo as starting points (Scheduling: Blum, QAP: Thomas) |
||
+ | *** QAP: start from sequential MMASQAP and implement various MPI variants (in total we consider 72 algo) |
||
+ | **** Factor 1: Connection topology |
||
+ | ***** Multicolony - fully-connected |
||
+ | ****** colony 0 identifies the best colony; best colony broadcast its bsf solution |
||
+ | ****** colony 0 identifies the best colony and the worst colony; best colony send its bsf solution to worst colony |
||
+ | ***** Multicolony - ring |
||
+ | ****** unidirectional ring |
||
+ | ***** Multicolony - hypercube |
||
+ | ****** 3D hypercube |
||
+ | **** Factor 2: Communication schema |
||
+ | ***** Sync |
||
+ | ****** 1.x.10 (constant gap of 10 iterations) |
||
+ | ****** 2.9.10 |
||
+ | ****** 2.8.10 |
||
+ | ****** 2.7.10 |
||
+ | ****** 2.6.10 |
||
+ | ****** 3.9.10 |
||
+ | ****** 3.8.10 |
||
+ | ****** 3.7.10 |
||
+ | ****** 3.6.10 |
||
+ | **** Factor 3: Local Search |
||
+ | ***** 2-opt |
||
+ | ***** tabu search |
||
+ | |||
+ | ==Milestone III: Jul - Sep 2006== |
||
+ | |||
+ | |||
+ | * Tech Report on TSP and QAP experiments |
||
+ | ** decision if and how to extend the paper for possible journal article |
||
+ | * Literature survey on parallel ACO algorithms (version 3) |
||
+ | * Acquire practical experience in implicit parallelization on ACO algorithms |
||
+ | ** Start from sequential ACOTSP and implement various OpenMP variants |
||
+ | *** Sync ( i.e. implicit barrier in for directives) |
||
+ | *** Async (i.e use of the nowait clause) |
||
+ | * ? Paper on "implicit vs explicit parallelization of ACOTSP" |
||
+ | |||
+ | ==Milestone IV: Oct - Dec 2006== |
||
+ | |||
+ | |||
+ | ==Milestone V: Jan - Mar 2007== |
||
+ | |||
+ | |||
+ | ==Milestone VI: Apr - Jun 2007== |
||
+ | |||
+ | |||
+ | ==Milestone VII: Jul - Sep 2007== |
||
+ | * Write PhD thesis |
||
= Goals = |
= Goals = |
||
+ | * Investigate the effect of parallelization on Ant Colony Optimization algorithms |
||
* Acquire practical experience in parallelization on ACO algorithms (both explicit and implicit parallelism) |
* Acquire practical experience in parallelization on ACO algorithms (both explicit and implicit parallelism) |
||
+ | * Implicit parallelism is the new trend (multi core CPUs), not much work has been done on them yet |
||
− | * Submit paper to ANTS 2006 (on explicit parallelism - MPI) |
||
= Things to do = |
= Things to do = |
||
− | |||
− | {| border=1 cellspacing=0 cellpadding=2 |
||
− | ! Description !! Start date !! Deadline !! Time required !! status !! Real deadline |
||
− | |- |
||
− | | Study MPI || Nov 14, 2005 || || ongoing process || In progress || |
||
− | |- |
||
− | | '''Explicit parallelization of ACOTSP using MPI''' || Nov 14, 2005 || Jan 8, 2006 || ~9 weeks || done || Jan 24, 2006 |
||
− | |- |
||
− | | Synch version of "One colony - many LS (3-opt)" || Nov 14, 2005 || Dec 5, 2005 || ~26 days || done || Jan 24, 2006 |
||
− | |- |
||
− | | Synch version of "Many homogeneous colonies - all-all" || Dec 10, 2005 || Dec 22, 2005 || ~13 days || done || Jan 24, 2006 |
||
− | |- |
||
− | | --= DISCUSSION WITH MARCO, MAURO, THOMAS =-- || Jan 30, 2006 || || || || |
||
− | |- |
||
− | | Profile sequential ACOTSP code with instaces (1000 < size < 2000) || Jan 30, 2006 || || 1 day || done || |
||
− | |- |
||
− | | Add # iterations as stopping criterion || || || || || |
||
− | |- |
||
− | | Asynch version of "Many homogeneous colonies - ring" || Feb 1, 2006 || || 4 days || done|| |
||
− | |- |
||
− | | Implement cube topology || Feb 6, 2006 || || || in progress || |
||
− | |- |
||
− | | Implement synch version of "Many heterogeneous colonies - all-all/ring/cube || || || || || |
||
− | |- |
||
− | | Patch ILK-H for MPI usage || || || || || |
||
− | |- |
||
− | | Implement asynch version of "One colony - many LS" || || || || || |
||
− | |- |
||
− | | Implement asynch version of "Many homogeneous colonies - all-all/ring/cube" || || || || || |
||
− | |- |
||
− | | Implement asynch version of "Many heterogeneous colonies - all-all/ring/cube" || || || || || |
||
− | |- |
||
− | | Tuning of parallel parameters with F-Race || || || || || |
||
− | |- |
||
− | | Experiments on TSP instances (1000 < size < 6000) || || Feb 26, 2006 || || || |
||
− | |- |
||
− | | Abstract submission for ANTS 2006 || || Mar 12, 2006 || || || |
||
− | |- |
||
− | | Submission of paper for ANTS 2006 || || Mar 19, 2006 || || || |
||
− | |- |
||
− | |} |
||
− | |||
{| border=1 cellspacing=0 cellpadding=2 |
{| border=1 cellspacing=0 cellpadding=2 |
||
Line 63: | Line 144: | ||
| '''Implicit parallelization of ACOTSP using OpenMP''' || - || - || - || Need a compiler |
| '''Implicit parallelization of ACOTSP using OpenMP''' || - || - || - || Need a compiler |
||
|- |
|- |
||
+ | | Parallel ACO survey v3 || Jul 1, 2006 || Aug 31, 2006 || || |
||
+ | |- |
||
|} |
|} |
||
Line 70: | Line 153: | ||
{| border=1 cellspacing=0 cellpadding=2 |
{| border=1 cellspacing=0 cellpadding=2 |
||
! Description !! Start date !! Deadline !! Completion date !! status !! Note |
! Description !! Start date !! Deadline !! Completion date !! status !! Note |
||
− | |- |
||
− | | '''1.''' Patch the algorithms in such a way that they use only globabl best in pheromone update and they use quadrant nearest neighbour || Feb 16 || Feb 21 || in progress || || |
||
− | |- |
||
− | | '''1.1''' Sync - Multicolony - all-all || Feb 16 || Feb 21 || Feb 19 || completed || experiments running |
||
− | |- |
||
− | | '''1.2''' Sync - Multicolony - ring |
||
− | |- |
||
− | | '''1.3''' Sync - Multicolony - replace-worst |
||
− | |- |
||
− | | '''1.4''' Sync - MultiLS |
||
− | |- |
||
− | | '''2.1''' Send to Thomas and Mauro a list of all paper that deals with Parallel ACO for TSP that contains experimental results in order to check what the others have been doing |
||
− | |- |
||
− | | '''2.2''' 2.2 Read the paper |
||
− | |||
− | @article{MidReiSch02tsp_qap, |
||
− | Abstract = {In multi colony ant algorithms several colonies of ants cooperate in finding good solutions for an optimization problem. At certain time steps the colonies exchange information about good solutions. If the amount of exchanged information is not too large multi colony ant algorithms can be easily parallelized in a natural way by placing the colonies on different processors. In this paper we study the behaviour of multi colony ant algorithms with different kinds of information exchange between the colonies. Moreover we compare the behaviour of different numbers of colonies with a multi start single colony ant algorithm. As test problems we use the Traveling Salesperson problem and the Quadratic Assignment problem. |
||
− | }, |
||
− | Address = {Amsterdam, The Netherlands}, |
||
− | Author = {Middendorf, M. and Reischle, F. and Schmeck, H.}, |
||
− | Date-Added = {2004-12-01 11:54:23 +0100}, |
||
− | Date-Modified = {2005-03-09 10:21:33 +0100}, |
||
− | Journal = {Journal of Heuristics}, |
||
− | Local-Url = {file://localhost/Users/mmanfrin/Library/texmf/bibtex/bib/documents/MidReiSch02tsp_qap.pdf}, |
||
− | Month = {May}, |
||
− | Number = {3}, |
||
− | Pages = {305--320}, |
||
− | Publisher = {Kluwer Academic Publishers}, |
||
− | Title = {Multi Colony Ant Algorithms}, |
||
− | Volume = {8}, |
||
− | Year = {2002}} |
||
|- |
|- |
||
|} |
|} |
||
Line 109: | Line 161: | ||
! Title !! Author !! Location !! Dates |
! Title !! Author !! Location !! Dates |
||
|- |
|- |
||
− | | |
+ | | IRIDIA Optimization meeting ||Ch. 4 of the book to present || || Apr 27, 2006 |
|- |
|- |
||
|} |
|} |
||
− | |||
= Events participation = |
= Events participation = |
||
Line 119: | Line 170: | ||
! Event !! Location !! Dates |
! Event !! Location !! Dates |
||
|- |
|- |
||
+ | | || || |
||
− | | Matinée Jeunes Chercheurs || Building U - Solbosch Campus || Feb 17, 2006 - from 10:00 to 14:00 |
||
− | |- |
||
− | | || prepare poster on ACO || done |
||
− | |- |
||
− | | || prepare demo for ACOTSP || before Feb 15, 2006 |
||
|- |
|- |
||
|} |
|} |
||
+ | |||
= Papers to write = |
= Papers to write = |
||
{| border=1 cellspacing=0 cellpadding=2 |
{| border=1 cellspacing=0 cellpadding=2 |
||
− | ! Title !! Journal/Conference targeted |
+ | ! Title !! Journal/Conference targeted !! Submission deadline |
− | |- |
||
− | | A Survey of Parallel ACO algorithms || N.A. || N.A. || N.A. |
||
|- |
|- |
||
+ | | A Survey of Parallel ACO algorithms || N.A. || N.A. |
||
− | | Process-level parallelization of ACOTSP || Ants 2006 international workshop || N.A. || Mar 12, 2006 |
||
|- |
|- |
||
− | | Thread-level parallelization of ACOTSP |
+ | | Thread-level parallelization of ACOTSP || N.A. || N.A. |
|} |
|} |
||
Line 148: | Line 194: | ||
! Journal !! # papers !! paper received on !! review to submit before |
! Journal !! # papers !! paper received on !! review to submit before |
||
|- |
|- |
||
+ | | || || || |
||
− | | European Journal of Operational Research || 1 || Dec 21, 2005 || Jan 31, 2006 |
||
|- |
|- |
||
|} |
|} |
||
Line 158: | Line 204: | ||
! Conference !! # papers !! paper received on !! review to submit before |
! Conference !! # papers !! paper received on !! review to submit before |
||
|- |
|- |
||
+ | | |
||
− | | GECCO 2006 || 5 || Feb 6, 2006 || Mar 20, 2006 |
||
|- |
|- |
||
− | | WSC11 || 3-4 (estimation) || May/June 2006 || 30 Jun 2006 |
||
|} |
|} |
||
− | |||
= IRIDIA chores = |
= IRIDIA chores = |
||
+ | |||
{| border=1 cellspacing=0 cellpadding=2 |
{| border=1 cellspacing=0 cellpadding=2 |
||
! Chore !! assigned !! status |
! Chore !! assigned !! status |
||
|- |
|- |
||
− | | Update Dorigo website with Master, DEA, and PhD thesis data || Feb 2, 2006 || |
+ | | Update Dorigo website with Master, DEA, and PhD thesis data || Feb 2, 2006 || done |
+ | |- |
||
+ | | Create a Wiki page with list of all the software we have for the Mac with #licenses and where they are installed || Apr 21, 2006 || |
||
|- |
|- |
||
|} |
|} |
Latest revision as of 21:38, 6 July 2006
History (past work)
http://iridia.ulb.ac.be/wiki/index.php/History_Max_Manfrin
Plan (future work)
Milestone I: Jan - Mar 2006
- Acquire practical experience in explicit parallelization on ACO algorithms
- Start from sequential ACOTSP and implement various MPI variants
- Sync
- Multicolony - fully-connected
- colony 0 identifies the best colony; best colony broadcast its bsf solution
- colony 0 identifies the best colony and the worst colony; best colony send its bsf solution to worst colony
- Multicolony - ring
- unidirectional ring
- Multicolony - hypercube
- 3D hypercube
- Single colony, multi local search
- Multicolony - fully-connected
- Async
- Multicolony - completly-connected
- colony 0 identifies the best colony; best colony broadcast its bsf solution
- colony 0 identifies the best colony and the worst colony; best colony send its bsf solution to worst colony
- Multicolony - ring
- unidirectional ring
- Multicolony - hypercube
- 3D hypercube
- Multicolony - completly-connected
- Sync
- Start from sequential ACOTSP and implement various MPI variants
- Paper submission to ANTS 2006 of "explicit parallelization of ACOTSP"
- By end of March decision if and how to extend the paper for possible Journal article
- By end of March decision if proceed with MPI version of ILK-H + ACOTSP
- Find the sentence that explain what the PhD thesis is about (what is the contribution of this thesis?)
- 1. Parallelization of ACO on multi-core architectures ?
- 2. Parallelization of ACO on collection of interesting problems?
Milestone II: Apr - Jun 2006
- Development and empirical test of different communication schemes among colonies
The i.a.k identify how often we do communication among colonies. The law used to generate the periods is SQRT[(10)^(i+1)], so i = 1 --> T = 10 i = 2 --> T = 31 i = 3 --> T = 100 i = 4 --> T = 316 i = 5 --> T = 1000 i = 6 --> T = 3162 i = 7 --> T = 10000 i = 8 --> T = 31622 i = 9 --> T = 100000 The jth exchange happens at iteration T * (1 - 0.a^j)/(1 - 0.a) IF (int)[x_j - x_(j-1)] > k x_j = k OTHERWISE
- Start from sequential ACOTSP and implement various MPI variants
- Sync
- Multicolony - ring
- unidirectional ring
- 4.8.10
- 4.9.10
- 5.8.10
- 5.9.10
- 6.8.10
- 6.9.10
- 7.6.10
- 7.7.10
- unidirectional ring
- Multicolony - ring
- Sync
- Transfer the knowledge and experience on TSP to other problems
- Collaboration with Marco Caserta on parallel ACO for Set Covering Problem
- he doesn't use ACO for SCP, but I've helped him anyway to parallelize his own primal-dual algorithm
- Collaboration with Daniele Catanzaro on parallel ACO for phylogeny reconstruction
- Start from sequential ACO algorithm and implemented MPI variant
- Sync
- Multicolony - fully-connected
- colony 0 identifies the best colony; best colony broadcast its bsf solution
- Multicolony - fully-connected
- Sync
- Start from sequential ACO algorithm and implemented MPI variant
- Identify possible problems for which IRIDIA has expertise and state-of-the-art ACO algo as starting points (Scheduling: Blum, QAP: Thomas)
- QAP: start from sequential MMASQAP and implement various MPI variants (in total we consider 72 algo)
- Factor 1: Connection topology
- Multicolony - fully-connected
- colony 0 identifies the best colony; best colony broadcast its bsf solution
- colony 0 identifies the best colony and the worst colony; best colony send its bsf solution to worst colony
- Multicolony - ring
- unidirectional ring
- Multicolony - hypercube
- 3D hypercube
- Multicolony - fully-connected
- Factor 2: Communication schema
- Sync
- 1.x.10 (constant gap of 10 iterations)
- 2.9.10
- 2.8.10
- 2.7.10
- 2.6.10
- 3.9.10
- 3.8.10
- 3.7.10
- 3.6.10
- Sync
- Factor 3: Local Search
- 2-opt
- tabu search
- Factor 1: Connection topology
- QAP: start from sequential MMASQAP and implement various MPI variants (in total we consider 72 algo)
- Collaboration with Marco Caserta on parallel ACO for Set Covering Problem
Milestone III: Jul - Sep 2006
- Tech Report on TSP and QAP experiments
- decision if and how to extend the paper for possible journal article
- Literature survey on parallel ACO algorithms (version 3)
- Acquire practical experience in implicit parallelization on ACO algorithms
- Start from sequential ACOTSP and implement various OpenMP variants
- Sync ( i.e. implicit barrier in for directives)
- Async (i.e use of the nowait clause)
- Start from sequential ACOTSP and implement various OpenMP variants
- ? Paper on "implicit vs explicit parallelization of ACOTSP"
Milestone IV: Oct - Dec 2006
Milestone V: Jan - Mar 2007
Milestone VI: Apr - Jun 2007
Milestone VII: Jul - Sep 2007
- Write PhD thesis
Goals
- Investigate the effect of parallelization on Ant Colony Optimization algorithms
- Acquire practical experience in parallelization on ACO algorithms (both explicit and implicit parallelism)
- Implicit parallelism is the new trend (multi core CPUs), not much work has been done on them yet
Things to do
Description | Start date | Deadline | Time required | status |
---|---|---|---|---|
Study OpenMP | Jan 9, 2005 | ongoing process | In progress | |
Implicit parallelization of ACOTSP using OpenMP | - | - | - | Need a compiler |
Parallel ACO survey v3 | Jul 1, 2006 | Aug 31, 2006 |
Weekly planning
Description | Start date | Deadline | Completion date | status | Note |
---|
Seminars participation
Title | Author | Location | Dates |
---|---|---|---|
IRIDIA Optimization meeting | Ch. 4 of the book to present | Apr 27, 2006 |
Events participation
Event | Location | Dates |
---|---|---|
Papers to write
Title | Journal/Conference targeted | Submission deadline |
---|---|---|
A Survey of Parallel ACO algorithms | N.A. | N.A. |
Thread-level parallelization of ACOTSP | N.A. | N.A. |
Referee activities
International journals
Journal | # papers | paper received on | review to submit before |
---|---|---|---|
International conferences
Conference | # papers | paper received on | review to submit before |
---|---|---|---|
IRIDIA chores
Chore | assigned | status |
---|---|---|
Update Dorigo website with Master, DEA, and PhD thesis data | Feb 2, 2006 | done |
Create a Wiki page with list of all the software we have for the Mac with #licenses and where they are installed | Apr 21, 2006 |