opt_einsum
opt_einsum copied to clipboard
Disable torch.backends.opt_einsum to avoid duplicate work
Description
Recently, torch.einsum
has improved to automatically optimize for multi-contractions if the opt_einsum library is installed. This way, torch users can reap benefits easily. However, this change may inadvertently cause regressions for those who use opt_einsum.contract
with torch tensors. While these use cases can be improved by just changing opt_einsum.contract
calls to torch.einsum
, it is not right to cause silent regressions.
Consider the following example:
import torch
import opt_einsum
A = torch.rand(4, 5)
B = torch.rand(5, 6)
C = torch.rand(6, 7)
D = opt_einsum.contract('ij,jk,kl->il', A, B, C)
Looking through the code, opt_einsum.contract
will figure out an ideal path + return that path in the form of contraction tuples (commonly pairs). Then, for each of the contraction tuples, opt_einsum
may call BACK into the torch backend and call torch.einsum
.
Since the contractions are commonly pairs, calling back into torch.einsum will do what it used to--just directly do the contraction.
HOWEVER. There are cases where the contractions are not necessarily pairs (@dgasmith had mentioned that hadamard products are faster when chained vs staggered in pairs) and in this case, torch.einsum
will do unnecessary work in recomputing an ideal path, which is a regression from the previous state.
This PR simply asks "hey, does the opt_einsum backend exist in torch?" If so, this means torch.einsum
will do the unnecessary work in recomputing an ideal path, so let's just turn it off.
Todos
Notable points that this PR has either accomplished or will accomplish.
- [x] Add the code to disable torch's opt_einsum optimization
- [ ] Test cases?
Questions
- [ ] Unsure how to best test this/what use case would ensure that, without this code, the path would be computed more than once, and after this code, the path would only be computed at the top level. We could just test that torch.backends.opt_einsum.enabled is globally False, I guess.
Status
- [ ] Ready to go
Codecov Report
Merging #205 (9a836cf) into master (1a984b7) will increase coverage by
3.06%
. The diff coverage is50.00%
.
:exclamation: Current head 9a836cf differs from pull request most recent head fbd3f9c. Consider uploading reports for the commit fbd3f9c to get more accurate results
tagging @dgasmith to get it on the radar
@janeyx99 Apologies, I'm traveling for the next week and will be slow to respond.
@jcmgray Can you get eyes on this?
Hi! I'm guessing torch
does not have a way to turn off the path optimization at call time (e.g. torch.einsum(..., optimize=False)
)? That would obviously be ideal.
My thoughts would be the following:
- it's rare to come across paths where not contracting pairwise is practically beneficial (theoretically ops-wise pairwise is always optimal). I think currently only imposing a size limit makes
opt_einsum
produce these? - In the case that say a 3 tensor contraction is encountered, the path optimization would only run on the those 3, not the whole expression - i.e. unlikely to have much overhead
So in general my opinion is that is unlikely to make a difference for most cases. Other considerations:
- for testing and debugging, it is useful to be able to turn off the path (see e.g. #202)
- some users might be calling
oe.contract
andtorch.einsum
and expect both to be fast, in which case it might be confusing that callingopt_einsum
makes this global change that slows downtorch
.
A bit hacky, but could we try and call _VF.einsum
directly and skip the torch
side python processing?
@janeyx99 Thoughts here?
Ah, @jcmgray thank you for the thoughts. I too believe that this change should not make a huge difference given the same reasons you provided, and I do agree there are edge cases where it may be confusing to set the global state for the user.
We could just try directly calling _VF.einsum :p. We do also have a local context manager where I could do something like
if torch has the attributes and whatnot:
with torch.backends.opt_einsum.flags(enabled=False):
return torch.einsum(eq, ops)
return torch.einsum(eq, ops)
Would this be less hacky?
@jcmgray / @janeyx99 Gentle pings here on solutions. I don't have a strong opinion, but it would be nice to keep this moving.
My view on this is that maybe it’s not a big deal and so the complexity/additional check may not be worth it. That said, I would be happy to try calling _VF.einsum directly if that is preferable to the context manager.
I think it's a rare and small enough effect that I'd be happy to ignore. Having said that:
- I suppose to respect
size_limit
, calling the raweinsum
might be important. - The time difference is small but not zero:
import torch
from torch import _VF
x = torch.rand((2,))
y = torch.rand((2,))
z = torch.rand((2,))
eq = "a,a,a->a"
%timeit torch.einsum(eq, x, y, z)
# 37.3 µs ± 70.1 ns per loop (mean ± std. dev. of 7 runs, 10,000 loops each)
%%timeit
with torch.backends.opt_einsum.flags(enabled=False):
torch.einsum(eq, x, y, z)
# 8.94 µs ± 95.4 ns per loop (mean ± std. dev. of 7 runs, 100,000 loops each)
%timeit _VF.einsum(eq, (x, y, z))
# 3.86 µs ± 36 ns per loop (mean ± std. dev. of 7 runs, 100,000 loops each)
we could do something like:
from functools import lru_cache
@lru_cache(None)
def get_einsum():
try:
from torch import _VF
return _VF.einsum
except ImportError: # maybe other errors, AttributeError?
import torch
def einsum_no_opt(*args, **kwargs):
with torch.backends.opt_einsum.flags(enabled=False):
return torch.einsum(*args, **kwargs)
return einsum_no_opt
that way if relying on _VF.einsum
breaks somehow, we have a sensible fallback.
@dgasmith looks like there are conda package conflicts that aren't related to the PR
@janeyx99 Given PyTorch has likely moved on since this PR was made and deprecated older versions, what is optimal to do here?
I'm willing to clean this PR up if it is still advantageous from the opt_einsum perspective, but it has been sufficiently long enough where maybe this doesn't matter so much.
My understanding was this PR would be optimal from a Torch perspective. If it's no longer needed or if Torch's minimum supported version no longer requires this patch, we can safely close.
Ah, my understanding was that people calling into opt_einsum.contract will get slight silent regressions because the code path will look like
- opt_einsum.contract
- calls into torch.einsum
- which calls contract_path (duplicating the work) to get the path
- and then lastly calls the C++ einsum with the path
But if this is not a big deal, then I'm fine with leaving this unmerged!
@janeyx99 Ah- I would recommend having PyTorch
skip contract_path
when len(operands) <= 2
as there is nothing the code can do. While we do optimize for this fast path within opt_einsum
there is still some parsing overhead. By this small optimization PyTorch can lower torch.einsum
's latency in general.
@dgasmith we already do that! Though I’m not sure how that’s relevant to the code path I had in mind above. I think it’s also sufficient to document that torch has already upstreamed opt_einsum though
@janeyx99 Got it, then we only deal with the edge case where it's optimal to perform a three-product Hadamard or similar. The performance hit is likely quite minimal. Would you mind closing this PR and adding a note to the torch documentation that you should use the torch implementations instead, unless you have a complex case?
okay! closing this PR, and planning to work on PyTorch issue 127109 instead.