a novel heterogeneous algorithm for multiplying scale
play

A Novel Heterogeneous Algorithm for Multiplying Scale-Free Sparse - PowerPoint PPT Presentation

A Novel Heterogeneous Algorithm for Multiplying Scale-Free Sparse Matrices Kiran Raj Ramamoorthy, Dip Sankar Banerjee, Kannan Srinathan and Kishore Kothapalli. C-STAR, IIIT Hyderabad. Outline Inspiration :: Heterogeneous Platform &


  1. A Novel Heterogeneous Algorithm for Multiplying Scale-Free Sparse Matrices Kiran Raj Ramamoorthy, Dip Sankar Banerjee, Kannan Srinathan and Kishore Kothapalli. C-STAR, IIIT Hyderabad.

  2. Outline • Inspiration :: Heterogeneous Platform & Challenges • Introduction :: Sparse Matrix-Matrix Multiplication (SPMM) • Earlier Work :: Row-Row (K. Matam et. al) • Our Approach :: HH-CPU • Implementation :: Notes • Results :: Datasets (SNAP , Synthetic …), Experiments & Discussion • Other Approaches :: Work Queue & its variations • Conclusion :: Future Work & References

  3. Heterogeneous Platform CPU GPU Send Code Send Data Send Results

  4. Heterogeneous Platform CPU GPU Send Code Send Data Data Transfer Data Transfer Data Transfer Data Transfer Send Results

  5. Challenges • Which portion of input is processed by which device ? • Static Partitioning input is a good solution to obtain high performance on heterogeneous platforms. • However, compute capability of each entity is di ff erent & performance of device is dependent on nature of input. • Simple/Static partitioning is not optimal. • Is it possible to come up with partitioning techniques for heterogenous platforms and applications ?

  6. Our Goal • To propose a novel heterogeneous algorithm for sparse matrix-matrix multiplication that, • not only, balances load across heterogeneous devices in computing platform. • but also, assigns "right" work to the "right" processor.

  7. Sparse Matrix • Matrix in which most of the elements are zero. • i.e. nnz = k * n • Example

  8. Real-World Matrices Usually datasets in Data Mining, Social Network Analysis & Communication Networks are very large.

  9. Dense Row Nature of Real-world Matrices These graphs are highly irregular & scale-free with a power-law degree distribution.

  10. Sparse Matrix-Matrix Multiplication • Compute C = A x B, where A, B are two sparse matrices. • Why is it hard in a heterogeneous setting ? • Sparse nature of matrix makes it hard for programmers to exploit CPU’s cache hierarchy (tiling) to achieve performance. • Irregular computation implies thread load imbalance & hence not suitable for GPUs.

  11. Row-Row Formulation • K. Matam et. al, proved row-row formulation of matrix multiplication out performs usual row-column formulation for SPMM in GPUs. ∑ C ( i ,:) = A ( i , j )* B ( j ,:) j ∈ I i ( A )

  12. 0 1 2 3 2 1 3 0 0 0 2 4 16 6 0 0 0 1 1 8 0 0 0 7 6 1 A = B = A x B = 1 0 1 0 0 0 6 2 3 10 2 2 0 0 4 0 7 0 4 34 8 3 C(1, :) = Row-Row Formulation Example

  13. 0 1 2 3 2 1 3 0 0 0 2 4 16 6 0 0 0 1 1 8 0 0 0 7 6 1 A = B = A x B = 1 0 1 0 0 0 6 2 3 10 2 2 0 0 4 0 7 0 4 34 8 3 C(1, :) = 2 * Row-Row Formulation Example

  14. 0 1 2 3 2 1 3 0 0 0 2 4 16 6 0 0 0 1 1 8 0 0 0 7 6 1 A = B = A x B = 1 0 1 0 0 0 6 2 3 10 2 2 0 0 4 0 7 0 4 34 8 3 C(1, :) = 2 * [8 0 0] Row-Row Formulation Example

  15. 0 1 2 3 2 1 3 0 0 0 2 4 16 6 0 0 0 1 1 8 0 0 0 7 6 1 A = B = A x B = 1 0 1 0 0 0 6 2 3 10 2 2 0 0 4 0 7 0 4 34 8 3 C(1, :) = 2 * [8 0 0] + 1 * Row-Row Formulation Example

  16. 0 1 2 3 2 1 3 0 0 0 2 4 16 6 0 0 0 1 1 8 0 0 0 7 6 1 A = B = A x B = 1 0 1 0 0 0 6 2 3 10 2 2 0 0 4 0 7 0 4 34 8 3 C(1, :) = 2 * [8 0 0] + 1 * [0 0 6] Row-Row Formulation Example

  17. 0 1 2 3 2 1 3 0 0 0 2 4 16 6 0 0 0 1 1 8 0 0 0 7 6 1 A = B = A x B = 1 0 1 0 0 0 6 2 3 10 2 2 0 0 4 0 7 0 4 34 8 3 C(1, :) = 2 * [8 0 0] + 1 * [0 0 6] = [16 0 6] Row-Row Formulation Example

  18. 0 1 2 3 2 1 3 0 0 0 2 4 16 6 0 0 0 1 1 8 0 0 0 7 6 1 A = B = A x B = 1 0 1 0 0 0 6 2 3 10 2 2 0 0 4 0 7 0 4 34 8 3 C(1, :) = 2 * [8 0 0] + 1 * [0 0 6] = [16 0 6] C(2, :) = 1 * [0 0 6] + 1 * [0 7 0] = [0 7 6] Row-Row Formulation Example

  19. 0 1 2 3 2 1 3 0 0 0 2 4 16 6 0 0 0 1 1 8 0 0 0 7 6 1 A = B = A x B = 1 0 1 0 0 0 6 2 3 10 2 2 0 0 4 0 7 0 4 34 8 3 C(1, :) = 2 * [8 0 0] + 1 * [0 0 6] = [16 0 6] C(2, :) = 1 * [0 0 6] + 1 * [0 7 0] = [0 7 6] C(3, :) = 1 * [2 3 4] + 1 * [0 0 6] = [2 3 10] Row-Row Formulation Example

  20. 0 1 2 3 2 1 3 0 0 0 2 4 16 6 0 0 0 1 1 8 0 0 0 7 6 1 A = B = A x B = 1 0 1 0 0 0 6 2 3 10 2 2 0 0 4 0 7 0 4 34 8 3 C(1, :) = 2 * [8 0 0] + 1 * [0 0 6] = [16 0 6] C(2, :) = 1 * [0 0 6] + 1 * [0 7 0] = [0 7 6] C(3, :) = 1 * [2 3 4] + 1 * [0 0 6] = [2 3 10] C(4, :) = 2 * [2 3 4] + 4 * [0 7 0] = [4 34 8] Row-Row Formulation Example

  21. Thread Load Imbalance x

  22. HH-CPU • Classify each row of sparse matrix into high dense and low dense. Now we can write SPMM as, C = A x B => C = (A H + A L ) x (B H + B L ) => C = A H x B H + A L x B L + A H x B L + A L x B H • Each multiplication above has certain properties that helps us to map it to a device that performs better.

  23. Example 3 4 2 1 2 1 0 0 2 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 A = B = C = 3 2 2 1 3 2 2 1 6 12 7 7 0 0 0 5 0 0 0 5 0 25 0 0

  24. Example 3 4 2 1 2 1 0 0 2 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 A = B = C = 3 2 2 1 3 2 2 1 6 12 7 7 0 0 0 5 0 0 0 5 0 25 0 0 2 1 2 1 0 0 0 0 2 2 3 1 0 0 0 0 0 0 0 0 0 0 0 0 A H = B H = A H x B H = 3 2 2 1 3 2 2 1 6 10 7 2 0 0 0 0 0 0 0 0 0 0 0 0

  25. Example 3 4 2 1 2 1 0 0 2 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 A = B = C = 3 2 2 1 3 2 2 1 6 12 7 7 0 0 0 5 0 0 0 5 0 25 0 0 A H x B H 2 2 3 1 + 0 0 0 0 6 10 7 2 0 0 0 0

  26. Example 3 4 2 1 2 1 0 0 2 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 A = B = C = 3 2 2 1 3 2 2 1 6 12 7 7 0 0 0 5 0 0 0 5 0 25 0 0 A H x B H 2 2 3 1 + 0 0 0 0 6 10 7 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 A L = B L = A L x B L = 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 5 0 0 0 25

  27. Example 3 4 2 1 2 1 0 0 2 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 A = B = C = 3 2 2 1 3 2 2 1 6 12 7 7 0 0 0 5 0 0 0 5 0 25 0 0 A H x B H A L x B L 2 2 0 0 0 0 3 1 + + 0 0 0 0 0 1 0 0 6 10 7 2 0 0 0 0 0 0 0 0 0 25 0 0

  28. Example 3 4 2 1 2 1 0 0 2 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 A = B = C = 3 2 2 1 3 2 2 1 6 12 7 7 0 0 0 5 0 0 0 5 0 25 0 0 A H x B H A L x B L 2 2 0 0 0 0 3 1 + + 0 0 0 0 0 1 0 0 6 10 7 2 0 0 0 0 0 0 0 0 0 25 0 0 2 1 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 A H = B L = A H x B L = 3 2 2 1 0 0 0 0 0 2 0 5 0 0 0 0 0 0 0 5 0 0 0 0

  29. Example 3 4 2 1 2 1 0 0 2 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 A = B = C = 3 2 2 1 3 2 2 1 6 12 7 7 0 0 0 5 0 0 0 5 0 25 0 0 A H x B H A L x B L A H x B L 0 2 0 0 2 2 0 0 0 0 3 1 + + + 0 0 0 0 0 0 0 0 0 1 0 0 6 10 7 2 0 0 0 0 0 2 0 5 0 0 0 0 0 25 0 0 0 0 0 0

  30. Example 3 4 2 1 2 1 0 0 2 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 A = B = C = 3 2 2 1 3 2 2 1 6 12 7 7 0 0 0 5 0 0 0 5 0 25 0 0 A H x B H A L x B L A H x B L 0 2 0 0 2 2 0 0 0 0 3 1 + + + 0 0 0 0 0 0 0 0 0 1 0 0 6 10 7 2 0 0 0 0 0 2 0 5 0 0 0 0 0 25 0 0 0 0 0 0 0 0 2 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 A L = B H = A L x B H = 0 0 0 0 3 2 2 1 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0

  31. Example 3 4 2 1 2 1 0 0 2 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 A = B = C = 3 2 2 1 3 2 2 1 6 12 7 7 0 0 0 5 0 0 0 5 0 25 0 0 A H x B H A L x B L A H x B L A L x B H 0 0 0 2 0 0 0 0 2 2 0 0 0 0 3 1 + + + = 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 6 10 7 2 0 0 0 0 0 2 0 5 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0

  32. Example 3 4 2 1 2 1 0 0 2 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 A = B = C = 3 2 2 1 3 2 2 1 6 12 7 7 0 0 0 5 0 0 0 5 0 25 0 0 A H x B H A L x B L A H x B L A L x B H 3 4 2 1 0 0 0 2 0 0 0 0 2 2 0 0 0 0 3 1 + + + = 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 6 10 7 2 0 0 0 0 0 2 0 5 0 0 0 0 6 12 7 7 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 25 0 0

  33. Phase I • CPU, GPU :: Identify thresholds t A , t B and the matrices A H , A L , B H , B L . A =

  34. Phase I • CPU, GPU :: Identify thresholds t A , t B and the matrices A H , A L , B H , B L . t A A =

  35. Phase I • CPU, GPU :: Identify thresholds t A , t B and the matrices A H , A L , B H , B L . t A A = A =

  36. Phase I • CPU, GPU :: Identify thresholds t A , t B and the matrices A H , A L , B H , B L . t A A H A = A =

  37. Phase I • CPU, GPU :: Identify thresholds t A , t B and the matrices A H , A L , B H , B L . t A A H A = A = A L

  38. Phase II • In parallel, CPU :: Compute A H * B H . GPU :: Compute A L * B L .

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend