Files
mscclpp/python/mscclpp_benchmark/__init__.py
Binyang Li c9f8be64bb Add collective benchmark and correctness check (#814)
- Add unit-test for float8_e4m3b15 data type.
- And tuner and benchmark for allreduce/allgather algo, make sure the
correctness and performance.
2026-06-04 09:22:10 -07:00

19 lines
412 B
Python

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
__all__ = [
"MscclppAllReduce1",
"MscclppAllReduce2",
"MscclppAllReduce3",
"MscclppAllReduce4",
"MscclppAllReduce5",
]
def __getattr__(name):
if name in __all__:
from . import mscclpp_op
return getattr(mscclpp_op, name)
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")