mirror of https://github.com/hpcaitech/ColossalAI
fix conflicts to beautify the code
commit
7416e4943b
|
@ -20,7 +20,7 @@ class PlacementPolicy(ABC):
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
gemini_manager: "GeminiManager",
|
gemini_manager: "GeminiManager", # TODO @botbw: solve circular import
|
||||||
chunk_manager: ChunkManager,
|
chunk_manager: ChunkManager,
|
||||||
mem_stats_collector: Optional[ChunkMemStatsCollector] = None,
|
mem_stats_collector: Optional[ChunkMemStatsCollector] = None,
|
||||||
max_prefetch: int = 0,
|
max_prefetch: int = 0,
|
||||||
|
@ -41,9 +41,8 @@ class PlacementPolicy(ABC):
|
||||||
) -> None:
|
) -> None:
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
@abstractmethod
|
|
||||||
def get_prefetch_chunks(self) -> List[Chunk]:
|
def get_prefetch_chunks(self) -> List[Chunk]:
|
||||||
raise NotImplementedError
|
return [] # no prefetch by default
|
||||||
|
|
||||||
|
|
||||||
class StaticPlacementPolicy(PlacementPolicy):
|
class StaticPlacementPolicy(PlacementPolicy):
|
||||||
|
|
Loading…
Reference in New Issue