mirror of https://github.com/hpcaitech/ColossalAI
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
666 B
31 lines
666 B
from dataclasses import dataclass
|
|
from enum import Enum
|
|
|
|
__all__ = ['SolverOptions']
|
|
|
|
|
|
class SolverPerference(Enum):
|
|
"""
|
|
This enum class is to define the solver preference.
|
|
"""
|
|
STANDARD = 0
|
|
DP = 1
|
|
TP = 2
|
|
|
|
|
|
class DataloaderOption(Enum):
|
|
"""
|
|
This enum class is to define the dataloader option.
|
|
"""
|
|
REPLICATED = 0
|
|
DISTRIBUTED = 1
|
|
|
|
|
|
@dataclass
|
|
class SolverOptions:
|
|
"""
|
|
SolverOptions is a dataclass used to configure the preferences for the parallel execution plan search.
|
|
"""
|
|
solver_perference: SolverPerference = SolverPerference.STANDARD
|
|
dataloader_option: DataloaderOption = DataloaderOption.REPLICATED
|