mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-06-29 10:57:27 +00:00
- Add unit-test for float8_e4m3b15 data type. - And tuner and benchmark for allreduce/allgather algo, make sure the correctness and performance.
19 lines
412 B
Python
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}")
|