[incubator-systemml] Git Push Summary

2017-02-20 Thread acs_s
Repository: incubator-systemml
Updated Branches:
  refs/heads/branch-0.13 [created] 07f26ca4e


incubator-systemml git commit: [SYSTEMML-1338] MLContext warning for previous Spark version

2017-02-20 Thread deron
Repository: incubator-systemml
Updated Branches:
  refs/heads/master 479819988 -> 230bc63c7


[SYSTEMML-1338] MLContext warning for previous Spark version

Log a warning rather than throw an exception to the user if the
user is using the MLContext API with a version of Spark earlier
than the recommended SystemML minimum Spark version.


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/230bc63c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/230bc63c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/230bc63c

Branch: refs/heads/master
Commit: 230bc63c7587440a1608fc014943b5a610b1d7ff
Parents: 4798199
Author: Deron Eriksson 
Authored: Mon Feb 20 15:19:58 2017 -0800
Committer: Deron Eriksson 
Committed: Mon Feb 20 15:19:58 2017 -0800

--
 .../java/org/apache/sysml/api/mlcontext/MLContext.java  | 12 +++-
 1 file changed, 11 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/230bc63c/src/main/java/org/apache/sysml/api/mlcontext/MLContext.java
--
diff --git a/src/main/java/org/apache/sysml/api/mlcontext/MLContext.java 
b/src/main/java/org/apache/sysml/api/mlcontext/MLContext.java
index 2a554d8..3fe4dd0 100644
--- a/src/main/java/org/apache/sysml/api/mlcontext/MLContext.java
+++ b/src/main/java/org/apache/sysml/api/mlcontext/MLContext.java
@@ -26,6 +26,7 @@ import java.util.List;
 import java.util.Map;
 import java.util.Set;
 
+import org.apache.log4j.Logger;
 import org.apache.spark.SparkContext;
 import org.apache.spark.api.java.JavaSparkContext;
 import org.apache.sysml.api.DMLScript;
@@ -61,6 +62,11 @@ public class MLContext {
public static final String SYSTEMML_MINIMUM_SPARK_VERSION = "2.1.0";
 
/**
+* Logger for MLContext
+*/
+   public static Logger log = Logger.getLogger(MLContext.class);
+
+   /**
 * SparkContext object.
 */
private SparkContext sc = null;
@@ -211,7 +217,11 @@ public class MLContext {
 */
private void initMLContext(SparkContext sc, boolean monitorPerformance) 
{
 
-   MLContextUtil.verifySparkVersionSupported(sc);
+   try {
+   MLContextUtil.verifySparkVersionSupported(sc);
+   } catch (MLContextException e) {
+   log.warn("Apache Spark " + 
SYSTEMML_MINIMUM_SPARK_VERSION + " or above is recommended for SystemML " + 
this.info().version());
+   }
 
if (activeMLContext == null) {
System.out.println(MLContextUtil.welcomeMessage());



svn commit: r18412 - /dev/incubator/systemml/0.13.0-incubating-rc1/

2017-02-20 Thread acs_s
Author: acs_s
Date: Mon Feb 20 22:04:36 2017
New Revision: 18412

Log:
Apache SystemML 0.13.0-incubating-rc1

Added:
dev/incubator/systemml/0.13.0-incubating-rc1/

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.tgz 
  (with props)

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.tgz.asc

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.tgz.md5

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.tgz.sha

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.zip 
  (with props)

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.zip.asc

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.zip.md5

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.zip.sha

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-python.tgz
   (with props)

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-python.tgz.asc

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-python.tgz.md5

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-python.tgz.sha

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-src.tgz 
  (with props)

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-src.tgz.asc

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-src.tgz.md5

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-src.tgz.sha

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-src.zip 
  (with props)

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-src.zip.asc

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-src.zip.md5

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-src.zip.sha

Added: 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.tgz
==
Binary file - no diff available.

Propchange: 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.tgz
--
svn:mime-type = application/octet-stream

Added: 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.tgz.asc
==
--- 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.tgz.asc
 (added)
+++ 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.tgz.asc
 Mon Feb 20 22:04:36 2017
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJYq2byAAoJEEzdnt5TueFPBD4P/Aovg5P4bXIlz50d8W5pIPWr
+BTTIcVogxrctv72B6Q3I77O5MQ80IfsNP1MD/NHC9bDVdLoPmYuGq7BbFbyKr0dG
+yufGDGORbqFXmFIk2CrKlNveFIrZHElSZ+oXggvA2BuRxz5kiZrpzixzfc4ZhOzj
+97ZBiN4q/jHibkVKOlHFGB2MV/j/XH6cZQ2+UMkx1L0Ru9X4fxld/vhjXWF1TkXW
+5ZzxM1EgjYYeYWZdok4i3kxa0reb2Su3YO5qdrn3frQREvvmYCut5PE0GdyzyVV+
+NpAhvtHoXVbC2ESD5Gf/AxJ8idxBC/wIT6nVUDA1Y+HQIr5JgjnArQRrCym+sZyz
+kKqNSJqm/3xD1c4kLW8OKjw2XGv74joUfOIZgR7ANX3rQlcpKFWbdr4n5Ozwianc
+wRO8TGJMDAyjVzFwxxCFC39161ljU6YoKVX/k2MzNozZg7jTnCzgFSgD6LXrt9PV
+MmdIsITHcJUViavpTWiw6DzeJ9dtk1Gni/fHngD/bJ0mwJk8u0GnUdxet5tfbOSl
+vY7YJ+QEaKIxRhsAjzHOejyXidUCBgjBXoZNlpHGJzU0Ap0MspYvG72a48UGX31w
+CkLbW4yBZhEh32rMotr/bliDFI6VEQ+nlXpiyu2Z20dO2vlLmt7lz6XsMRGyfnSY
+FzBMcV097157c7e2lKCw
+=2qD8
+-END PGP SIGNATURE-

Added: 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.tgz.md5
==
--- 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.tgz.md5
 (added)
+++ 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.tgz.md5
 Mon Feb 20 22:04:36 2017
@@ -0,0 +1 @@
+87f270a1411776bbd7da43b7efdf673d *systemml-0.13.0-incubating-bin.tgz

Added: 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.tgz.sha
==
--- 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.tgz.sha
 (added)
+++ 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.tgz.sha
 Mon Feb 20 22:04:36 2017
@@ -0,0 +1 @@
+1227299f6414b293cefe9e36233c85a49f9990f1  systemml-0.13.0-incubating-bin.tgz

Added: 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.zip
==
Binary file - no diff available.

Propchange: 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.13.0-incubating-bin.zip
--
   

svn commit: r18410 - in /dev/incubator/systemml: 0.12.0-incubating-rc1/ 0.13.0-incubating-rc1/

2017-02-20 Thread acs_s
Author: acs_s
Date: Mon Feb 20 21:46:45 2017
New Revision: 18410

Log:
Cleanup release files.

Removed:
dev/incubator/systemml/0.12.0-incubating-rc1/
dev/incubator/systemml/0.13.0-incubating-rc1/



incubator-systemml git commit: [MINOR] Javadoc error fixes

2017-02-20 Thread deron
Repository: incubator-systemml
Updated Branches:
  refs/heads/master da5879f53 -> 479819988


[MINOR] Javadoc error fixes


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/47981998
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/47981998
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/47981998

Branch: refs/heads/master
Commit: 479819988454f351885c9126e9d77436aef18da0
Parents: da5879f
Author: Deron Eriksson 
Authored: Mon Feb 20 13:40:19 2017 -0800
Committer: Deron Eriksson 
Committed: Mon Feb 20 13:40:19 2017 -0800

--
 .../org/apache/sysml/hops/ipa/FunctionCallGraph.java|  4 ++--
 .../apache/sysml/hops/ipa/InterProceduralAnalysis.java  |  1 +
 src/main/java/org/apache/sysml/lops/MultipleCP.java | 12 ++--
 .../org/apache/sysml/runtime/io/IOUtilFunctions.java|  2 +-
 .../matrix/data/hadoopfix/DelegatingInputFormat.java|  2 +-
 5 files changed, 11 insertions(+), 10 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/47981998/src/main/java/org/apache/sysml/hops/ipa/FunctionCallGraph.java
--
diff --git a/src/main/java/org/apache/sysml/hops/ipa/FunctionCallGraph.java 
b/src/main/java/org/apache/sysml/hops/ipa/FunctionCallGraph.java
index eed6531..f872c97 100644
--- a/src/main/java/org/apache/sysml/hops/ipa/FunctionCallGraph.java
+++ b/src/main/java/org/apache/sysml/hops/ipa/FunctionCallGraph.java
@@ -91,7 +91,7 @@ public class FunctionCallGraph
/**
 * Indicates if the given function is either directly or indirectly 
recursive.
 * An example of an indirect recursive function is foo2 in the 
following call
-* chain: foo1 -> foo2 -> foo1.  
+* chain: foo1 - foo2 - foo1.
 * 
 * @param fnamespace function namespace
 * @param fname function name
@@ -105,7 +105,7 @@ public class FunctionCallGraph
/**
 * Indicates if the given function is either directly or indirectly 
recursive.
 * An example of an indirect recursive function is foo2 in the 
following call
-* chain: foo1 -> foo2 -> foo1.  
+* chain: foo1 - foo2 - foo1.
 * 
 * @param fkey function key of calling function, null indicates the 
main program
 * @return true if the given function is recursive, false otherwise

http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/47981998/src/main/java/org/apache/sysml/hops/ipa/InterProceduralAnalysis.java
--
diff --git 
a/src/main/java/org/apache/sysml/hops/ipa/InterProceduralAnalysis.java 
b/src/main/java/org/apache/sysml/hops/ipa/InterProceduralAnalysis.java
index caab391..acfd6d2 100644
--- a/src/main/java/org/apache/sysml/hops/ipa/InterProceduralAnalysis.java
+++ b/src/main/java/org/apache/sysml/hops/ipa/InterProceduralAnalysis.java
@@ -897,6 +897,7 @@ public class InterProceduralAnalysis
 * TODO call it after construct lops
 * 
 * @param dmlp the DML program
+* @param fgraph the function call graph
 * @throws LanguageException if LanguageException occurs
 */
public void flagFunctionsForRecompileOnce( DMLProgram dmlp, 
FunctionCallGraph fgraph ) 

http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/47981998/src/main/java/org/apache/sysml/lops/MultipleCP.java
--
diff --git a/src/main/java/org/apache/sysml/lops/MultipleCP.java 
b/src/main/java/org/apache/sysml/lops/MultipleCP.java
index 74a6070..4e2b5a8 100644
--- a/src/main/java/org/apache/sysml/lops/MultipleCP.java
+++ b/src/main/java/org/apache/sysml/lops/MultipleCP.java
@@ -69,17 +69,17 @@ public class MultipleCP extends Lop {
 * 
 * 
 * Execution type (CP, SPARK, etc.)
-* Operand delimiter ()
-* Opcode (printf, etc.)
-* Operand delimiter ()
+* Operand delimiter ()
+* Opcode (printf, etc.)
+* Operand delimiter ()
 * Variable number of inputs, each followed by an operand delimiter
-* ()
+* ()
 * 
 * Input consists of (label  data type  value type
-*  is literal)
+*  is literal)
 * 
 * Output consisting of (label  data type  value
-* type)
+* type)
 * 
 *
 * Example: 

http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/47981998/src/main/java/org/apache/sysml/runtime/io/IOUtilFunctions.java
--
diff --git 

svn commit: r18408 - /dev/incubator/systemml/0.13.0-incubating-rc1/

2017-02-20 Thread acs_s
Author: acs_s
Date: Mon Feb 20 20:15:20 2017
New Revision: 18408

Log:
Apache SystemML 0.13.0-incubating-rc1

Added:
dev/incubator/systemml/0.13.0-incubating-rc1/

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.tgz
   (with props)

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.tgz.asc

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.tgz.md5

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.tgz.sha

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.zip
   (with props)

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.zip.asc

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.zip.md5

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.zip.sha

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-python.tgz
   (with props)

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-python.tgz.asc

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-python.tgz.md5

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-python.tgz.sha

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-src.tgz
   (with props)

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-src.tgz.asc

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-src.tgz.md5

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-src.tgz.sha

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-src.zip
   (with props)

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-src.zip.asc

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-src.zip.md5

dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-src.zip.sha

Added: 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.tgz
==
Binary file - no diff available.

Propchange: 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.tgz
--
svn:mime-type = application/octet-stream

Added: 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.tgz.asc
==
--- 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.tgz.asc
 (added)
+++ 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.tgz.asc
 Mon Feb 20 20:15:20 2017
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJYq03SAAoJEEzdnt5TueFP1nsQAMsVFDstO4cazhyWG6N0wm6B
+Elw9Fm6wdOXlPgaH2lhWdT6x+7whornQOacjUUJ5i6c7OaTNQtmu2Y6J0UsY2sFu
+EiGVPKQP9cHLoIx0awz7hCvB2mc9zUC/wOZ5oiGcpOuSrv4HqpOmD2OnpBzRKewK
+15wZFIdaQrq+PR090tfsM2TXwlf0vGiqT99aU46reVj1IvWKMSzvgNTAdUFqSmBZ
+J7RqKqPgWAT67Rjvb92HCoOMMOWXU+jaMlr/VbvaGm2BDPU4rkqNAdhTMLZra2uQ
+ngAfCfokye3NOglPnw7MrbBLaZiOtusz2nGoVma2SpXi+QodIFM0VhYP3lyt7xia
+vV8Sg+a8k43yrZk5E3D4oRDiTrSQl4YPt868zBWfytGQ4N1qqHSxjtbqpFuthAAQ
+RXSoU8fqXY+mfZbj4WUeE3wnIT01+mjxB52AHV0Of2+JTlsLR6ZNZuOlXNPChfdc
+M3lxohdy+qt+66rLoJtsZpZ/onfmLgQrofZuZY84+Aj98okxUKiiXs9MnYb/WxSJ
+Ve//eg9OC565jngF9jUQmg3BrE7PmIou/qIYdluwzFzy1t30kLjxwtiKZnfXhr0x
+v1qj8N5oHrSUTR1XviFpQ02ftpARpq8MADyBwpEEWC0/h4eWMfdyjahAERuUNCVr
++SAJ+JYmzjRLExhqhX9b
+=pXsN
+-END PGP SIGNATURE-

Added: 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.tgz.md5
==
--- 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.tgz.md5
 (added)
+++ 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.tgz.md5
 Mon Feb 20 20:15:20 2017
@@ -0,0 +1 @@
+9f7ab259e1218b752a8294cb23408963 *systemml-0.14.0-incubating-SNAPSHOT-bin.tgz

Added: 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.tgz.sha
==
--- 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.tgz.sha
 (added)
+++ 
dev/incubator/systemml/0.13.0-incubating-rc1/systemml-0.14.0-incubating-SNAPSHOT-bin.tgz.sha
 Mon Feb 20 20:15:20 2017
@@ -0,0 +1 @@
+e050221bb575092dbeb4580c68dc5a590633cd2f  
systemml-0.14.0-incubating-SNAPSHOT-bin.tgz

Added: 

incubator-systemml git commit: [maven-release-plugin] prepare for next development iteration

2017-02-20 Thread acs_s
Repository: incubator-systemml
Updated Branches:
  refs/heads/master 07f26ca4e -> da5879f53


[maven-release-plugin] prepare for next development iteration


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/da5879f5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/da5879f5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/da5879f5

Branch: refs/heads/master
Commit: da5879f538364dfc9b3365bb6f9e0beaa7344430
Parents: 07f26ca
Author: Arvind Surve 
Authored: Mon Feb 20 12:08:53 2017 -0800
Committer: Arvind Surve 
Committed: Mon Feb 20 12:08:53 2017 -0800

--
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/da5879f5/pom.xml
--
diff --git a/pom.xml b/pom.xml
index e9c2665..e044c05 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@
18

org.apache.systemml
-   0.13.0-incubating
+   0.14.0-incubating-SNAPSHOT
systemml
jar
SystemML
@@ -41,7 +41,7 @@

scm:git:g...@github.com:apache/incubator-systemml

scm:git:https://git-wip-us.apache.org/repos/asf/incubator-systemml

https://git-wip-us.apache.org/repos/asf?p=incubator-systemml.git
-   v0.13.0-incubating-rc1
+   HEAD


JIRA



[incubator-systemml] Git Push Summary

2017-02-20 Thread acs_s
Repository: incubator-systemml
Updated Tags:  refs/tags/v0.13.0-incubating-rc1 [created] a7d7a0bac


incubator-systemml git commit: [maven-release-plugin] prepare release v0.13.0-incubating-rc1

2017-02-20 Thread acs_s
Repository: incubator-systemml
Updated Branches:
  refs/heads/master f780672d1 -> 07f26ca4e


[maven-release-plugin] prepare release v0.13.0-incubating-rc1


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/07f26ca4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/07f26ca4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/07f26ca4

Branch: refs/heads/master
Commit: 07f26ca4ebf9471789c4535053c679f55a2291dc
Parents: f780672
Author: Arvind Surve 
Authored: Mon Feb 20 12:08:38 2017 -0800
Committer: Arvind Surve 
Committed: Mon Feb 20 12:08:38 2017 -0800

--
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/07f26ca4/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 30dbe28..e9c2665 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@
18

org.apache.systemml
-   0.13.0-incubating-SNAPSHOT
+   0.13.0-incubating
systemml
jar
SystemML
@@ -41,7 +41,7 @@

scm:git:g...@github.com:apache/incubator-systemml

scm:git:https://git-wip-us.apache.org/repos/asf/incubator-systemml

https://git-wip-us.apache.org/repos/asf?p=incubator-systemml.git
-   HEAD
+   v0.13.0-incubating-rc1


JIRA



incubator-systemml git commit: [SYSTEMML-1266] Replace README.txt In Release Package

2017-02-20 Thread gweidner
Repository: incubator-systemml
Updated Branches:
  refs/heads/master d48121217 -> edb9e7786


[SYSTEMML-1266] Replace README.txt In Release Package

Closes #401.


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/edb9e778
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/edb9e778
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/edb9e778

Branch: refs/heads/master
Commit: edb9e7786c6fe3a62dbc58a14f7e87aa9af8f67e
Parents: d481212
Author: Glenn Weidner 
Authored: Mon Feb 20 10:36:46 2017 -0800
Committer: Glenn Weidner 
Committed: Mon Feb 20 10:36:46 2017 -0800

--
 src/main/standalone/README.txt | 169 ++--
 1 file changed, 121 insertions(+), 48 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/edb9e778/src/main/standalone/README.txt
--
diff --git a/src/main/standalone/README.txt b/src/main/standalone/README.txt
index af60940..024c679 100644
--- a/src/main/standalone/README.txt
+++ b/src/main/standalone/README.txt
@@ -1,65 +1,138 @@

-Apache SystemML (incubating)

+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
 
-SystemML is now an Apache Incubator project! Please see the Apache SystemML
-(incubating) website at http://systemml.apache.org/ for more information. The
-latest project documentation can be found at the SystemML Documentation website
-on GitHub at http://apache.github.io/incubator-systemml/.
+http://www.apache.org/licenses/LICENSE-2.0
 
-SystemML is a flexible, scalable machine learning system. SystemML's
-distinguishing characteristics are:
+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.
 
-  1. Algorithm customizability via R-like and Python-like languages.
-  2. Multiple execution modes, including Standalone, Spark Batch, Spark
- MLContext, Hadoop Batch, and JMLC.
-  3. Automatic optimization based on data and cluster characteristics to ensure
- both efficiency and scalability.
 
+# Apache SystemML
 

-SystemML in Standalone Mode

+**Documentation:** [SystemML 
Documentation](http://apache.github.io/incubator-systemml/)
+**Mailing List:** [Dev Mailing List](mailto:d...@systemml.incubator.apache.org)
+**Build Status:** [![Build 
Status](https://sparktc.ibmcloud.com/jenkins/job/SystemML-DailyTest/badge/icon)](https://sparktc.ibmcloud.com/jenkins/job/SystemML-DailyTest)
+**Issue Tracker:** [JIRA](https://issues.apache.org/jira/browse/SYSTEMML)
+**Download:** [Download SystemML](http://systemml.apache.org/download.html)
 
-Standalone mode can be run on a single machine in a non-Hadoop environment,
-allowing data scientists to develop algorithms locally without need of a
-distributed cluster. The Standalone release packages all required libraries
-into a single distribution. Standalone mode is not appropriate for large
-datasets.
+**SystemML** is now an **Apache Incubator** project! Please see the [**Apache 
SystemML (incubating)**](http://systemml.apache.org/)
+website for more information. The latest project documentation can be found at 
the
+[**SystemML Documentation**](http://apache.github.io/incubator-systemml/) 
website on GitHub.
 
-OS X and Linux users can use the runStandaloneSystemML.sh script to run in
-Standalone mode, while Windows users can use the runStandaloneSystemML.bat
-script.
+SystemML is a flexible, scalable machine learning system.
+SystemML's distinguishing characteristics are:
 
+  1. **Algorithm customizability via R-like and Python-like languages**.
+  2. **Multiple execution modes**, including Spark MLContext API, Spark Batch, 
Hadoop Batch, Standalone, and JMLC.
+  3. **Automatic optimization** based on data and cluster characteristics to 
ensure both efficiency and scalability.
 

[1/2] incubator-systemml git commit: [SYSTEMML-1191] Create RC builds from branch

2017-02-20 Thread acs_s
Repository: incubator-systemml
Updated Branches:
  refs/heads/master e1cad8a8b -> d48121217


[SYSTEMML-1191] Create RC builds from branch


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/cba7d2f7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/cba7d2f7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/cba7d2f7

Branch: refs/heads/master
Commit: cba7d2f7b3595d2c6d6c2248fedfed157107965f
Parents: e1cad8a
Author: Arvind Surve 
Authored: Mon Feb 20 03:01:34 2017 -0800
Committer: Arvind Surve 
Committed: Mon Feb 20 03:01:34 2017 -0800

--
 dev/release/release-build.sh | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/cba7d2f7/dev/release/release-build.sh
--
diff --git a/dev/release/release-build.sh b/dev/release/release-build.sh
index 64b41f1..9d1f12b 100755
--- a/dev/release/release-build.sh
+++ b/dev/release/release-build.sh
@@ -48,7 +48,7 @@ OPTIONS
 --developmentVersion - Release identifier used for next development cyce
 --releaseRc  - Release RC identifier used when publishing, default 
'rc1'
 --tag- Release Tag identifier used when taging the release, 
default 'v$releaseVersion'
---gitCommitHash  - Release tag or commit to build from, default master HEAD
+--gitCommitHash  - Release tag, branch name or commit to build from, 
default master HEAD
 --dryRun - Dry run only, mostly used for testing.
 
 A GPG passphrase is expected as an environment variable
@@ -61,6 +61,9 @@ release-build.sh --release-prepare 
--releaseVersion="0.11.0-incubating" --develo
 release-build.sh --release-prepare --releaseVersion="0.11.0-incubating" 
--developmentVersion="0.12.0-SNAPSHOT" --releaseRc="rc1" 
--tag="v0.11.0-incubating-rc1"
 release-build.sh --release-prepare --releaseVersion="0.11.0-incubating" 
--developmentVersion="0.12.0-SNAPSHOT" --releaseRc="rc1" 
--tag="v0.11.0-incubating-rc1"  --gitCommitHash="a874b73" --dryRun
 
+# Create 0.12 RC2 builds from branch-0.12 
+./release-build.sh --release-prepare --releaseVersion="0.12.0-incubating" 
--developmentVersion="0.12.1-incubating-SNAPSHOT" --releaseRc="rc2" 
--tag="v0.12.0-incubating-rc2" --gitCommitHash="branch-0.12"
+
 release-build.sh --release-publish --gitCommitHash="a874b73"
 release-build.sh --release-publish --gitTag="v0.11.0-incubating-rc1"
 
@@ -223,7 +226,7 @@ echo "  "
 function checkout_code {
 # Checkout code
 rm -rf $RELEASE_WORK_DIR
-mkdir $RELEASE_WORK_DIR
+mkdir -p $RELEASE_WORK_DIR
 cd $RELEASE_WORK_DIR
 git clone https://git-wip-us.apache.org/repos/asf/incubator-systemml.git
 cd incubator-systemml



incubator-systemml git commit: [SYSTEMML-1250] Binary artifact missing antlr-runtime and wink-json4j classes

2017-02-20 Thread acs_s
Repository: incubator-systemml
Updated Branches:
  refs/heads/branch-0.12 93e6fc208 -> 7884d7142


[SYSTEMML-1250] Binary artifact missing antlr-runtime and wink-json4j classes


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/7884d714
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/7884d714
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/7884d714

Branch: refs/heads/branch-0.12
Commit: 7884d7142cc287a34d29068e8ba726081e247143
Parents: 93e6fc2
Author: Arvind Surve 
Authored: Mon Feb 20 02:51:18 2017 -0800
Committer: Arvind Surve 
Committed: Mon Feb 20 02:51:18 2017 -0800

--
 dev/release/release-build.sh | 14 +-
 1 file changed, 9 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/7884d714/dev/release/release-build.sh
--
diff --git a/dev/release/release-build.sh b/dev/release/release-build.sh
index a118997..4b4d4c3 100755
--- a/dev/release/release-build.sh
+++ b/dev/release/release-build.sh
@@ -48,7 +48,7 @@ OPTIONS
 --developmentVersion - Release identifier used for next development cyce
 --releaseRc  - Release RC identifier used when publishing, default 
'rc1'
 --tag- Release Tag identifier used when taging the release, 
default 'v$releaseVersion'
---gitCommitHash  - Release tag or commit to build from, default master HEAD
+--gitCommitHash  - Release tag, branch name or commit to build from, 
default master HEAD
 --dryRun - Dry run only, mostly used for testing.
 
 A GPG passphrase is expected as an environment variable
@@ -249,21 +249,25 @@ if [[ "$RELEASE_PREPARE" == "true" ]]; then
 
 # Build and prepare the release
 $MVN $PUBLISH_PROFILES release:clean release:prepare $DRY_RUN 
-Darguments="-Dgpg.passphrase=\"$GPG_PASSPHRASE\" -DskipTests" 
-DreleaseVersion="$RELEASE_VERSION" -DdevelopmentVersion="$DEVELOPMENT_VERSION" 
-Dtag="$RELEASE_TAG"
+## Rerunning mvn with clean and package goals, as release:prepare changes 
ordeer for some dependencies like unpack and shade.
+$MVN $PUBLISH_PROFILES clean package $DRY_RUN 
-Darguments="-Dgpg.passphrase=\"$GPG_PASSPHRASE\" -DskipTests" 
-DreleaseVersion="$RELEASE_VERSION" -DdevelopmentVersion="$DEVELOPMENT_VERSION" 
-Dtag="$RELEASE_TAG"
 
 cd $RELEASE_WORK_DIR
 
 if [ -z "$DRY_RUN" ]; then
 svn co $RELEASE_STAGING_LOCATION svn-release-staging
 mkdir -p svn-release-staging/$RELEASE_VERSION-$RELEASE_RC
-cp $RELEASE_WORK_DIR/incubator-systemml/target/systemml-* 
svn-release-staging/$RELEASE_VERSION-$RELEASE_RC/
+cp $RELEASE_WORK_DIR/incubator-systemml/target/systemml-*-bin.* 
svn-release-staging/$RELEASE_VERSION-$RELEASE_RC/
+cp $RELEASE_WORK_DIR/incubator-systemml/target/systemml-*-src.* 
svn-release-staging/$RELEASE_VERSION-$RELEASE_RC/
+cp $RELEASE_WORK_DIR/incubator-systemml/target/systemml-*-python.* 
svn-release-staging/$RELEASE_VERSION-$RELEASE_RC/
 
 cd svn-release-staging/$RELEASE_VERSION-$RELEASE_RC/
 rm -f *.asc
-for i in *.jar *.zip *.gz *.tgz; do gpg --output $i.asc --detach-sig 
--armor $i; done
+for i in *.zip *.tgz; do gpg --output $i.asc --detach-sig --armor $i; 
done
 rm -f *.md5
-for i in *.jar *.zip *.gz *.tgz; do openssl md5 -hex $i | sed 
's/MD5(\([^)]*\))= \([0-9a-f]*\)/\2 *\1/' > $i.md5; done
+for i in *.zip *.tgz; do openssl md5 -hex $i | sed 's/MD5(\([^)]*\))= 
\([0-9a-f]*\)/\2 *\1/' > $i.md5; done
 rm -f *.sha
-for i in *.jar *.zip *.gz *.tgz; do shasum $i > $i.sha; done
+for i in *.zip *.tgz; do shasum $i > $i.sha; done
 
 cd .. #exit $RELEASE_VERSION-$RELEASE_RC/