mirror of
https://github.com/vladmandic/automatic
synced 2026-08-27 07:31:01 +02:00
7 lines
229 B
Python
7 lines
229 B
Python
from modules.dml.optimizer.optimizer import Optimizer
|
|
|
|
class IntelOptimizer(Optimizer):
|
|
def memory_stats(index: int):
|
|
# DML TODO: Implement or find a general (and also lightweight) way.
|
|
return (1073741824, 0)
|