You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by mb...@apache.org on 2017/08/06 06:25:48 UTC

systemml git commit: [SYSTEMML-1663] Enable elementwise multiplication tests

Repository: systemml
Updated Branches:
  refs/heads/master 7b4a3418a -> 257bf3ed0


[SYSTEMML-1663] Enable elementwise multiplication tests

These were meant to be enabled with the completion of SYSTEMML-1663

Closes #602.


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

Branch: refs/heads/master
Commit: 257bf3ed006022b133bf7a2359d3b0cb2a68950b
Parents: 7b4a341
Author: Dylan Hutchison <dh...@cs.washington.edu>
Authored: Sat Aug 5 23:23:37 2017 -0700
Committer: Matthias Boehm <mb...@gmail.com>
Committed: Sat Aug 5 23:23:37 2017 -0700

----------------------------------------------------------------------
 .../misc/RewriteElementwiseMultChainOptimizationTest.java          | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/systemml/blob/257bf3ed/src/test/java/org/apache/sysml/test/integration/functions/misc/RewriteElementwiseMultChainOptimizationTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/sysml/test/integration/functions/misc/RewriteElementwiseMultChainOptimizationTest.java b/src/test/java/org/apache/sysml/test/integration/functions/misc/RewriteElementwiseMultChainOptimizationTest.java
index b16fa3e..82208eb 100644
--- a/src/test/java/org/apache/sysml/test/integration/functions/misc/RewriteElementwiseMultChainOptimizationTest.java
+++ b/src/test/java/org/apache/sysml/test/integration/functions/misc/RewriteElementwiseMultChainOptimizationTest.java
@@ -61,7 +61,6 @@ public class RewriteElementwiseMultChainOptimizationTest extends AutomatedTestBa
 		testRewriteMatrixMultChainOp(TEST_NAME1, false, ExecType.SPARK);
 	}
 	
-	/* TODO enable together with RewriteElementwiseMultChainOptimization
 	@Test
 	public void testMatrixMultChainOptRewritesCP() {
 		testRewriteMatrixMultChainOp(TEST_NAME1, true, ExecType.CP);
@@ -71,7 +70,6 @@ public class RewriteElementwiseMultChainOptimizationTest extends AutomatedTestBa
 	public void testMatrixMultChainOptRewritesSP() {
 		testRewriteMatrixMultChainOp(TEST_NAME1, true, ExecType.SPARK);
 	}
-	*/
 
 	private void testRewriteMatrixMultChainOp(String testname, boolean rewrites, ExecType et)
 	{