You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by dbtsai <gi...@git.apache.org> on 2014/12/03 02:22:23 UTC

[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

GitHub user dbtsai opened a pull request:

    https://github.com/apache/spark/pull/3565

    [SPARK-4708][MLLib] Make k-mean runs two/three times faster with dense/sparse sample

    Note that the usage of `breezeSquaredDistance` in 
    `org.apache.spark.mllib.util.MLUtils.fastSquaredDistance` 
    is in the critical path, and breezeSquaredDistance is slow. 
    We should replace it with our own implementation.
    
    Here is the benchmark against mnist8m dataset.
    Before
    DenseVector: 70.04secs
    SparseVector: 59.05secs
    
    With this PR
    DenseVector: 30.58secs
    SparseVector: 21.14secs


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/AlpineNow/spark kmean

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/3565.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #3565
    
----
commit 4554ddd7c8a21b3463e3330b41683b943dd3934f
Author: DB Tsai <db...@alpinenow.com>
Date:   2014-12-03T01:05:06Z

    first commit

commit b185a7778f702eff4dc63f801e8ad27f8f318e3f
Author: DB Tsai <db...@alpinenow.com>
Date:   2014-12-03T01:15:24Z

    cleanup

----


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

Posted by dbtsai <gi...@git.apache.org>.
Github user dbtsai commented on the pull request:

    https://github.com/apache/spark/pull/3565#issuecomment-65340272
  
    Calling BLAS will add very small extra overhead. The benchmark will now be 
    
    DenseVector: 33.19secs
    SparseVector: 22.05secs



---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/3565#issuecomment-65341875
  
      [Test build #24068 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/24068/consoleFull) for   PR 3565 at commit [`08bc068`](https://github.com/apache/spark/commit/08bc068edd49f4e988b8e97a0c11ea57a371dca1).
     * This patch merges cleanly.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/3565#issuecomment-65348268
  
      [Test build #24067 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/24067/consoleFull) for   PR 3565 at commit [`de24662`](https://github.com/apache/spark/commit/de246625a3cd37eed118fe9f5529f07b28adb8cf).
     * This patch **passes all tests**.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:
      * `class VectorWithNorm(val vector: Vector, val norm: Double) extends Serializable `



---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/spark/pull/3565


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/3565#issuecomment-65337947
  
      [Test build #24065 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/24065/consoleFull) for   PR 3565 at commit [`b185a77`](https://github.com/apache/spark/commit/b185a7778f702eff4dc63f801e8ad27f8f318e3f).
     * This patch merges cleanly.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on a diff in the pull request:

    https://github.com/apache/spark/pull/3565#discussion_r21207056
  
    --- Diff: mllib/src/main/scala/org/apache/spark/mllib/clustering/LocalKMeans.scala ---
    @@ -97,8 +95,15 @@ private[mllib] object LocalKMeans extends Logging {
               // Assign center to a random point
               centers(j) = points(rand.nextInt(points.length)).toDense
             } else {
    -          sums(j) /= counts(j)
    -          centers(j) = new BreezeVectorWithNorm(sums(j))
    +          val sum = sums(j)
    +          val count = counts(j)
    +          val size = sum.size
    +          var i = 0
    +          while(i < size) {
    +            sum(i) /= count
    --- End diff --
    
    BLAS.scal


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/3565#issuecomment-65348276
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/24067/
    Test PASSed.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/3565#issuecomment-65340428
  
      [Test build #24067 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/24067/consoleFull) for   PR 3565 at commit [`de24662`](https://github.com/apache/spark/commit/de246625a3cd37eed118fe9f5529f07b28adb8cf).
     * This patch merges cleanly.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/3565#issuecomment-65349616
  
      [Test build #24068 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/24068/consoleFull) for   PR 3565 at commit [`08bc068`](https://github.com/apache/spark/commit/08bc068edd49f4e988b8e97a0c11ea57a371dca1).
     * This patch **passes all tests**.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:
      * `class VectorWithNorm(val vector: Vector, val norm: Double) extends Serializable `



---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/3565#issuecomment-65338049
  
      [Test build #24065 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/24065/consoleFull) for   PR 3565 at commit [`b185a77`](https://github.com/apache/spark/commit/b185a7778f702eff4dc63f801e8ad27f8f318e3f).
     * This patch **fails Scala style tests**.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:
      * `class VectorWithNorm(val vector: Vector, val norm: Double) extends Serializable `



---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on the pull request:

    https://github.com/apache/spark/pull/3565#issuecomment-65391240
  
    LGTM. Merged into master and branch-1.2. Thanks!


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/3565#issuecomment-65349622
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/24068/
    Test PASSed.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on a diff in the pull request:

    https://github.com/apache/spark/pull/3565#discussion_r21207025
  
    --- Diff: mllib/src/main/scala/org/apache/spark/mllib/clustering/KMeans.scala ---
    @@ -212,8 +217,13 @@ class KMeans private (
             while (j < k) {
               val (sum, count) = totalContribs((i, j))
               if (count != 0) {
    -            sum /= count.toDouble
    -            val newCenter = new BreezeVectorWithNorm(sum)
    +            val size = sum.size
    +            var i = 0
    +            while(i < sum.size) {
    +              sum(i) /= count
    --- End diff --
    
    dscal


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/3565#issuecomment-65338051
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/24065/
    Test FAILed.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on a diff in the pull request:

    https://github.com/apache/spark/pull/3565#discussion_r21207018
  
    --- Diff: mllib/src/main/scala/org/apache/spark/mllib/clustering/KMeans.scala ---
    @@ -185,16 +189,17 @@ class KMeans private (
             val thisActiveCenters = bcActiveCenters.value
             val runs = thisActiveCenters.length
             val k = thisActiveCenters(0).length
    -        val dims = thisActiveCenters(0)(0).vector.length
    +        val dims = thisActiveCenters(0)(0).vector.size
     
    -        val sums = Array.fill(runs, k)(BDV.zeros[Double](dims).asInstanceOf[BV[Double]])
    +        val sums = Array.fill(runs, k)(Array.ofDim[Double](dims))
             val counts = Array.fill(runs, k)(0L)
     
             points.foreach { point =>
               (0 until runs).foreach { i =>
                 val (bestCenter, cost) = KMeans.findClosest(thisActiveCenters(i), point)
                 costAccums(i) += cost
    -            sums(i)(bestCenter) += point.vector
    +            val sum = sums(i)(bestCenter)
    +            point.vector.foreachActive((index, value) => sum(index) += value)
    --- End diff --
    
    axpy


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-4708][MLLib] Make k-mean runs two/three...

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on a diff in the pull request:

    https://github.com/apache/spark/pull/3565#discussion_r21206987
  
    --- Diff: mllib/src/main/scala/org/apache/spark/mllib/clustering/KMeans.scala ---
    @@ -170,9 +168,15 @@ class KMeans private (
     
         // Execute iterations of Lloyd's algorithm until all runs have converged
         while (iteration < maxIterations && !activeRuns.isEmpty) {
    -      type WeightedPoint = (BV[Double], Long)
    +      type WeightedPoint = (Array[Double], Long)
           def mergeContribs(p1: WeightedPoint, p2: WeightedPoint): WeightedPoint = {
    -        (p1._1 += p2._1, p1._2 + p2._2)
    +        require(p1._1.size == p2._1.size)
    +        var i = 0
    +        while(i < p1._1.size) {
    --- End diff --
    
    we can use `BLAS.axpy` here.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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