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

import logging
16

meteor135's avatar
meteor135 已提交
17
# import paddle.incubate.distributed.fleet.role_maker as role_maker
18
import paddle.distributed.fleet.base.role_maker as role_maker
W
wangzhen38 已提交
19
from paddle.incubate.fleet.parameter_server.distribute_transpiler import fleet
20

21 22 23
logging.basicConfig(format="%(asctime)s - %(levelname)s - %(message)s")
logger = logging.getLogger("fluid")
logger.setLevel(logging.INFO)
24 25 26 27
# role = role_maker.GeneralRoleMaker(
# init_timeout_seconds=100,
# run_timeout_seconds=100,
# http_ip_port="127.0.0.1:26001")
28

29
# role = role_maker.PaddleCloudRoleMaker(http_ip_port="127.0.0.1:26001")
30

31
# role = role_maker.GeneralRoleMaker(path="./tmp4")
32 33 34 35 36 37 38 39 40
logger.info("Begin")
res = [0, 0]

logger.info(res)

role = role_maker.PaddleCloudRoleMaker(path="./tmp4")

fleet.init(role)
print("init wancheng")  #
41
# if fleet.is_worker():
42 43 44 45 46 47 48 49 50 51 52
#    import time
#    time.sleep(3)

a = [5]
b = [2]
res = [0]
if fleet.worker_index() == 0:
    role._all_reduce(role._node_type_comm, a)
elif fleet.worker_index() == 1:
    role._all_reduce(role._node_type_comm, b)

53 54
# logger.info(res)
# print("res ", res)
55

56
# role._barrier_all()