helper.py 2.3 KB
Newer Older
D
dongdaxiang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#   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.

H
heqiaozhi 已提交
15

16
class FileSystem(object):
H
heqiaozhi 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29 30
    """
    A file system that support async_executor hadoop client desc. 

    Args:
        fs_type (string): fs_type, for example is "afs"
        user (string): hadoop param
        passwd (string): hadoop param
        hadoop bin (string): hadoop param
    Examples:
        fs = FileSystm()
    """

    def __init__(self,
                 fs_type="afs",
D
dongdaxiang 已提交
31
                 uri="afs://xx",
32 33
                 user=None,
                 passwd=None,
H
heqiaozhi 已提交
34
                 hadoop_bin=""):
H
heqiaozhi 已提交
35 36 37
        assert user != None
        assert passwd != None
        assert hadoop_bin != None
38
        import ps_pb2 as pslib
H
heqiaozhi 已提交
39 40 41 42 43 44 45
        self.fs_client = pslib.FsClientParameter()
        self.fs_client.uri = uri
        self.fs_client.user = user
        self.fs_client.passwd = passwd
        #self.fs_client.buffer_size = 0
        self.fs_client.hadoop_bin = hadoop_bin
        #self.fs_client.afs_conf = afs_conf if not afs_conf else ""
46

H
heqiaozhi 已提交
47
    def get_desc(self):
H
heqiaozhi 已提交
48 49 50
        """
        get hadoop desc.
        """
H
heqiaozhi 已提交
51
        return self.fs_client
52

H
heqiaozhi 已提交
53

D
dongdaxiang 已提交
54
class MPIHelper(object):
H
heqiaozhi 已提交
55
    """
56
    MPIHelper is a wrapper of mpi4py, support get_rank get_size etc.
H
heqiaozhi 已提交
57 58 59 60 61 62 63
    Args:
        No params
    Examples:
        mh = MPIHelper()
        mh.get_ip()
    """

D
dongdaxiang 已提交
64
    def __init__(self):
65
        from mpi4py import MPI
D
dongdaxiang 已提交
66
        self.comm = MPI.COMM_WORLD
67
        self.MPI = MPI
D
dongdaxiang 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82

    def get_rank(self):
        return self.comm.Get_rank()

    def get_size(self):
        return self.comm.Get_size()

    def get_ip(self):
        import socket
        local_ip = socket.gethostbyname(socket.gethostname())
        return local_ip

    def get_hostname(self):
        import socket
        return socket.gethostname()
H
heqiaozhi 已提交
83 84

    def finalize(self):
85
        self.MPI.Finalize()