You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In dgasmith/opt_einsum#217 (comment), @jcmgray stated that running cotengra optimization via oe.contract_path(expression, *operands, optimize=opt) (where opt is a cotengra optimizer) is slower than doing it via quimb. I have to add more detail that the path finding part of the opt_einsum method alone is much slower than the entirety of the run via quimb. As such, the reasoning in that comment applies only to the contraction phase.
What is the recommended way to do the path finding via opt_einsum, that is performant? The main use case is that most circuits are written in Qiskit/Cirq, and with cuQuantum's CircuitToEinsum, it enables one to do contraction of any Qiskit/Cirq circuits.
The text was updated successfully, but these errors were encountered:
Hi @rht, to be clear cotengra and opt_einsum offer different optimizers that will take different amounts of time. But the same whether you call them via opt_einsum or quimb. However,
1 cotengra has more advanced optimizers, that can find better paths for large contractions.
2. For a given path, actually performing the contraction with cotengra can also be much faster as it uses batch matrix multiplication for hpyer indices, (but they will be similar for non-hyper contractions)
If you have the einsum equation and arrays, you can use contegra or quimb directly.
In dgasmith/opt_einsum#217 (comment), @jcmgray stated that running
cotengra
optimization viaoe.contract_path(expression, *operands, optimize=opt)
(whereopt
is acotengra
optimizer) is slower than doing it viaquimb
. I have to add more detail that the path finding part of theopt_einsum
method alone is much slower than the entirety of the run viaquimb
. As such, the reasoning in that comment applies only to the contraction phase.What is the recommended way to do the path finding via
opt_einsum
, that is performant? The main use case is that most circuits are written in Qiskit/Cirq, and withcuQuantum
'sCircuitToEinsum
, it enables one to do contraction of any Qiskit/Cirq circuits.The text was updated successfully, but these errors were encountered: