ebinan92 commited on
Commit
9f1bf28
·
verified ·
1 Parent(s): 534df4b

Fix ZeroGPU compat: torch 2.6.0 -> 2.8.0, update causal_conv1d wheel

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,8 +18,8 @@ from threading import Thread
18
  # Soft-fails on unsupported combos — flash-linear-attention falls back to its torch impl.
19
  _CAUSAL_CONV1D_PY = f"cp{sys.version_info.major}{sys.version_info.minor}"
20
  _CAUSAL_CONV1D_WHEEL = (
21
- "https://github.com/Dao-AILab/causal-conv1d/releases/download/v1.5.0.post8/"
22
- f"causal_conv1d-1.5.0.post8+cu12torch2.6cxx11abiFALSE-"
23
  f"{_CAUSAL_CONV1D_PY}-{_CAUSAL_CONV1D_PY}-linux_x86_64.whl"
24
  )
25
  try:
 
18
  # Soft-fails on unsupported combos — flash-linear-attention falls back to its torch impl.
19
  _CAUSAL_CONV1D_PY = f"cp{sys.version_info.major}{sys.version_info.minor}"
20
  _CAUSAL_CONV1D_WHEEL = (
21
+ "https://github.com/Dao-AILab/causal-conv1d/releases/download/v1.6.2.post1/"
22
+ f"causal_conv1d-1.6.2.post1+cu12torch2.8cxx11abiTRUE-"
23
  f"{_CAUSAL_CONV1D_PY}-{_CAUSAL_CONV1D_PY}-linux_x86_64.whl"
24
  )
25
  try: