job.py 2.3 KB
Newer Older
K
kuizhiqing 已提交
1
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2
#
K
kuizhiqing 已提交
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
#
K
kuizhiqing 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
8
#
K
kuizhiqing 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21
# 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.


class JobMode:
    COLLECTIVE = 'collective'
    PS = 'ps'
    HETER = 'heter'


22
class Job:
23
    def __init__(self, jid='default', mode=JobMode.COLLECTIVE, nnodes="1"):
K
kuizhiqing 已提交
24
        self._mode = mode
25
        self._id = jid
K
kuizhiqing 已提交
26 27 28 29 30 31

        self._replicas = 0
        self._replicas_min = self._replicas
        self._replicas_max = self._replicas
        self._elastic = False

32
        self.set_replicas(str(nnodes))
K
kuizhiqing 已提交
33 34 35

    def __str__(self):
        return "Job: {}, mode {}, replicas {}[{}:{}], elastic {}".format(
36 37 38 39 40 41 42
            self.id,
            self.mode,
            self._replicas,
            self._replicas_min,
            self._replicas_max,
            self.elastic,
        )
K
kuizhiqing 已提交
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71

    @property
    def mode(self):
        return self._mode

    @property
    def id(self):
        return self._id

    @property
    def elastic(self):
        return self._elastic

    @property
    def replicas(self):
        return self._replicas

    @property
    def replicas_min(self):
        return self._replicas_min

    @property
    def replicas_max(self):
        return self._replicas_max

    @replicas.setter
    def replicas(self, replicas):
        self._replicas = replicas

72 73
    def set_replicas(self, nnodes: str):
        np = str(nnodes) if nnodes else '1'
K
kuizhiqing 已提交
74 75 76 77 78 79 80 81 82

        if ':' in np:
            nps = np.split(':')
            self._replicas_min, self._replicas_max = int(nps[0]), int(nps[1])
            self._replicas = self._replicas_max  # default to max

            self._elastic = True
        else:
            self._replicas = int(np)
83 84 85 86
            self._replicas_min, self._replicas_max = (
                self._replicas,
                self._replicas,
            )
K
kuizhiqing 已提交
87 88

            self._elastic = False