mirror of https://github.com/hpcaitech/ColossalAI
15 lines
231 B
Python
15 lines
231 B
Python
|
class LayoutException(Exception):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class DuplicatedShardingDimensionError(LayoutException):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class ShardingNotDivisibleError(LayoutException):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class ShardingOutOfIndexError(LayoutException):
|
||
|
pass
|