mirror of https://github.com/suno-ai/bark.git
Enable MPS (if available) by default on Mac
parent
599fed040e
commit
6939705d18
|
@ -90,7 +90,7 @@ def _cast_bool_env_var(s):
|
|||
|
||||
|
||||
USE_SMALL_MODELS = _cast_bool_env_var(os.environ.get("SUNO_USE_SMALL_MODELS", "False"))
|
||||
GLOBAL_ENABLE_MPS = _cast_bool_env_var(os.environ.get("SUNO_ENABLE_MPS", "False"))
|
||||
GLOBAL_ENABLE_MPS = _cast_bool_env_var(os.environ.get("SUNO_ENABLE_MPS", "True"))
|
||||
OFFLOAD_CPU = _cast_bool_env_var(os.environ.get("SUNO_OFFLOAD_CPU", "False"))
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue