trainer_factory.py 8.6 KB
Newer Older
D
dongdaxiang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
#   Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
#
# 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
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# 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.
X
xujiaqi01 已提交
14
"""Defination of TrainerFactory."""
D
dongdaxiang 已提交
15

16 17
import threading
import time
D
Dong Daxiang 已提交
18
import logging
19
import numpy as np
X
xujiaqi01 已提交
20
from paddle.fluid.log_helper import get_logger
21

X
xujiaqi01 已提交
22 23
local_logger = get_logger(
    __name__, logging.INFO, fmt='%(asctime)s-%(levelname)s: %(message)s')
D
Dong Daxiang 已提交
24

T
Thunderbrook 已提交
25
from .trainer_desc import MultiTrainer, DistMultiTrainer, PipelineTrainer, HeterXpuTrainer, PSGPUTrainer
26
from .device_worker import Hogwild, DownpourSGD, Section, DownpourSGDOPT
D
Dong Daxiang 已提交
27 28
from .framework import Variable
from multiprocessing import Process, Manager
X
xjqbest 已提交
29

30
__all__ = ["TrainerFactory", "FetchHandlerMonitor"]
D
dongdaxiang 已提交
31 32 33


class TrainerFactory(object):
X
xujiaqi01 已提交
34 35 36 37 38 39
    """
    Create trainer and device worker.
    If opt_info is not None, it will get configs from opt_info,
    otherwise create MultiTrainer and Hogwild.
    """

D
dongdaxiang 已提交
40 41 42
    def __init__(self):
        pass

43
    def _create_trainer(self, opt_info=None):
D
dongdaxiang 已提交
44 45
        trainer = None
        device_worker = None
46
        if not opt_info:
D
dongdaxiang 已提交
47 48 49
            # default is MultiTrainer + Hogwild
            trainer = MultiTrainer()
            device_worker = Hogwild()
50
            trainer._set_device_worker(device_worker)
D
dongdaxiang 已提交
51
        else:
T
Thunderbrook 已提交
52 53
            trainer_class = opt_info.get("trainer", "MultiTrainer")
            device_worker_class = opt_info.get("device_worker", "Hogwild")
D
dongdaxiang 已提交
54 55
            trainer = globals()[trainer_class]()
            device_worker = globals()[device_worker_class]()
56 57 58

            # for debug tools
            if opt_info is not None:
X
xujiaqi01 已提交
59 60 61 62 63 64
                if opt_info.get("dump_slot") is not None:
                    trainer._set_dump_slot(opt_info["dump_slot"])
                if opt_info.get("mpi_rank") is not None:
                    trainer._set_mpi_rank(opt_info["mpi_rank"])
                if opt_info.get("mpi_size") is not None:
                    trainer._set_mpi_size(opt_info["mpi_size"])
X
xujiaqi01 已提交
65 66
                if opt_info.get("dump_fields") is not None and len(
                        opt_info.get("dump_fields")) != 0:
X
xujiaqi01 已提交
67
                    trainer._set_dump_fields(opt_info["dump_fields"])
X
xujiaqi01 已提交
68 69
                if opt_info.get("dump_fields_path") is not None and len(
                        opt_info.get("dump_fields_path")) != 0:
X
xujiaqi01 已提交
70 71 72 73 74
                    trainer._set_dump_fields_path(opt_info["dump_fields_path"])
                if opt_info.get("dump_file_num") is not None:
                    trainer._set_dump_file_num(opt_info["dump_file_num"])
                if opt_info.get("dump_converter") is not None:
                    trainer._set_dump_converter(opt_info["dump_converter"])
X
xujiaqi01 已提交
75 76
                if opt_info.get("dump_param") is not None and len(
                        opt_info.get("dump_param")) != 0:
77
                    trainer._set_dump_param(opt_info["dump_param"])
T
Thunderbrook 已提交
78 79
                if opt_info.get("worker_places") is not None:
                    trainer._set_worker_places(opt_info["worker_places"])
T
Thunderbrook 已提交
80 81
                if opt_info.get("use_ps_gpu") is not None:
                    trainer._set_use_ps_gpu(opt_info["use_ps_gpu"])
H
hutuxian 已提交
82 83 84 85 86 87 88 89
                if opt_info.get("enable_random_dump") is not None:
                    trainer._set_enable_random_dump(opt_info[
                        "enable_random_dump"])
                if opt_info.get("dump_interval") is not None:
                    trainer._set_dump_interval(opt_info["dump_interval"])
                if opt_info.get("random_with_lineid") is not None:
                    trainer._set_random_with_lineid(opt_info[
                        "random_with_lineid"])
