dcu adapter ernie45t (#2756)

Co-authored-by: lifu <lifu@sugon.com>
Co-authored-by: yongqiangma <xing.wo@163.com>
This commit is contained in:
lifulll
2025-07-09 18:56:27 +08:00
committed by GitHub
parent 03a74995b8
commit 1f28bdf994
30 changed files with 1133 additions and 41 deletions

View File

@@ -37,3 +37,9 @@ if current_platform.is_gcu():
from .gcu import *
if hasattr(gcu, '__all__'):
__all__.extend(gcu.__all__)
if current_platform.is_dcu():
from .dcu import *
from . import dcu
if hasattr(dcu, '__all__'):
__all__.extend(dcu.__all__)