trainer_desc.py 3.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#   Copyright (c) 2018 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.

from paddle.fluid.proto import trainer_desc_pb2
16 17
from distributed import ps_pb2 as ps_pb2
from device_worker import DeviceWorkerFactory
18 19 20 21 22
from google.protobuf import text_format

__all__ = ['TrainerDesc', 'MultiTrainer', 'DistMultiTrainer']


X
xujiaqi01 已提交
23
# can be initialized from train_desc,
24 25 26 27 28 29 30 31
class TrainerDesc(object):
    def __init__(self):
        '''
        self.proto_desc = data_feed_pb2.DataFeedDesc()
        with open(proto_file, 'r') as f:
            text_format.Parse(f.read(), self.proto_desc)
        '''
        self.proto_desc = trainer_desc_pb2.TrainerDesc()
D
dongdaxiang 已提交
32 33 34
        import multiprocessing as mp
        # set default thread num == cpu count
        self.proto_desc.thread_num = mp.cpu_count()
D
dongdaxiang 已提交
35 36
        self.fleet_desc_ = None
        self.device_worker_ = None
37 38 39 40

    def set_thread(self, thread_num):
        self.proto_desc.thread_num = thread_num

D
dongdaxiang 已提交
41 42
    def set_device_worker(self, device_worker):
        self.device_worker_ = device_worker
43

D
dongdaxiang 已提交
44 45
    def set_fleet_desc(self, fleet_desc):
        self.fleet_desc_ = fleet_desc
46

D
dongdaxiang 已提交
47
    def gen_trainer_desc(self):
48 49
        pass

50 51 52 53 54
    def _desc(self):
        return text_format.MessageToString(self.proto_desc)


class MultiTrainer(TrainerDesc):
D
dongdaxiang 已提交
55
    def __init__(self):
56
        super(MultiTrainer, self).__init__()
D
dongdaxiang 已提交
57
        pass
58

D
dongdaxiang 已提交
59 60 61
    def gen_trainer_desc(self):
        super(MultiTrainer, self).gen_trainer_desc()
        self.proto_desc.class_name = "MultiTrainer"
X
xujiaqi01 已提交
62
        self.device_worker_.gen_worker_desc(self.proto_desc, self.fleet_desc_)
63

64 65

class DistMultiTrainer(TrainerDesc):
66
    def __init__(self):
67
        super(DistMultiTrainer, self).__init__()
68
        pass
69

D
dongdaxiang 已提交
70 71
    def gen_trainer_desc(self):
        super(DistMultiTrainer, self).gen_trainer_desc()
72
        self.proto_desc.class_name = "DistMultiTrainer"
D
dongdaxiang 已提交
73
        self.device_worker_.gen_worker_desc(self.proto_desc, self.fleet_desc_)
H
heqiaozhi 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88

    def set_program_config(self, fleet_desc, program_id):
        for program_config in fleet_desc.trainer_param.program_config:
            if program_config.program_id == program_id:
                pc = self.proto_desc.downpour_param.program_config.add()
                pc.program_id = program_config.program_id
                for i in program_config.push_sparse_table_id:
                    pc.push_sparse_table_id.extend([i])
                for i in program_config.push_dense_table_id:
                    pc.push_dense_table_id.extend([i])
                for i in program_config.pull_sparse_table_id:
                    pc.pull_sparse_table_id.extend([i])
                for i in program_config.pull_dense_table_id:
                    pc.pull_dense_table_id.extend([i])
                break