mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-04-20 06:49:29 +00:00
AlltoAll Test Support (#606)
Co-authored-by: Binyang Li <binyli@microsoft.com>
This commit is contained in:
@@ -75,8 +75,10 @@ def bench_correctness(
|
||||
coll = "all_gather"
|
||||
elif "reducescatter" in collective:
|
||||
coll = "reduce_scatter"
|
||||
else:
|
||||
elif "allreduce" in collective:
|
||||
coll = "all_reduce"
|
||||
else:
|
||||
coll = "all_to_all"
|
||||
test_data_kernel_name = "test_data_%s_%s" % (coll, dtype_str)
|
||||
|
||||
file_dir = os.path.dirname(os.path.abspath(__file__))
|
||||
|
||||
Reference in New Issue
Block a user