This is an automated email from the ASF dual-hosted git repository.
mboehm7 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemml.git
The following commit(s) were added to refs/heads/master by this push:
new 3fd8769 [MINOR] Fix opcodes for lineage-based reuse (corrupted by
rework)
3fd8769 is described below
commit 3fd87695591bdba30964db995066472d148b252e
Author: Matthias Boehm <[email protected]>
AuthorDate: Fri Apr 10 18:39:39 2020 +0200
[MINOR] Fix opcodes for lineage-based reuse (corrupted by rework)
---
src/main/java/org/apache/sysds/runtime/lineage/LineageCacheConfig.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/sysds/runtime/lineage/LineageCacheConfig.java
b/src/main/java/org/apache/sysds/runtime/lineage/LineageCacheConfig.java
index 75a305a..e130cfa 100644
--- a/src/main/java/org/apache/sysds/runtime/lineage/LineageCacheConfig.java
+++ b/src/main/java/org/apache/sysds/runtime/lineage/LineageCacheConfig.java
@@ -30,7 +30,7 @@ import java.util.ArrayList;
public class LineageCacheConfig {
private static final String[] REUSE_OPCODES = new String[] {
- "tmm", "ba+*", "*", "/", "+", "nrow", "ncol",
+ "tsmm", "ba+*", "*", "/", "+", "nrow", "ncol",
"rightIndex", "leftIndex", "groupedagg", "r'", "solve", "spoof"
};