mirror of https://github.com/hpcaitech/ColossalAI
12 lines
243 B
Python
12 lines
243 B
Python
|
from dataclasses import dataclass
|
||
|
|
||
|
__all__ = ['SolverOptions']
|
||
|
|
||
|
|
||
|
@dataclass
|
||
|
class SolverOptions:
|
||
|
"""
|
||
|
SolverOptions is a dataclass used to configure the preferences for the parallel execution plan search.
|
||
|
"""
|
||
|
fast: bool = False
|