Spaces:
Sleeping
Sleeping
Fix ZeroGPU compat: torch 2.6.0 -> 2.8.0, update causal_conv1d wheel
Browse files
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.
|
| 22 |
-
f"causal_conv1d-1.
|
| 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:
|