This is an automated email from the ASF dual-hosted git repository.
mboehm7 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 63b99e5efb [SYSTEMDS-3729] Fix federate response of roll function
63b99e5efb is described below
commit 63b99e5efb1517af7fb42d1df3a5e840e5ef5303
Author: Minguk Choi <[email protected]>
AuthorDate: Thu Oct 24 13:10:11 2024 +0200
[SYSTEMDS-3729] Fix federate response of roll function
This patch removes unnecessary data transfer and data sharing, which was
there for debugging only.
Closes #2131.
---
.../org/apache/sysds/runtime/instructions/fed/ReorgFEDInstruction.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/sysds/runtime/instructions/fed/ReorgFEDInstruction.java
b/src/main/java/org/apache/sysds/runtime/instructions/fed/ReorgFEDInstruction.java
index 2c8748f783..328d3e9a04 100644
---
a/src/main/java/org/apache/sysds/runtime/instructions/fed/ReorgFEDInstruction.java
+++
b/src/main/java/org/apache/sysds/runtime/instructions/fed/ReorgFEDInstruction.java
@@ -429,7 +429,7 @@ public class ReorgFEDInstruction extends
UnaryFEDInstruction {
resBlock = oriBlock;
}
ec.setMatrixOutput(String.valueOf(_outputID), resBlock);
- return new
FederatedResponse(FederatedResponse.ResponseType.SUCCESS, resBlock);
+ return new
FederatedResponse(FederatedResponse.ResponseType.SUCCESS);
}
@Override