Package org.apache.sysds.hops.ipa
Class IPAPassRewriteFederatedPlan
java.lang.Object
org.apache.sysds.hops.ipa.IPAPass
org.apache.sysds.hops.ipa.IPAPassRewriteFederatedPlan
This rewrite generates a federated execution plan by estimating and setting costs and the FederatedOutput values of
all relevant hops in the DML program.
The rewrite is only applied if federated compilation is activated in OptimizerUtils.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanisApplicable(FunctionCallGraph fgraph) Indicates if an IPA pass is applicable for the current configuration.booleanrewriteProgram(DMLProgram prog, FunctionCallGraph fgraph, FunctionCallSizeInfo fcallSizes) Estimates cost and selects a federated execution plan by setting the federated output value of each hop in the program.
-
Constructor Details
-
IPAPassRewriteFederatedPlan
public IPAPassRewriteFederatedPlan()
-
-
Method Details
-
isApplicable
Indicates if an IPA pass is applicable for the current configuration. The configuration depends on OptimizerUtils.FEDERATED_COMPILATION.- Specified by:
isApplicablein classIPAPass- Parameters:
fgraph- function call graph- Returns:
- true if federated compilation is activated.
-
rewriteProgram
public boolean rewriteProgram(DMLProgram prog, FunctionCallGraph fgraph, FunctionCallSizeInfo fcallSizes) Estimates cost and selects a federated execution plan by setting the federated output value of each hop in the program.- Specified by:
rewriteProgramin classIPAPass- Parameters:
prog- dml programfgraph- function call graphfcallSizes- function call size infos- Returns:
- false since the function call graph never has to be rebuilt
-