-
-
Notifications
You must be signed in to change notification settings - Fork 676
Description
Here is a small example illustrating the issue.
The memory footprint of the following piece of code grows indefinitely.
sage: K = GF(1<<55,'t')
sage: a = K.random_element()
sage: while 1:
....: E = EllipticCurve(j=a); P = E.random_point(); 2*P; del E, P;
E and P get deleted, but when 2*P is computed, the action of integers on A, the abelian group of rational points of the ellitpic curve, gets cached in the corecion model.
A key-value pair is left in coercion_model._action_maps dict:
(ZZ,A,*) : IntegerMulAction
Moreover there is at least also references to A in the IntegerMulAction and one in ZZ._action_hash.
So weak refs should be used in all these places if it does not slow things too much.
To be merged with #11521. Apply:
and then the patches from #11521.
Depends on #13145
Depends on #13741
Depends on #13746
Depends on #11521
Dependencies: #13145, #13741, #13746, to be merged with #11521
CC: @jpflori @zimmermann6 @vbraun @robertwb @nbruin @malb @orlitzky
Component: coercion
Keywords: weak cache coercion Cernay2012
Author: Simon King, Jean-Pierre Flori
Reviewer: Jean-Pierre Flori, Simon King, Nils Bruin
Merged: sage-5.5.beta0
Issue created by migration from https://trac.sagemath.org/ticket/715