90 91 92 93 94 95 96 97

            if "fleet_desc" in opt_info:
                device_worker._set_fleet_desc(opt_info["fleet_desc"])
                trainer._set_fleet_desc(opt_info["fleet_desc"])
                if opt_info.get("use_cvm") is not None:
                    trainer._set_use_cvm(opt_info["use_cvm"])
                if opt_info.get("no_cvm") is not None:
                    trainer._set_no_cvm(opt_info["no_cvm"])
98 99 100 101
                if opt_info.get(
                        "scale_sparse_gradient_with_batch_size") is not None:
                    trainer._set_scale_sparse_grad_with_batch_size(opt_info[
                        "scale_sparse_gradient_with_batch_size"])
102 103
                if opt_info.get("scale_datanorm") is not None:
                    trainer._set_scale_datanorm(opt_info["scale_datanorm"])
X
xujiaqi01 已提交
104 105 106 107 108 109 110 111
                if opt_info.get("adjust_ins_weight") is not None:
                    trainer._set_adjust_ins_weight(opt_info[
                        "adjust_ins_weight"])
                if opt_info.get("copy_table") is not None:
                    trainer._set_copy_table_config(opt_info["copy_table"])
                if opt_info.get("check_nan_var_names") is not None:
                    trainer._set_check_nan_var_names(opt_info[
                        "check_nan_var_names"])
112 113
                if opt_info.get("loss_names") is not None:
                    trainer._set_loss_names(opt_info["loss_names"])
114
            trainer._set_device_worker(device_worker)
D
dongdaxiang 已提交
115
        return trainer
116 117 118


class FetchHandlerMonitor(object):
X
xujiaqi01 已提交
119 120 121 122 123
    """
    Defination of FetchHandlerMonitor class,
    it's for fetch handler.
    """

124 125 126
    def __init__(self, scope, handler):
        self.fetch_instance = handler
        self.fetch_thread = threading.Thread(
D
Dong Daxiang 已提交
127 128
            target=self.handler_launch_func, args=(scope, self.fetch_instance))
        self.running_lock = threading.Lock()
129 130
        self.running = False

D
Dong Daxiang 已提交
131 132 133 134 135 136 137 138
    def handler_launch_func(self, scope, handler):
        fetch_instance = handler
        period_secs = fetch_instance.period_secs
        var_name_to_key = {}
        for key in fetch_instance.var_dict:
            if isinstance(fetch_instance.var_dict[key], Variable):
                var_name_to_key[fetch_instance.var_dict[key].name] = key
            else:
D
Dong Daxiang 已提交
139 140
                local_logger.warning("the value of {} is not a Variable".format(
                    key))
D
Dong Daxiang 已提交
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
                var_name_to_key["None.var"] = key
        elapsed_secs = 0
        while True:
            self.running_lock.acquire()
            if self.running == False:
                break
            if elapsed_secs < period_secs:
                # TODO(guru4elephant): needs customized condition
                time.sleep(1)
                elapsed_secs += 1
            else:
                elapsed_secs = 0
                fetch_dict = {}
                for key in var_name_to_key:
                    var = scope.find_var(key)
                    fetch_dict[key] = var
                    if var == None:
D
Dong Daxiang 已提交
158 159
                        local_logger.warning("{} value currently not available".
                                             format(var_name_to_key[key]))
D
Dong Daxiang 已提交
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
                res_dict = {}
                for key in fetch_dict:
                    user_name = var_name_to_key[key]
                    if fetch_dict[key] == None:
                        res_dict[user_name] = None
                        continue
                    else:
                        res_dict[user_name] = fetch_dict[key].get_tensor()

                    lod = res_dict[user_name].lod()
                    if len(lod) > 0:
                        raise RuntimeError("Some of your fetched tensors \
                                            hold LoD information. \
                                            They can not be completely cast \
                                            to Python ndarray. We can \
                                            not return LoDTensor itself directly, \
                                            please choose another targets")
                    if res_dict[user_name]._is_initialized():
                        res_dict[user_name] = np.array(res_dict[user_name])
                    else:
                        res_dict[user_name] = None
                fetch_instance.handler(res_dict)
            self.running_lock.release()

184
    def start(self):
X
xujiaqi01 已提交
185 186 187 188
        """
        start monitor,
        it will start a monitor thread.
        """
D
Dong Daxiang 已提交
189
        self.running_lock.acquire()
190
        self.running = True
D
Dong Daxiang 已提交
191
        self.running_lock.release()
192 193 194 195
        self.fetch_thread.setDaemon(True)
        self.fetch_thread.start()

    def stop(self):
D
Dong Daxiang 已提交
196
        self.running_lock.acquire()
197
        self.running = False
D
Dong Daxiang 已提交
198
        self.running_lock.release()