multimodalart HF Staff commited on
Commit
625311b
·
verified ·
1 Parent(s): 36a4745

Conservative initial ZeroGPU duration estimate

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -252,9 +252,9 @@ def _rollout_tflops(total_len: int, steps: int) -> float:
252
 
253
 
254
  # Calibrated against measured wall-clock on ZeroGPU (see README).
255
- _TFLOPS_PER_SEC = 90.0
256
- _VAE_SEC_PER_LATENT_FRAME = 0.10
257
- _FIXED_OVERHEAD_SEC = 15.0
258
 
259
 
260
  def _duration(*args, **kwargs) -> int:
 
252
 
253
 
254
  # Calibrated against measured wall-clock on ZeroGPU (see README).
255
+ _TFLOPS_PER_SEC = 45.0
256
+ _VAE_SEC_PER_LATENT_FRAME = 0.15
257
+ _FIXED_OVERHEAD_SEC = 20.0
258
 
259
 
260
  def _duration(*args, **kwargs) -> int: