This is an automated email from the ASF dual-hosted git repository.
arnabp20 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/main by this push:
new 4335af346a [MINOR] Disable Lineage Tracing Debug Prints
4335af346a is described below
commit 4335af346af84f9fd80336be4ced00f5bd9c4ead
Author: Arnab Phani <[email protected]>
AuthorDate: Mon Jan 6 16:03:50 2025 +0100
[MINOR] Disable Lineage Tracing Debug Prints
---
.../java/org/apache/sysds/runtime/lineage/LineageRecomputeUtils.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/sysds/runtime/lineage/LineageRecomputeUtils.java
b/src/main/java/org/apache/sysds/runtime/lineage/LineageRecomputeUtils.java
index 1188d65e30..714130b959 100644
--- a/src/main/java/org/apache/sysds/runtime/lineage/LineageRecomputeUtils.java
+++ b/src/main/java/org/apache/sysds/runtime/lineage/LineageRecomputeUtils.java
@@ -81,7 +81,7 @@ import org.apache.sysds.utils.Statistics;
public class LineageRecomputeUtils {
private static final String LVARPREFIX = "lvar";
public static final String LPLACEHOLDER = "IN#";
- private static final boolean DEBUG = true;
+ private static final boolean DEBUG = false;
public static Map<String, DedupLoopItem> loopPatchMap = new HashMap<>();
public static Data parseNComputeLineageTrace(String mainTrace) {