print all config
(self)
| 705 | ) |
| 706 | |
| 707 | def print(self): |
| 708 | """ |
| 709 | print all config |
| 710 | |
| 711 | """ |
| 712 | logger.info("Parallel Configuration Information :") |
| 713 | for k, v in self.__dict__.items(): |
| 714 | logger.info("{:<20}:{:<6}{}".format(k, "", v)) |
| 715 | logger.info("=============================================================") |
| 716 | |
| 717 | |
| 718 | class SpeculativeConfig: |