Files
2026-07-13 12:40:42 +08:00

201 lines
6.5 KiB
Python

# Copyright (c) 2022 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 json
import os
import tempfile
import unittest
from test_cluster import cluster_json, multi_cluster_json
import paddle
from paddle.distributed.auto_parallel.static.cluster import Cluster
from paddle.distributed.auto_parallel.static.cost import (
AllgatherOpCost,
AllReduceOpCost,
BroadcastOpCost,
CommContext,
IdentityOpCost,
RecvOpCost,
SendOpCost,
build_comm_desc,
)
class TestCommOpCost(unittest.TestCase):
def setUp(self):
self.temp_dir = tempfile.TemporaryDirectory()
def tearDown(self):
self.temp_dir.cleanup()
def test_comm_cost(self):
# Build cluster
cluster_json_path = os.path.join(
self.temp_dir.name, "auto_parallel_cluster0.json"
)
cluster_json_object = json.loads(cluster_json)
with open(cluster_json_path, "w") as cluster_json_file:
json.dump(cluster_json_object, cluster_json_file)
cluster = Cluster()
cluster.build_from_file(cluster_json_path)
# Build CommContext
CommContext._has_instance = None
CommContext._instance = None
comm_context = CommContext(cluster)
# Check AllreduceSumCost 128MB ring cost
allreduce_sum_op_desc = build_comm_desc(
"all_reduce",
[0, 1, 2, 3, 4, 5, 6, 7],
paddle.float32,
[1, 32 * (10**6)],
{"reduce_type": paddle.distributed.ReduceOp.SUM},
)
allreduce_sum_op_cost = AllReduceOpCost(
op_desc=allreduce_sum_op_desc, comm_context=comm_context
)
self.assertTrue(allreduce_sum_op_cost.time > 0)
# Check AllgatherOpCost cost
allgather_op_desc = build_comm_desc(
"all_gather",
[0, 1, 2, 3, 4, 5, 6, 7],
paddle.float32,
[1, 32 * (10**6)],
)
allgather_op_cost = AllgatherOpCost(
op_desc=allgather_op_desc, comm_context=comm_context
)
self.assertTrue(allgather_op_cost.time > 0)
# Check BroadcastOpCost cost
broadcast_op_desc = build_comm_desc(
"broadcast",
[0, 1, 2, 3, 4, 5, 6, 7],
paddle.float32,
[1, 32 * (10**6)],
)
broadcast_op_cost = BroadcastOpCost(
op_desc=broadcast_op_desc, comm_context=comm_context
)
self.assertTrue(broadcast_op_cost.time > 0)
# Check SendOpCost cost
send_op_desc = build_comm_desc(
"send_v2", [0, 1], paddle.float32, [1, 32 * (10**6)]
)
send_op_cost = SendOpCost(
op_desc=send_op_desc, comm_context=comm_context
)
self.assertTrue(send_op_cost.time > 0)
# Check RecvOpCost cost
recv_op_desc = build_comm_desc(
"recv_v2", [0, 1], paddle.float32, [1, 32 * (10**6)]
)
recv_op_cost = RecvOpCost(
op_desc=recv_op_desc, comm_context=comm_context
)
self.assertTrue(recv_op_cost.time > 0)
# Check IdentityOpCost cost
identity_op_desc = build_comm_desc(
"c_identity", [0, 1], paddle.float32, [1, 32 * (10**6)]
)
identity_op_cost = IdentityOpCost(
op_desc=identity_op_desc, comm_context=comm_context
)
self.assertTrue(identity_op_cost.time >= 0)
def test_cross_machine_comm_cost(self):
# Build cluster
cluster_json_path = os.path.join(
self.temp_dir.name, "auto_parallel_cluster1.json"
)
cluster_json_object = json.loads(multi_cluster_json)
with open(cluster_json_path, "w") as cluster_json_file:
json.dump(cluster_json_object, cluster_json_file)
cluster = Cluster()
cluster.build_from_file(cluster_json_path)
# Build CommContext
CommContext._has_instance = None
CommContext._instance = None
comm_context = CommContext(cluster)
# Check AllreduceSumCost 128MB ring cost
allreduce_sum_op_desc = build_comm_desc(
"all_reduce",
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
paddle.float32,
[1, 32 * (10**6)],
{"reduce_type": paddle.distributed.ReduceOp.SUM},
)
allreduce_sum_op_cost = AllReduceOpCost(
op_desc=allreduce_sum_op_desc, comm_context=comm_context
)
# Check AllgatherOpCost cost
allgather_op_desc = build_comm_desc(
"all_gather",
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
paddle.float32,
[1, 32 * (10**6)],
)
allgather_op_cost = AllgatherOpCost(
op_desc=allgather_op_desc, comm_context=comm_context
)
self.assertTrue(allgather_op_cost.time > 0)
# Check BroadcastOpCost cost
broadcast_op_desc = build_comm_desc(
"broadcast",
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
paddle.float32,
[1, 32 * (10**6)],
)
broadcast_op_cost = BroadcastOpCost(
op_desc=broadcast_op_desc, comm_context=comm_context
)
self.assertTrue(broadcast_op_cost.time > 0)
# Check SendOpCost cost
send_op_desc = build_comm_desc(
"send_v2", [0, 1], paddle.float32, [1, 32 * (10**6)]
)
send_op_cost = SendOpCost(
op_desc=send_op_desc, comm_context=comm_context
)
self.assertTrue(send_op_cost.time > 0)
# Check RecvOpCost cost
recv_op_desc = build_comm_desc(
"recv_v2", [0, 1], paddle.float32, [1, 32 * (10**6)]
)
recv_op_cost = RecvOpCost(
op_desc=recv_op_desc, comm_context=comm_context
)
self.assertTrue(recv_op_cost.time > 0)
# Remove unnecessary files
if os.path.exists(cluster_json_path):
os.remove(cluster_json_path)
if __name__ == "__main__":
unittest.main()