ml_test / lycoris /utils /xformers_utils.py
tonyshark's picture
Upload 132 files
cc69848 verified
raw
history blame contribute delete
258 Bytes
memory_efficient_attention = None
try:
import xformers
except Exception:
pass
try:
from xformers.ops import memory_efficient_attention
XFORMERS_AVAIL = True
except Exception:
memory_efficient_attention = None
XFORMERS_AVAIL = False