opt_einsum.sharing.shared_intermediates

opt_einsum.sharing.shared_intermediates(cache=None)[source]

Context in which contract intermediate results are shared.

Note that intermediate computations will not be garbage collected until 1. this context exits, and 2. the yielded cache is garbage collected (if it was captured).

Parameters:cache (dict) – If specified, a user-stored dict in which intermediate results will be stored. This can be used to interleave sharing contexts.
Returns:cache – A dictionary in which sharing results are stored. If ignored, sharing results will be garbage collected when this context is exited. This dict can be passed to another context to resume sharing.
Return type:dict