mirror of
https://github.com/vladmandic/automatic
synced 2026-08-31 09:31:00 +02:00
d2d5011bd3
Stable.
7 lines
180 B
Python
7 lines
180 B
Python
from modules.dml.optimizer.optimizer import Optimizer
|
|
|
|
class UnknownOptimizer(Optimizer):
|
|
def memory_stats(index):
|
|
# DML TODO: Implement
|
|
return (1073741824, 0)
|