You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by bu...@apache.org on 2015/04/16 02:56:35 UTC

svn commit: r947811 - in /websites/staging/mahout/trunk/content: ./ users/environment/out-of-core-reference.html

Author: buildbot
Date: Thu Apr 16 00:56:35 2015
New Revision: 947811

Log:
Staging update by buildbot for mahout

Modified:
    websites/staging/mahout/trunk/content/   (props changed)
    websites/staging/mahout/trunk/content/users/environment/out-of-core-reference.html

Propchange: websites/staging/mahout/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Apr 16 00:56:35 2015
@@ -1 +1 @@
-1673982
+1673983

Modified: websites/staging/mahout/trunk/content/users/environment/out-of-core-reference.html
==============================================================================
--- websites/staging/mahout/trunk/content/users/environment/out-of-core-reference.html (original)
+++ websites/staging/mahout/trunk/content/users/environment/out-of-core-reference.html Thu Apr 16 00:56:35 2015
@@ -386,7 +386,7 @@ val inCoreC: Matrix = inCoreA %*% drmB
 </pre></div>
 
 
-<p>Note: Spark associativity change (e.g. A +: inCoreB means B.leftMultiply(A), same as when both arguments are in core). Whenever operator arguments include both in-core and out-of-core arguments, the operator can only be associated with the out-of-core (DRM) argument to support the distributed implementation.</p>
+<p>Note: Spark associativity change (e.g. A *: inCoreB means B.leftMultiply(A), same as when both arguments are in core). Whenever operator arguments include both in-core and out-of-core arguments, the operator can only be associated with the out-of-core (DRM) argument to support the distributed implementation.</p>
 <p><strong>Matrix-matrix multiplication %*%</strong>:</p>
 <p><code>\(\mathbf{M}=\mathbf{AB}\)</code></p>
 <div class="codehilite"><pre><span class="n">A</span> <span class="c">%*% B</span>