Respondida Matrix Market

  • martes, 17 de enero de 2012 16:51
     
     

    Hello there

    I want to know what is the best way to load a matrix market format matrix into Sho's DoubleArray?

    The matrix is pretty large (5,000 * 50,000) but however sparse.

    I tried reading the file line by line and indexing the DoubleArray but it takes almost 3 hours, is there a better way?

     

    Thanks in advance.

Todas las respuestas

  • lunes, 13 de febrero de 2012 6:53
     
     Respondida

    I use this on a 2 million by 10 million matrix with .6 billion nonzeroes

     this.shoSparse = new ShoNS.Array.SparseDoubleArray(filename, ShoNS.Array.SparseFileFormat.MM, true, ShoNS.Array.SparseStorageFormat.CSR);

    Takes about 20 minutes

    • Marcado como respuesta Menna M martes, 03 de abril de 2012 16:08
    •