Changes between Version 14 and Version 15 of Traffic:


Ignore:
Timestamp:
Jan 16, 2010, 11:57:39 PM (14 years ago)
Author:
stefan.nour
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Traffic:

    v14 v15  
    77 * Descriere proiect: Improving the algorithm for computing the shortest path to a destination for graphs with large numbers of nodes and integrate it in an existing framework for traffic rerouting.
    88
    9 == Activitate proiect ==
    10 '''Completati ce veti face in fiecare etapa a proiectului '''
    11  * 12 Nov - ...
     9
     10==Related Work==
     11
     12We recently discovered a new way of parallelizing a program in Java by using Parallel Java( an API and middleware for parallel programming in 100% Java on shared memory multiprocessor (SMP) parallel computers, cluster parallel computers, and hybrid SMP cluster parallel computers).
     13All the files related to this project are at [http://www.cs.rit.edu/~ark/winter2008/531/team/u8/]
     14
     15We tried to simulate the test performed by them but we did not obtain the same results. The main issue that we discussed about at our presentation (the time of execution for the parallel implementation on 1 thread vs. the time of execution of the sequential algorithm) was proven to be wrong for them. As our test confirmed, the sequential algorithm runs a little bit faster.
     16
     17The sequential algorithm on 1 thread:
    1218{{{
    13 - Status proiect:
    14 ...
    15 
    16 - ToDo:
    17 ...
     19[0] -> [23] -> [51] -> [99] (Total Distance = 7)
     20Running Time : 407
     21}}}
     22The parallel algorithm on 1 thread:
     23{{{
     24[0] -> [23] -> [51] -> [99] (Total Distance = 7)
     25Running Time : 428
    1826}}}
    1927== Implementation ==
    20 We tried to integrate the parallelized algorithm into the existing framework by calling a c program from a java context.
     28We tried to integrate the parallelized algorithm into the existing framework by calling a C program from a java context.
    2129[http://java.sun.com/docs/books/jni/html/start.html#26346]
    2230