mirror of
https://github.com/vladmandic/automatic
synced 2026-09-06 21:10:45 +02:00
09ae33cdf7
VERY UNSTABLE & NOT TESTED.
9 lines
191 B
Python
9 lines
191 B
Python
from abc import *
|
|
from typing import *
|
|
|
|
class Optimizer(metaclass=ABCMeta):
|
|
driver: Any = None
|
|
@abstractmethod
|
|
def memory_stats(self, index: int) -> Tuple[int, int]:
|
|
pass
|