mirror of
https://github.com/vladmandic/automatic
synced 2026-09-01 10:01:01 +02:00
7 lines
244 B
Python
7 lines
244 B
Python
from modules.dml.memctl.memctl import MemoryControl
|
|
|
|
class IntelMemoryControl(MemoryControl):
|
|
def mem_get_info(index: int):
|
|
# DML TODO: Implement or find a general (and also lightweight) way.
|
|
return (1073741824, 1073741824)
|