You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by de...@apache.org on 2015/12/18 01:31:44 UTC

svn commit: r1720707 - in /incubator/systemml/site: assets/themes/apache/css/style.css feed.xml index.html

Author: deron
Date: Fri Dec 18 00:31:43 2015
New Revision: 1720707

URL: http://svn.apache.org/viewvc?rev=1720707&view=rev
Log:
Add exec to Spark and Hadoop invocations

Modified:
    incubator/systemml/site/assets/themes/apache/css/style.css
    incubator/systemml/site/feed.xml
    incubator/systemml/site/index.html

Modified: incubator/systemml/site/assets/themes/apache/css/style.css
URL: http://svn.apache.org/viewvc/incubator/systemml/site/assets/themes/apache/css/style.css?rev=1720707&r1=1720706&r2=1720707&view=diff
==============================================================================
--- incubator/systemml/site/assets/themes/apache/css/style.css (original)
+++ incubator/systemml/site/assets/themes/apache/css/style.css Fri Dec 18 00:31:43 2015
@@ -354,3 +354,7 @@ and (max-width : 1024px) {
       padding-right: 0;
   }
 }
+
+code {
+  font-family: Menlo,Consolas,"Courier New",monospace;
+}
\ No newline at end of file

Modified: incubator/systemml/site/feed.xml
URL: http://svn.apache.org/viewvc/incubator/systemml/site/feed.xml?rev=1720707&r1=1720706&r2=1720707&view=diff
==============================================================================
--- incubator/systemml/site/feed.xml (original)
+++ incubator/systemml/site/feed.xml Fri Dec 18 00:31:43 2015
@@ -6,8 +6,8 @@
 </description>
     <link>http://yourdomain.com/</link>
     <atom:link href="http://yourdomain.com/feed.xml" rel="self" type="application/rss+xml"/>
-    <pubDate>Thu, 17 Dec 2015 15:21:46 -0800</pubDate>
-    <lastBuildDate>Thu, 17 Dec 2015 15:21:46 -0800</lastBuildDate>
+    <pubDate>Thu, 17 Dec 2015 16:30:31 -0800</pubDate>
+    <lastBuildDate>Thu, 17 Dec 2015 16:30:31 -0800</lastBuildDate>
     <generator>Jekyll v2.5.3</generator>
     
       <item>

Modified: incubator/systemml/site/index.html
URL: http://svn.apache.org/viewvc/incubator/systemml/site/index.html?rev=1720707&r1=1720706&r2=1720707&view=diff
==============================================================================
--- incubator/systemml/site/index.html (original)
+++ incubator/systemml/site/index.html Fri Dec 18 00:31:43 2015
@@ -115,13 +115,13 @@
 <p>SystemML computations can be executed in a variety of different modes.  To begin with, SystemML can be operated in Standalone mode on a single machine, allowing data scientists to develop algorithms locally without need of a distributed cluster.  Algorithms can be distributed across Hadoop or Spark.  This flexibility allows the utilization of an organization’s existing resources and expertise.  In addition, SystemML can be operated via Java and Scala.  SystemML also features an embedded API for scoring models.</p>
 
 <div class="highlight"><pre><code class="language-sh" data-lang="sh">// Standalone
-./bin/systemml test.dml 
+./bin/systemml test.dml
 
 // Spark
-<span class="nv">$SPARK_HOME</span>/bin/spark-submit SystemML.jar -f test.dml
+<span class="nv">$SPARK_HOME</span>/bin/spark-submit SystemML.jar -f test.dml -exec hybrid_spark
 
 // Hadoop MapReduce
-hadoop jar SystemML.jar -f test.dml</code></pre></div>
+hadoop jar SystemML.jar -f test.dml -exec hybrid</code></pre></div>
 
 <h3 id="automatic-optimization">Automatic Optimization</h3>