Remove wrong self reference in CUDA support for invokeai

This commit is contained in:
Cheka 2022-10-18 20:28:28 -03:00 committed by AUTOMATIC1111
parent da72becb13
commit 2fd7935ef4

View File

@ -181,7 +181,7 @@ def einsum_op_cuda(q, k, v):
mem_free_torch = mem_reserved - mem_active
mem_free_total = mem_free_cuda + mem_free_torch
# Divide factor of safety as there's copying and fragmentation
return self.einsum_op_tensor_mem(q, k, v, mem_free_total / 3.3 / (1 << 20))
return einsum_op_tensor_mem(q, k, v, mem_free_total / 3.3 / (1 << 20))
def einsum_op(q, k, v):
if q.device.type == 'cuda':