Ticket #4683 (closed defect: fixed)
memory leak when performing the calculation CDF(I)^2
| Reported by: | ggrafendorfer | Owned by: | somebody |
|---|---|---|---|
| Priority: | major | Milestone: | sage-4.3.1 |
| Component: | basic arithmetic | Keywords: | |
| Cc: | Author(s): | ||
| Report Upstream: | N/A | Reviewer(s): | |
| Merged in: | Work issues: |
Description
Using sage 3.2 (compiled from sources) on a 32-bit Core Duo machine running Debian Etch, when performing
georg@HILBERT:~/Daten/Sync/Phd/Code/sde$ sage ---------------------------------------------------------------------- | Sage Version 3.2, Release Date: 2008-11-20 | | Type notebook() for the GUI, and license() for information. | ---------------------------------------------------------------------- sage: v = [CDF(i)^2 for n in range(50000)] sage: v = [CDF(i)^2 for n in range(50000)] sage: v = [CDF(i)^2 for n in range(50000)]
memory consumption increases about 70Mb which each command (at least on my machine), this does not happen if one writes
sage: v = [CDF(i^2.) for n in range(50000)]
, however, results are the same,
Georg
Change History
Note: See
TracTickets for help on using
tickets.
