TableOfContents(4)

This effort is still a "work in progress". Please feel free to add comments. BRBut please make them stand out by bolding or underlining them. – Edward J. Yoon


Why sparse matrices?

ScaLAPACK handles only dense and banded matrices, But, Hama will be handles sparse matrices.

Storage of sparse matrices

I choosed HBase(sparse matrix storage) to reduce storage and complexity.

  1  0  0       (1,1) = 1           
  0  3  1       (2,2) = 3
  0  0  0       (2,3) = 1

Sparse Functions