For example, how much memory is required to store a list of one million (32-bit) integers?
alist = range(1000000) # or list(range(1000000)) in Python 3.0
|
3
|
For example, how much memory is required to store a list of one million (32-bit) integers?
|
|||
|
|
|
|
I'm wary of why you're asking. Are you trying to figure out how much memory you'll need for a given implementation? Say, you're going to read 10,000,000 widgets and want to know how much RAM it will suck? If that's the case, rather than trying to figure out how much RAM each widget takes, figure out how much RAM, say, 10,000 widgets takes and multiply up to get your actual size. |
||
|
|
|
Obviously returned numbers don't include memory consumed by contained objects (sys.getsizeof(1) == 12). |
|||
|
|
|
Addressing "tuple" part of the question Declaration of CPython's PyTuple in a typical build configuration boils down to this:
Size of PyTuple instance is fixed during it's construction and cannot be changed afterwards. The number of bytes occupied by PyTuple can be calculated as
This gives shallow size of tuple. To get full size you also need to add total number of bytes consumed by object graph rooted in It's worth noting that tuple construction routines make sure that only single instance of empty tuple is ever created (singleton). References: Python.h, object.h, tupleobject.h, tupleobject.c |
||||
|
|
|
Useful links: How to get memory size/usage of python object Memory sizes of python objects? if you put data into dictionary, how do we calculate the data size? However they don't give a definitive answer. The way to go:
Update: Recipe 546530: Size of Python objects (revised)
|
|||
|
|
|
|
This is implementation specific, I'm pretty sure. Certainly it depends on the internal representation of integers - you can't assume they'll be stored as 32-bit since Python gives you arbitrarily large integers so perhaps small ints are stored more compactly. On my Python (2.5.1 on Fedora 9 on core 2 duo) the VmSize before allocation is 6896kB, after is 22684kB. After one more million element assignment, VmSize goes to 38340kB. This very grossly indicates around 16000kB for 1000000 integers, which is around 16 bytes per integer. That suggests a lot of overhead for the list. I'd take these numbers with a large pinch of salt. |
||
|
|
|
|
"It depends." Python allocates space for lists in such a way as to achieve amortized constant time for appending elements to the list. In practice, what this means with the current implementation is... the list always has space allocated for a power-of-two number of elements. So range(1000000) will actually allocate a list big enough to hold 2^20 elements (~ 1.045 million). This is only the space required to store the list structure itself (which is an array of pointers to the Python objects for each element). A 32-bit system will require 4 bytes per element, a 64-bit system will use 8 bytes per element. Furthermore, you need space to store the actual elements. This varies widely. For small integers (-5 to 256 currently), no additional space is needed, but for larger numbers Python allocates a new object for each integer, which takes 10-100 bytes and tends to fragment memory. Bottom line: it's complicated and Python lists are not a good way to store large homogeneous data structures. For that, use the PS- Tuples, unlike lists, are not designed to have elements progressively appended to them. I don't know how the allocator works, but don't even think about using it for large data structures :-) |
||||||||
|