Spaces:
Runtime error
Runtime error
File size: 275 Bytes
e7cae83 |
1 2 3 4 5 6 7 8 9 10 |
import platform
from facefusion.memory import limit_system_memory
def test_limit_system_memory() -> None:
assert limit_system_memory(4) is True
if platform.system().lower() == 'darwin' or platform.system().lower() == 'linux':
assert limit_system_memory(1024) is False
|