j143 commented on code in PR #2317: URL: https://github.com/apache/systemds/pull/2317#discussion_r2308252914
########## src/main/java/org/apache/sysds/hops/rewrite/RewriteInjectOOCTee.java: ########## @@ -175,7 +178,20 @@ private void applyTopDownTeeRewrite(Hop sharedInput) { ArrayList<Hop> consumers = new ArrayList<>(sharedInput.getParent()); // Create the new TeeOp with the original hop as input - TeeOp teeOp = new TeeOp(sharedInput); +// TeeOp teeOp = new TeeOp(sharedInput); + DataOp teeOp = new DataOp("tee_out_" + sharedInput.getName(), Review Comment: presently we are creating different variable names than the ones created automatically _mvar1 ... --> is this the correct approach? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@systemds.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org