[
https://issues.apache.org/jira/browse/MAHOUT-1837?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15333013#comment-15333013
]
Hudson commented on MAHOUT-1837:
--------------------------------
FAILURE: Integrated in Mahout-Quality #3379 (See
[https://builds.apache.org/job/Mahout-Quality/3379/])
MAHOUT-1837: Sparse/Dense Matrix analysis for Matrix Multiplication. (apalumbo:
rev d9940489d2f849d36af396d603f6170ab560e505)
* spark/src/main/scala/org/apache/mahout/sparkbindings/drm/package.scala
* spark/src/test/scala/org/apache/mahout/sparkbindings/drm/DrmLikeSuite.scala
* math-scala/src/main/scala/org/apache/mahout/math/scalabindings/package.scala
* math-scala/src/main/scala/org/apache/mahout/math/drm/package.scala
* math-scala/src/test/scala/org/apache/mahout/math/scalabindings/MathSuite.scala
* math-scala/src/main/scala/org/apache/mahout/math/scalabindings/MMul.scala
* spark/src/main/scala/org/apache/mahout/sparkbindings/blas/ABt.scala
> Sparse/Dense Matrix analysis for Matrix Multiplication
> ------------------------------------------------------
>
> Key: MAHOUT-1837
> URL: https://issues.apache.org/jira/browse/MAHOUT-1837
> Project: Mahout
> Issue Type: Improvement
> Components: Math
> Affects Versions: 0.12.0
> Reporter: Andrew Palumbo
> Assignee: Andrew Palumbo
> Fix For: 0.13.0
>
> Attachments: compareDensityTest.ods
>
>
> In matrix multiplication, Sparse Matrices can easily turn dense and bloat
> memory, one fully dense column and one fully dense row can cause a sparse
> %*% sparse operation have a dense result.
> There are two issues here one with a quick Fix and one a bit more involved:
> # in {{ABt.Scala}} use check the `MatrixFlavor` of the combiner and use
> the flavor of the Block as the resulting Sparse or Dense matrix type:
> {code}
> val comb = if (block.getFlavor == MatrixFlavor.SPARSELIKE) {
> new SparseMatrix(prodNCol, block.nrow).t
> } else {
> new DenseMatrix(prodNCol, block.nrow).t
> }
> {code}
> a simlar check needs to be made in the {{blockify}} transformation.
>
> # More importantly, and more involved is to do an actual analysis of the
> resulting matrix data in the in-core {{mmul}} class and use a matrix of the
> appropriate Structure as a result.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)