Github user mengxr commented on a diff in the pull request:

    https://github.com/apache/spark/pull/2294#discussion_r17709093
  
    --- Diff: 
mllib/src/test/scala/org/apache/spark/mllib/linalg/BLASSuite.scala ---
    @@ -126,4 +126,116 @@ class BLASSuite extends FunSuite {
           }
         }
       }
    +
    +  test("gemm") {
    +
    +    val dA =
    +      new DenseMatrix(4, 3, Array(0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 
0.0, 0.0, 0.0, 3.0))
    +    val sA = new SparseMatrix(4, 3, Array(0, 1, 3, 4), Array(1, 0, 2, 3), 
Array(1.0, 2.0, 1.0, 3.0))
    +
    +    val B = new DenseMatrix(3, 2, Array(1.0, 0.0, 0.0, 0.0, 2.0, 1.0))
    +    val expected = new DenseMatrix(4, 2, Array(0.0, 1.0, 0.0, 0.0, 4.0, 
0.0, 2.0, 3.0))
    +
    +    assert(dA times B ~== expected absTol 1e-15)
    +    assert(sA times B ~== expected absTol 1e-15)
    +
    +    val C1 = new DenseMatrix(4, 2, Array(1.0, 0.0, 2.0, 1.0, 0.0, 0.0, 
1.0, 0.0))
    +    val C2 = C1.copy
    +    val C3 = C1.copy
    +    val C4 = C1.copy
    +    val C5 = C1.copy
    +    val C6 = C1.copy
    +    val C7 = C1.copy
    +    val C8 = C1.copy
    +    val expected2 = new DenseMatrix(4, 2, Array(2.0, 1.0, 4.0, 2.0, 4.0, 
0.0, 4.0, 3.0))
    +    val expected3 = new DenseMatrix(4, 2, Array(2.0, 2.0, 4.0, 2.0, 8.0, 
0.0, 6.0, 6.0))
    +
    +    gemm(1.0, dA, B, 2.0, C1)
    +    gemm(1.0, sA, B, 2.0, C2)
    +    gemm(2.0, dA, B, 2.0, C3)
    +    gemm(2.0, sA, B, 2.0, C4)
    +    assert(C1 ~== expected2 absTol 1e-15)
    +    assert(C2 ~== expected2 absTol 1e-15)
    +    assert(C3 ~== expected3 absTol 1e-15)
    +    assert(C4 ~== expected3 absTol 1e-15)
    +
    +    withClue("columns of A don't match the rows of B") {
    +      intercept[Exception] {
    +        gemm(true, false, 1.0, dA, B, 2.0, C1)
    +      }
    +    }
    +
    +    val dAT =
    +      new DenseMatrix(3, 4, Array(0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 
0.0, 0.0, 0.0, 3.0))
    +    val sAT =
    +      new SparseMatrix(3, 4, Array(0, 1, 2, 3, 4), Array(1, 0, 1, 2), 
Array(2.0, 1.0, 1.0, 3.0))
    +
    +    assert(dAT transposeTimes B ~== expected absTol 1e-15)
    +    assert(sAT transposeTimes B ~== expected absTol 1e-15)
    +
    +    gemm(true, false, 1.0, dAT, B, 2.0, C5)
    +    gemm(true, false, 1.0, sAT, B, 2.0, C6)
    +    gemm(true, false, 2.0, dAT, B, 2.0, C7)
    +    gemm(true, false, 2.0, sAT, B, 2.0, C8)
    +    assert(C5 ~== expected2 absTol 1e-15)
    +    assert(C6 ~== expected2 absTol 1e-15)
    +    assert(C7 ~== expected3 absTol 1e-15)
    +    assert(C8 ~== expected3 absTol 1e-15)
    +
    --- End diff --
    
    remove extra empty line


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to