add sendrecv correctness check

This commit is contained in:
Ubuntu
2026-04-03 20:01:22 +00:00
parent a4bb8fb4bf
commit 194a79f772

View File

@@ -70,6 +70,7 @@ def bench_correctness(
):
type_size = cp.dtype(parse_dtype(dtype_str)).itemsize
print("collective: ", collective)
fill_data_kernel_name = "fill_data_%s" % dtype_str
if "allgather" in collective:
coll = "all_gather"
@@ -78,7 +79,7 @@ def bench_correctness(
elif "allreduce" in collective:
coll = "all_reduce"
else:
coll = "all_to_all"
coll = "sendrecv"
test_data_kernel_name = "test_data_%s_%s" % (coll, dtype_str)
file_dir = os.path.dirname(os.path.abspath(__file__))