You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by sh...@apache.org on 2015/12/12 10:03:43 UTC

incubator-systemml git commit: Minor fix in new fused log_nz rewrite

Repository: incubator-systemml
Updated Branches:
  refs/heads/master d8674f2cf -> db3ab8c82


Minor fix in new fused log_nz rewrite

Adding appropriate lop OperationType for Hop OpOp1.LOG_NZ 

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

Branch: refs/heads/master
Commit: db3ab8c82977fd8b0e8189f1207d5f3fa0949597
Parents: d8674f2
Author: shirisht <sh...@gmail.com>
Authored: Sat Dec 12 01:02:45 2015 -0800
Committer: shirisht <sh...@gmail.com>
Committed: Sat Dec 12 01:02:45 2015 -0800

----------------------------------------------------------------------
 src/main/java/org/apache/sysml/hops/Hop.java | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/db3ab8c8/src/main/java/org/apache/sysml/hops/Hop.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/sysml/hops/Hop.java b/src/main/java/org/apache/sysml/hops/Hop.java
index ca798ce..4f520e4 100644
--- a/src/main/java/org/apache/sysml/hops/Hop.java
+++ b/src/main/java/org/apache/sysml/hops/Hop.java
@@ -1247,6 +1247,7 @@ public abstract class Hop
 		HopsOpOp1LopsU.put(OpOp1.SPROP, org.apache.sysml.lops.Unary.OperationTypes.SPROP);
 		HopsOpOp1LopsU.put(OpOp1.SIGMOID, org.apache.sysml.lops.Unary.OperationTypes.SIGMOID);
 		HopsOpOp1LopsU.put(OpOp1.SELP, org.apache.sysml.lops.Unary.OperationTypes.SELP);
+		HopsOpOp1LopsU.put(OpOp1.LOG_NZ, org.apache.sysml.lops.Unary.OperationTypes.LOG_NZ);
 	}
 
 	protected static final HashMap<Hop.OpOp1, org.apache.sysml.lops.UnaryCP.OperationTypes> HopsOpOp1LopsUS;