fixed causvid scheduler

This commit is contained in:
deepbeepmeep
2025-07-16 18:09:06 +02:00
parent 49aaa12689
commit a356c6af4b
6 changed files with 10 additions and 26 deletions

View File

@@ -23,14 +23,7 @@ from .mlp import Mlp
logger = logging.getLogger("dinov2")
try:
from xformers.ops import fmha
from xformers.ops import scaled_index_add, index_select_cat
XFORMERS_AVAILABLE = True
except ImportError:
# logger.warning("xFormers not available")
XFORMERS_AVAILABLE = False
XFORMERS_AVAILABLE = False
class Block(nn.Module):