Update Wall-X to 1.1.0 (#104)

This commit is contained in:
Starrick Liu
2026-06-15 11:40:00 +08:00
committed by GitHub
parent e23a586846
commit 72834e7de5
200 changed files with 33916 additions and 16771 deletions
+9
View File
@@ -0,0 +1,9 @@
from .utils import get_optimizer, register_optimizer
# DMuon is optional (external package). Skip registration if dmuon isn't
# installed so wall_x still imports; the registry will simply not have
# "dmuon" and get_optimizer("dmuon", ...) will raise a clear KeyError.
try:
from . import dmuon # noqa: F401 - side-effect registers "dmuon"
except ImportError:
pass