1 / 23

“ Solving the Independent Set Problem using the Exhausted Search Algorithm in parallel. ”

Parallel Computing I. Agarwal, Kshitij Ghosh , Aurodeep Elbahi , Reda. “ Solving the Independent Set Problem using the Exhausted Search Algorithm in parallel. ”. Project Mentor – Prof. Alan Kaminsky. Independent Set Problem NP problem related to graph theory Independent set

swain
Télécharger la présentation

“ Solving the Independent Set Problem using the Exhausted Search Algorithm in parallel. ”

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Parallel Computing I Agarwal, Kshitij Ghosh, Aurodeep Elbahi, Reda “Solving the Independent Set Problem using the Exhausted Search Algorithm in parallel.” Project Mentor – Prof. Alan Kaminsky

  2. Independent Set Problem • NP problem related to graph theory • Independent set • Subset of vertices S in a given graph • No two vertices are adjacent • There is no edge directly connecting any two vertices in the set S Understanding Concepts

  3. Size of an independent set • The number of vertices it contains, is the size of the vertices in the independent set. Understanding Concepts

  4. Independent set of size 9(Blue vertices) Example of an independent set Image Source: http://en.wikipedia.org/wiki/File:Independent_set_graph.svg

  5. Generated the matrix using the random number generator • Adjacency Matrix stores the graph • Generation of all possible subsets of a size I • Finding all the independent sets of size I Exhaustive search algorithm

  6. Algorithm from the first research paper. • Non-deterministic Guess • Logical AND Operation • Results Store in Middle DNA tiles self-assembly ALGORITHM Source: Zhen Cheng; Jianhua Xiao, "Implementation of Maximum Independent Set Problem by Algorithmic Tile Self-Assembly," Bio-Inspired Computing: Theories and Applications (BIC-TA), 2011 Sixth International Conference on , vol., no., pp.249,254, 27-29 Sept. 2011

  7. Algorithm from the first research paper.(contd.) • Comparison between Right and Bottom Left Subtraction And Comparison Source: Zhen Cheng; Jianhua Xiao, "Implementation of Maximum Independent Set Problem by Algorithmic Tile Self-Assembly," Bio-Inspired Computing: Theories and Applications (BIC-TA), 2011 Sixth International Conference on , vol., no., pp.249,254, 27-29 Sept. 2011

  8. Algorithm from the second research paper. • Non-intersected Neurons • Intersected Neurons (Graph Vertices) Finding a Near-Maximum Independent Set of a Circle Graph Source : Takefuji, Y.; Chen, L.-L.; Lee, K.-C.; Huffman, J., "Parallel algorithms for finding a near-maximum independent set of a circle graph," Neural Networks, IEEE Transactions on , vol.1, no.3, pp.263,267, Sep 1990

  9. Algorithm from the third research paper. • The test bed is an EREW P-RAM parallel computer with non-concurrent read-write cycles for the same memory locations. Below are the algorithm characteristics as mentioned. ‘EO’ depicts the expected value of complexity and since the third algorithm is deterministic in nature, the time complexity is not expected in form. Alg. - # Processors Used Time Complexity Random Bits 1 O(m) EO((log n)2) EO(n log n) 2 O(m) EO((log n)2) EO((log n)2) 3 O(n2m) O((log n)2) none * Each while loop has O(log n) complexity and there would be O(log n) while loop runs A simple parallel algorithm for the maximal independent set problem. Source : Luby, Michael. "A simple parallel algorithm for the maximal independent set problem." SIAM journal on computing 15, no. 4 (1986): 1036-1053.

  10. Algorithm from the third research paper.(contd.) Algorithm 1 – • Based upon the local property which takes any random vertex into consideration and adds it to the set if it is not connected to any of its adjacent vertices. • So pairwise independence is the driving factor for this configuration. • This local property is basically the conversion of mutually independent events in the large sample space to pairwise independent events in comparatively smaller sample space. Algorithm 2 – • uses the concept of randomly generated bits to choose the smaller sample space from the larger one and the Algorithm 3 – • does this in parallel, picking up the vertices which confirm to pairwise independence in separate steps making it deterministic. A simple parallel algorithm for the maximal independent set problem. Source : Luby, Michael. "A simple parallel algorithm for the maximal independent set problem." SIAM journal on computing 15, no. 4 (1986): 1036-1053.

  11. Finding the independent sets – • The loop iterating over 1 to T(total number of possible subsets of vertices) is divided over the number of processors available. • Each processor is supplied with different possibilities of choices as inputs to the exhaustive search algorithm in the form of different loop indexes to work with. • The list in which the independent sets are stored has been made thread safe. • The number of independent subsets are recorded in the thread safe integer variable. Design of the parallel program.

  12. Load Balancing:- • It is not necessary that the running time of all the threads will be the same. • It is not necessary that there will be the same number of subsets of size I. • The calculation time of checking an independent set also varies • A guided schedule is used for balancing the load. Design of the parallel program.

  13. Note - The printout of the resulting independent sets in the cases of sequential and parallel programs will be different, but the total number of solutions found remains the same. Design of the parallel program.

  14. Design of the parallel program.

  15. Demo with the usage of the Programs

  16. Notations for the performance metrics:- • N : Problem size • T : Running time • K: Number of processors • The performance metrics are the speedup of the program as following:- • 1.) The ratio of the running time of the sequential program with respect to the running time of the parallel program. • Speedup(N,K) = Tseq(N,1)/Tpar(N,K) • 2.) Efficiency = Speedup(N,K)/K Performance Metrics Measured

  17. Performance Metrics Measured

  18. Performance Metrics Measured

  19. Performance Metrics Measured

  20. At a smaller scale, a NP problem might be simpler to solve • But increasing the size of the graph poses a huge complexity in terms of computational time. • This project provided us a chance to learn how to optimize code designs for parallel architectures as high performance scientific computing problems. • The Parallel Java Library, developed by Prof. Alan Kaminsky, made it easy to design the parallel programs in Java. Lessons Learned

  21. A cluster version of the same program can also be made • That program can be run on the cluster parallel computer like RIT CS Paranoia 32-Processor Cluster. • An analysis can be made that whether this problem is a good candidate for a GPU parallel program or not. • If the analysis says yes, then a GPU parallel program can be made for it. Future Work

  22. 1.) Zhen Cheng; Jianhua Xiao, "Implementation of Maximum Independent Set Problem by Algorithmic Tile Self-Assembly," Bio-Inspired Computing: Theories and Applications (BIC-TA), 2011 Sixth International Conference on , vol., no., pp.249,254, 27-29 Sept. 2011 • 2.) Takefuji, Y.; Chen, L.-L.; Lee, K.-C.; Huffman, J., "Parallel algorithms for finding a near-maximum independent set of a circle graph," Neural Networks, IEEE Transactions on , vol.1, no.3, pp.263,267, Sep 1990 • 3.) Luby, Michael. "A simple parallel algorithm for the maximal independent set problem." SIAM journal on computing 15, no. 4 (1986): 1036-1053. • 4.) Alan Kaminsky. Building Parallel Programs: SMPs, Clusters, and Java. Cengage Course Technology, 2010. ISBN 1-4239-0198-3. • 5.) L. H. Holley and M. Karplus, “Protein secondary structure prediction with a neural network,” Proc. Nar. Acad. Sci. USA, vol. 86,1989. • 6.) Parallel Java Library developed by Prof. Alan Kaminsky References

  23. THANK YOU Questions, if any.

More Related