helper.py 2.4 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.

D
dongdaxiang 已提交
15
from mpi4py import MPI
H
heqiaozhi 已提交
16
import ps_pb2 as pslib
D
dongdaxiang 已提交
17

H
heqiaozhi 已提交
18

19
class FileSystem(object):
H
heqiaozhi 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33
    """
    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",
34 35 36
                 uri="afs://tianqi.afs.baidu.com:9902",
                 user=None,
                 passwd=None,
H
heqiaozhi 已提交
37
                 hadoop_bin=""):
H
heqiaozhi 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51
        assert user != None
        assert passwd != None
        assert hadoop_bin != None
        self.fs_client = pslib.FsClientParameter()
        #if fs_type == "afs":
        #    fs_client.fs_type = pslib.FsApiType.AFS
        #else:
        #    fs_client.fs_type = pslib.FsApiType.HDFS
        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 ""
52

H
heqiaozhi 已提交
53
    def get_desc(self):
H
heqiaozhi 已提交
54 55 56
        """
        get hadoop desc.
        """
H
heqiaozhi 已提交
57
        return self.fs_client
58

H
heqiaozhi 已提交
59

D
dongdaxiang 已提交
60
class MPIHelper(object):
H
heqiaozhi 已提交
61 62 63 64 65 66 67 68 69
    """
    MPIHelper is a wrapper of mpi4py, supprot get_rank get_size etc.
    Args:
        No params
    Examples:
        mh = MPIHelper()
        mh.get_ip()
    """

D
dongdaxiang 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
    def __init__(self):
        self.comm = MPI.COMM_WORLD

    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 已提交
87 88 89

    def finalize(self):
        MPI.Finalize()