mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2026-01-16 15:37:57 +00:00
* optimized 1d layer apis; reorganized nn.layer modules; fixed tests * fixed 2.5d runtime issue * reworked split batch, now called in trainer.schedule.load_batch Co-authored-by: BoxiangW <45734921+BoxiangW@users.noreply.github.com>
10 lines
242 B
Python
10 lines
242 B
Python
from .colossalai_layer import *
|
|
from .parallel_1d import *
|
|
from .parallel_2d import *
|
|
from .parallel_2p5d import *
|
|
from .parallel_3d import *
|
|
from .parallel_sequence import *
|
|
from .utils import *
|
|
from .vanilla import *
|
|
from .wrapper import *
|