Class FederatedUDF
- java.lang.Object
-
- org.apache.sysds.runtime.controlprogram.federated.FederatedUDF
-
- All Implemented Interfaces:
Serializable
,LineageTraceable
- Direct Known Subclasses:
FederatedStatistics.FedStatsCollectFunction
,MultiReturnParameterizedBuiltinFEDInstruction.CreateFrameEncoder
,MultiReturnParameterizedBuiltinFEDInstruction.ExecuteFrameEncoder
,ParameterizedBuiltinFEDInstruction.DecodeMatrix
,QuantilePickFEDInstruction.CreateMatrixFromFrame
,QuantilePickFEDInstruction.GetHistogram
,QuantilePickFEDInstruction.GetValuesInRange
,QuantilePickFEDInstruction.GetValuesInRanges
,QuantilePickFEDInstruction.MinMax
,ReorgFEDInstruction.DiagMatrix
,ReorgFEDInstruction.Rdiag
,RewriteFederatedExecution.PrivacyConstraintRetriever
public abstract class FederatedUDF extends Object implements Serializable, LineageTraceable
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract FederatedResponse
execute(ExecutionContext ec, Data... data)
Execute the user-defined function on a set of data objects (e.g., matrix objects, frame objects, or scalars), which are looked up by specified input IDs and passed in the same order.long[]
getInputIDs()
List<Long>
getOutputIds()
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.sysds.runtime.lineage.LineageTraceable
getLineageItem, getLineageItems, hasSingleLineage
-
-
-
-
Method Detail
-
getInputIDs
public final long[] getInputIDs()
-
execute
public abstract FederatedResponse execute(ExecutionContext ec, Data... data)
Execute the user-defined function on a set of data objects (e.g., matrix objects, frame objects, or scalars), which are looked up by specified input IDs and passed in the same order. Output data objects (potentially many) can be directly added to the passed execution context and its variable map.- Parameters:
ec
- execution contextdata
- one or many data objects- Returns:
- federated response, with none or many output objects
-
-