Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
cf5f3d0
1
Parent(s):
f98fd97
Increase GPU duration time 25 mins
Browse files
app.py
CHANGED
@@ -730,7 +730,7 @@ def score_and_create_matrix_all_singles_impl(sequence,mutation_range_start=None,
|
|
730 |
# Apply Zero GPU decorator if available
|
731 |
if SPACES_AVAILABLE:
|
732 |
try:
|
733 |
-
score_and_create_matrix_all_singles = spaces.GPU(duration=
|
734 |
except Exception as e:
|
735 |
print(f"Warning: Could not apply Zero GPU decorator: {e}")
|
736 |
print("Falling back to CPU mode")
|
|
|
730 |
# Apply Zero GPU decorator if available
|
731 |
if SPACES_AVAILABLE:
|
732 |
try:
|
733 |
+
score_and_create_matrix_all_singles = spaces.GPU(duration=1500)(score_and_create_matrix_all_singles_impl)
|
734 |
except Exception as e:
|
735 |
print(f"Warning: Could not apply Zero GPU decorator: {e}")
|
736 |
print("Falling back to CPU mode")
|