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 2017/07/13 01:37:47 UTC

systemml git commit: [SYSTEMML-1764] Fix cbind value in AppendGAlignedSP constructor

Repository: systemml
Updated Branches:
  refs/heads/master 0226899e3 -> 4e3ebcaeb


[SYSTEMML-1764] Fix cbind value in AppendGAlignedSP constructor

Set the _cbind field to the value of the cbind parameter in the AppendGAlignedSP
constructor.

Closes #571.


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

Branch: refs/heads/master
Commit: 4e3ebcaeb8e4679f65d0caf755cc3eec68c0da3c
Parents: 0226899
Author: Deron Eriksson <de...@apache.org>
Authored: Wed Jul 12 18:35:59 2017 -0700
Committer: Deron Eriksson <de...@apache.org>
Committed: Wed Jul 12 18:35:59 2017 -0700

----------------------------------------------------------------------
 src/main/java/org/apache/sysml/lops/AppendGAlignedSP.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/systemml/blob/4e3ebcae/src/main/java/org/apache/sysml/lops/AppendGAlignedSP.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/sysml/lops/AppendGAlignedSP.java b/src/main/java/org/apache/sysml/lops/AppendGAlignedSP.java
index 0222702..ecd3192 100644
--- a/src/main/java/org/apache/sysml/lops/AppendGAlignedSP.java
+++ b/src/main/java/org/apache/sysml/lops/AppendGAlignedSP.java
@@ -36,7 +36,7 @@ public class AppendGAlignedSP extends Lop
 		super(Lop.Type.Append, dt, vt);		
 		init(input1, input2, input3, dt, vt);
 		
-		_cbind = true;
+		_cbind = cbind;
 	}
 	
 	public void init(Lop input1, Lop input2, Lop input3, DataType dt, ValueType vt)