File size: 258 Bytes
cc69848
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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