|
37 | 37 | import org.apache.sysds.common.Types.DataType;
|
38 | 38 | import org.apache.sysds.common.Types.FileFormat;
|
39 | 39 | import org.apache.sysds.conf.ConfigurationManager;
|
| 40 | +import org.apache.sysds.conf.DMLConfig; |
40 | 41 | import org.apache.sysds.parser.DataExpression;
|
41 | 42 | import org.apache.sysds.runtime.DMLRuntimeException;
|
42 | 43 | import org.apache.sysds.runtime.controlprogram.BasicProgramBlock;
|
|
48 | 49 | import org.apache.sysds.runtime.controlprogram.context.SparkExecutionContext;
|
49 | 50 | import org.apache.sysds.runtime.controlprogram.federated.FederatedRequest.RequestType;
|
50 | 51 | import org.apache.sysds.runtime.controlprogram.federated.FederatedResponse.ResponseType;
|
| 52 | +import org.apache.sysds.runtime.controlprogram.parfor.stat.InfrastructureAnalyzer; |
51 | 53 | import org.apache.sysds.runtime.instructions.Instruction;
|
52 | 54 | import org.apache.sysds.runtime.instructions.Instruction.IType;
|
53 | 55 | import org.apache.sysds.runtime.instructions.InstructionParser;
|
@@ -436,8 +438,9 @@ private FederatedResponse execInstruction(FederatedRequest request, ExecutionCon
|
436 | 438 |
|
437 | 439 | // set the number of threads according to the number of processors on the federated worker
|
438 | 440 | if(receivedInstruction.getOperator() instanceof MultiThreadedOperator) {
|
439 |
| - int numProcessors = Runtime.getRuntime().availableProcessors(); |
440 |
| - ((MultiThreadedOperator)receivedInstruction.getOperator()).setNumThreads(numProcessors); |
| 441 | + int par_inst = ConfigurationManager.getDMLConfig().getIntValue(DMLConfig.FEDERATED_PAR_INST); |
| 442 | + ((MultiThreadedOperator)receivedInstruction.getOperator()) |
| 443 | + .setNumThreads((par_inst > 0) ? par_inst : InfrastructureAnalyzer.getLocalParallelism()); |
441 | 444 | }
|
442 | 445 |
|
443 | 446 | BasicProgramBlock pb = new BasicProgramBlock(null);
|
|
0 commit comments