This is an automated email from the ASF dual-hosted git repository.
sebwrede pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/master by this push:
new 7fea8bf [MINOR] Add Documentation Closes #1282.
7fea8bf is described below
commit 7fea8bf4ebc505f0fb8ed5532eeaebf12bc8e27b
Author: sebwrede <[email protected]>
AuthorDate: Wed May 19 10:45:09 2021 +0200
[MINOR] Add Documentation
Closes #1282.
---
src/main/java/org/apache/sysds/lops/Unary.java | 1 +
.../java/org/apache/sysds/runtime/instructions/InstructionUtils.java | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/sysds/lops/Unary.java
b/src/main/java/org/apache/sysds/lops/Unary.java
index bec7034..73f5b5d 100644
--- a/src/main/java/org/apache/sysds/lops/Unary.java
+++ b/src/main/java/org/apache/sysds/lops/Unary.java
@@ -53,6 +53,7 @@ public class Unary extends Lop
* @param dt data type
* @param vt value type
* @param et execution type
+ * @param numThreads number of threads for execution
*/
public Unary(Lop input1, Lop input2, OpOp1 op, DataType dt, ValueType
vt, ExecType et, int numThreads) {
super(Lop.Type.UNARY, dt, vt);
diff --git
a/src/main/java/org/apache/sysds/runtime/instructions/InstructionUtils.java
b/src/main/java/org/apache/sysds/runtime/instructions/InstructionUtils.java
index 51c7851..0d4abf0 100644
--- a/src/main/java/org/apache/sysds/runtime/instructions/InstructionUtils.java
+++ b/src/main/java/org/apache/sysds/runtime/instructions/InstructionUtils.java
@@ -1098,7 +1098,7 @@ public class InstructionUtils
* @param id new output operand (always a number)
* @param varOldIn current input operand (to be replaced)
* @param varNewIn new input operand names (always numbers)
- * @param federatedOutput federated output flag
+ * @param rmFederatedOutput remove federated output flag
* @return instruction string prepared for federated request
*/
public static String instructionStringFEDPrepare(String inst, CPOperand
varOldOut, long id, CPOperand[] varOldIn, long[] varNewIn, boolean
rmFederatedOutput){