__init__.py 2.9 KB
Newer Older
1
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2
#
3 4 5
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
6
#
7
#     http://www.apache.org/licenses/LICENSE-2.0
8
#
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from paddle.distributed.launch import plugins

from .node import Node
from .status import Status
from .args_envs import parse_args, fetch_envs, env_args_mapping

import logging


24
class Context:
25 26 27
    def __init__(self, enable_plugin=True):
        self.args, self.unknown_args = parse_args()
        self.envs = fetch_envs()
K
kuizhiqing 已提交
28 29

        self.set_env_in_args()
30 31 32 33

        self.node = Node()
        self.status = Status()

K
kuizhiqing 已提交
34
        self.logger = self.get_logger()
35 36 37 38 39 40 41

        # design for event queue, later
        self.events = []

        if enable_plugin:
            self._enable_plugin()

K
kuizhiqing 已提交
42 43
    def print(self):
        self.logger.info("-----------  Configuration  ----------------------")
44
        for arg, value in sorted(vars(self.args).items()):
45
            self.logger.info(f"{arg}: {value}")
K
kuizhiqing 已提交
46 47
        self.logger.info("--------------------------------------------------")

48 49 50 51
    def is_legacy_mode(self):
        if self.args.legacy:
            return True

K
kuizhiqing 已提交
52 53 54
        if self.args.master:
            return False

55
        if len(self.unknown_args) > 0:
56
            self.logger.warning(
57
                f"Compatible mode enable with args {self.unknown_args}"
58
            )
59 60 61 62 63 64 65
            return True

        return False

    def get_envs(self):
        return self.envs.copy()

K
kuizhiqing 已提交
66 67 68 69
    def set_envs(self, env={}):
        env = {k: v for k, v in env.items() if isinstance(v, str)}
        self.envs.update(env)

70 71 72 73 74 75 76 77
    def _enable_plugin(self):
        for pl in plugins.enabled_plugins:
            pl(self)

    def get_logger(self, level=logging.INFO):
        logger = logging.getLogger("LAUNCH")
        logger.setLevel(self.args.log_level.upper() or level)
        formatter = logging.Formatter(
78 79
            fmt='%(name)s %(levelname)s %(asctime)s %(message)s'
        )
80 81 82 83 84
        ch = logging.StreamHandler()
        ch.setFormatter(formatter)
        logger.addHandler(ch)
        return logger

85 86 87 88 89 90
    def continous_log(self) -> bool:
        if self.args.log_level.upper() in ['DEBUG', 'ERROR']:
            return True
        else:
            return False

91 92 93
    def set_env_in_args(self):
        for k, v in env_args_mapping.items():
            if k in self.envs:
94 95 96
                print(
                    f"LAUNCH WARNNING args {v} is override by env {self.envs[k]}"
                )
K
kuizhiqing 已提交
97
                setattr(self.args, v, self.envs[k])