You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by na...@apache.org on 2017/06/28 00:15:34 UTC

systemml git commit: [HOTFIX] for SYSTEMML-1731

Repository: systemml
Updated Branches:
  refs/heads/master 2dc441f52 -> 9f808c43e


[HOTFIX] for SYSTEMML-1731


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

Branch: refs/heads/master
Commit: 9f808c43e380a90f814f2e5b7a78397edd1bbb90
Parents: 2dc441f
Author: Nakul Jindal <na...@gmail.com>
Authored: Tue Jun 27 17:14:41 2017 -0700
Committer: Nakul Jindal <na...@gmail.com>
Committed: Tue Jun 27 17:14:41 2017 -0700

----------------------------------------------------------------------
 .../org/apache/sysml/test/gpu/ScalarMatrixElementwiseOpTests.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/systemml/blob/9f808c43/src/test/java/org/apache/sysml/test/gpu/ScalarMatrixElementwiseOpTests.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/sysml/test/gpu/ScalarMatrixElementwiseOpTests.java b/src/test/java/org/apache/sysml/test/gpu/ScalarMatrixElementwiseOpTests.java
index 58293d6..c58365a 100644
--- a/src/test/java/org/apache/sysml/test/gpu/ScalarMatrixElementwiseOpTests.java
+++ b/src/test/java/org/apache/sysml/test/gpu/ScalarMatrixElementwiseOpTests.java
@@ -136,7 +136,7 @@ public class ScalarMatrixElementwiseOpTests extends GPUTests {
 		List<Object> cpuOut = runOnCPU(spark, scriptStr, inputs, Arrays.asList(output));
 		List<Object> gpuOut = runOnGPU(spark, scriptStr, inputs, Arrays.asList(output));
 		//assertHeavyHitterPresent(heavyHitterOpCode);
-		assertEqualMatrices ((Matrix)cpuOut.get(0), (Matrix)gpuOut.get(0));
+		assertEqualObjects (cpuOut.get(0), gpuOut.get(0));
 	}
 
 	@Test