ZeroRVC / zero.py
JacobLinCool's picture
move from rvc webui
645c216
raw
history blame
463 Bytes
import os
zero_is_available = "SPACES_ZERO_GPU" in os.environ
if zero_is_available:
import spaces # type: ignore
print("ZeroGPU is available")
else:
print("ZeroGPU is not available")
# a decorator that applies the spaces.GPU decorator if zero is available
def zero(duration=60):
def wrapper(func):
if zero_is_available:
return spaces.GPU(func, duration=duration)
else:
return func
return wrapper