cluster.py 1.8 KB
Newer Older
T
tangwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# 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.

from __future__ import print_function
from __future__ import unicode_literals
T
tangwei 已提交
17

T
tangwei 已提交
18 19 20 21 22
import subprocess
import sys
import os
import copy

23 24 25
from paddlerec.core.engine.engine import Engine
from paddlerec.core.factory import TrainerFactory
from paddlerec.core.utils import envs
T
tangwei 已提交
26 27


T
tangwei 已提交
28
class ClusterEngine(Engine):
T
tangwei 已提交
29 30
    def __init_impl__(self):
        abs_dir = os.path.dirname(os.path.abspath(__file__))
T
tangwei 已提交
31
        self.submit_script = os.path.join(abs_dir, "master.sh")
T
tangwei 已提交
32

T
tangwei 已提交
33
    def start_worker_procs(self):
T
tangwei 已提交
34 35
        trainer = TrainerFactory.create(self.trainer)
        trainer.run()
T
tangwei 已提交
36 37

    def start_master_procs(self):
T
tangwei 已提交
38 39 40 41
        default_env = os.environ.copy()
        current_env = copy.copy(default_env)
        current_env.pop("http_proxy", None)
        current_env.pop("https_proxy", None)
T
tangwei 已提交
42 43 44 45 46

        cmd = ("bash {}".format(self.submit_script)).split(" ")
        proc = subprocess.Popen(cmd, env=current_env, cwd=os.getcwd())
        proc.wait()

T
tangwei 已提交
47
    def run(self):
T
tangwei 已提交
48 49 50 51 52 53 54 55 56 57
        role = envs.get_runtime_environ("engine_role")

        if role == "MASTER":
            self.start_master_procs()

        elif role == "WORKER":
            self.start_worker_procs()

        else:
            raise ValueError("role {} error, must in MASTER/WORKER".format(role))