forked from apache/spark
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename m/n to numRows/numCols for local matrix
add tests for matrices
- Loading branch information
Showing
5 changed files
with
112 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
mllib/src/test/scala/org/apache/spark/mllib/linalg/BreezeMatrixConversionSuite.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.spark.mllib.linalg | ||
|
||
import org.scalatest.FunSuite | ||
|
||
import breeze.linalg.{DenseMatrix => BDM} | ||
|
||
class BreezeMatrixConversionSuite extends FunSuite { | ||
test("dense matrix to breeze") { | ||
val mat = Matrices.dense(3, 2, Array(0.0, 1.0, 2.0, 3.0, 4.0, 5.0)) | ||
val breeze = mat.toBreeze.asInstanceOf[BDM[Double]] | ||
assert(breeze.rows === mat.numRows) | ||
assert(breeze.cols === mat.numCols) | ||
assert(breeze.data.eq(mat.asInstanceOf[DenseMatrix].values), "should not copy data") | ||
} | ||
|
||
test("dense breeze matrix to matrix") { | ||
val breeze = new BDM[Double](3, 2, Array(0.0, 1.0, 2.0, 3.0, 4.0, 5.0)) | ||
val mat = Matrices.fromBreeze(breeze).asInstanceOf[DenseMatrix] | ||
assert(mat.numRows === breeze.rows) | ||
assert(mat.numCols === breeze.cols) | ||
assert(mat.values.eq(breeze.data), "should not copy data") | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
mllib/src/test/scala/org/apache/spark/mllib/linalg/MatricesSuite.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.spark.mllib.linalg | ||
|
||
import org.scalatest.FunSuite | ||
|
||
class MatricesSuite extends FunSuite { | ||
test("dense matrix construction") { | ||
val m = 3 | ||
val n = 2 | ||
val values = Array(0.0, 1.0, 2.0, 3.0, 4.0, 5.0) | ||
val mat = Matrices.dense(m, n, values).asInstanceOf[DenseMatrix] | ||
assert(mat.numRows === m) | ||
assert(mat.numCols === n) | ||
assert(mat.values.eq(values), "should not copy data") | ||
assert(mat.toArray.eq(values), "toArray should not copy data") | ||
} | ||
|
||
test("dense matrix construction with wrong dimension") { | ||
intercept[RuntimeException] { | ||
Matrices.dense(3, 2, Array(0.0, 1.0, 2.0)) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters