Skip to content

Commit 8eab55b

Browse files
author
Peng
committed
fix typo
1 parent 206a023 commit 8eab55b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mllib/src/main/scala/org/apache/spark/mllib/recommendation/MatrixFactorizationModel.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ object MatrixFactorizationModel extends Loader[MatrixFactorizationModel] {
280280
/**
281281
* Use dot to replace blas 3 gemm is the key approach to improve efficiency.
282282
* By this change, we can get the topK elements of each block to reduce the GC time.
283-
* Comparing with BLAS.dot, hand writing dot is high efficiency.
283+
* Comparing with BLAS.dot, hand-written dot is high efficiency.
284284
*/
285285
val ratings = srcBlocks.cartesian(dstBlocks).flatMap { case (srcIter, dstIter) =>
286286
val m = srcIter.size

0 commit comments

Comments
 (0)