MemoryError using NumPy
Fernando Pérez
fperez at pizero.colorado.edu
Thu Feb 14 13:25:30 EST 2002
More information about the Python-list mailing list
Thu Feb 14 13:25:30 EST 2002
- Previous message (by thread): ActivePython 2.2.0 Alpha
- Next message (by thread): MemoryError using NumPy
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Take a look at weave at http://www.scipy.org/site_content/weave, in particular the blitz() module may be what you need. It generates c++ for your numeric calls, which in many cases eliminates the need for temporaries. That's one of Numpy's weaknesses, that it generates too many temps when doing things and with large data sets it becomes a hard problem. weave.blitz() and weave.inline() offer ways out of that. cheers, f
- Previous message (by thread): ActivePython 2.2.0 Alpha
- Next message (by thread): MemoryError using NumPy
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list