test_fleet_launch_ps.sh 2.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#!/bin/bash

# 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.

set -e

19
server_port_00=$(( PADDLE_DIST_UT_PORT ))
20 21 22 23 24 25 26 27 28 29 30
server_port_10=$(( PADDLE_DIST_UT_PORT + 1 ))
worker_port_00=$(( PADDLE_DIST_UT_PORT + 2 ))
worker_port_10=$(( PADDLE_DIST_UT_PORT + 3 ))

server_port_01=$(( PADDLE_DIST_UT_PORT + 4 ))
server_port_11=$(( PADDLE_DIST_UT_PORT + 5 ))
worker_port_01=$(( PADDLE_DIST_UT_PORT + 6 ))
worker_port_11=$(( PADDLE_DIST_UT_PORT + 7 ))

heter_worker_port_0=$(( PADDLE_DIST_UT_PORT + 8 ))
heter_worker_port_1=$(( PADDLE_DIST_UT_PORT + 9 ))
31

G
gongweibao 已提交
32 33
function test_launch_ps(){
    python -m paddle.distributed.fleet.launch \
34 35
        --servers="127.0.0.1:${server_port_00},127.0.0.1:${server_port_10}" \
        --workers="127.0.0.1:${worker_port_00},127.0.0.1:${worker_port_10}" \
36 37
        fleet_ps_training.py 2> ut1.elog
    if grep -q "server are killed" ut1.elog; then
38 39 40 41 42 43 44 45
        echo "test pserver launch succeed"
    else
        echo "test pserver launch failed"
        exit -1
    fi
}

function test_launch_ps_heter(){
G
gongweibao 已提交
46
    python -m paddle.distributed.fleet.launch \
47 48
        --servers="127.0.0.1:${server_port_01},127.0.0.1:${server_port_11}" \
        --workers="127.0.0.1:${worker_port_01},127.0.0.1:${worker_port_11}" \
G
gongweibao 已提交
49
        --heter_workers="127.0.0.1:${heter_worker_port_0},127.0.0.1:${heter_worker_port_1}" \
50
        --heter_devices="gpu" \
51
        --heter_worker_num="2" \
52 53 54
        fleet_heter_ps_training.py 2> ut2.elog
    if grep -q "server are killed" ut2.elog; then
        echo "test heter trainer launch succeed"
55
    else
56
        echo "test heter trainer launch failed"
57 58 59 60
        exit -1
    fi
}

61
if [[ ${WITH_GPU} == "OFF" && ("${WITH_ROCM}x" == "x" || ${WITH_ROCM} == "OFF") ]]; then
62 63 64 65 66 67 68
    echo "in cpu test mode"
    test_launch_ps
    exit 0
fi

test_launch_ps
test_launch_ps_heter