__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
# 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
K
kuizhiqing 已提交
20
import six
21 22 23 24 25

import logging


class Context(object):
26

27 28 29
    def __init__(self, enable_plugin=True):
        self.args, self.unknown_args = parse_args()
        self.envs = fetch_envs()
K
kuizhiqing 已提交
30 31

        self.set_env_in_args()
32 33 34 35

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

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

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

        if enable_plugin:
            self._enable_plugin()

K
kuizhiqing 已提交
44 45 46 47 48 49
    def print(self):
        self.logger.info("-----------  Configuration  ----------------------")
        for arg, value in sorted(six.iteritems(vars(self.args))):
            self.logger.info("%s: %s" % (arg, value))
        self.logger.info("--------------------------------------------------")

50 51 52 53
    def is_legacy_mode(self):
        if self.args.legacy:
            return True

K
kuizhiqing 已提交
54 55 56
        if self.args.master:
            return False

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

        return False

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

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

71 72 73 74 75 76 77 78 79 80 81 82 83 84
    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(
            fmt='%(name)s %(levelname)s %(asctime)s %(message)s')
        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])