mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-05-28 10:04:08 +00:00
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
|