Create and retuan an EPLBConfig object based on the current settings.
(self)
| 1416 | return EarlyStopConfig(early_stop_args) |
| 1417 | |
| 1418 | def create_eplb_config(self) -> EPLBConfig: |
| 1419 | """ |
| 1420 | Create and retuan an EPLBConfig object based on the current settings. |
| 1421 | """ |
| 1422 | eplb_args = asdict(self) |
| 1423 | if self.eplb_config is not None: |
| 1424 | for k, v in self.eplb_config.items(): |
| 1425 | eplb_args[k] = v |
| 1426 | eplb_args["enable_eplb"] = self.enable_eplb |
| 1427 | return EPLBConfig(eplb_args) |
| 1428 | |
| 1429 | def create_routing_repaly_config(self) -> RoutingReplayConfig: |
| 1430 | """ """ |
no test coverage detected