Repository: systemml
Updated Branches:
  refs/heads/master 54f5ea975 -> 6ca9be1f5


[SYSTEMML-1325] Fix a performance bug that causes rmvar to be delayed

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

Branch: refs/heads/master
Commit: 6ca9be1f5c4193b5a19522c039172f932299681d
Parents: 54f5ea9
Author: Niketan Pansare <[email protected]>
Authored: Tue Nov 27 02:36:53 2018 +0530
Committer: Niketan Pansare <[email protected]>
Committed: Tue Nov 27 02:36:53 2018 +0530

----------------------------------------------------------------------
 src/main/java/org/apache/sysml/hops/DnnOp.java | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/systemml/blob/6ca9be1f/src/main/java/org/apache/sysml/hops/DnnOp.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/sysml/hops/DnnOp.java 
b/src/main/java/org/apache/sysml/hops/DnnOp.java
index cc94111..a948eed 100644
--- a/src/main/java/org/apache/sysml/hops/DnnOp.java
+++ b/src/main/java/org/apache/sysml/hops/DnnOp.java
@@ -334,7 +334,6 @@ public class DnnOp extends MultiThreadedHop
                
                // 
---------------------------------------------------------------
                // Add input/output for parent lops of convolutionLop
-               lhsInputLop.addOutput(convolutionLop);
                if(optionalRhsInputLop != null) {
                        convolutionLop.addInput(optionalRhsInputLop);
                        optionalRhsInputLop.addOutput(convolutionLop);

Reply via email to