[issue401229] Optional memory profiler

2022-04-10 Thread admin
Change by admin : ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue401229] Optional memory profiler

2022-04-10 Thread admin
Change by admin : -- github: None -> 32959 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

Fil v0.11.0, a memory profiler for scientists and data scientists

2020-11-19 Thread Itamar Turner-Trauring
exactly what Fil will help you find. Fil an open source memory profiler designed for data processing applications written in Python, and includes native support for Jupyter. It is designed to be high-performance and easy to use. At the moment it only runs on Linux and macOS. You can learn more

memprof - a memory profiler for Python

2013-06-27 Thread dana . develop
Hello, I'd like to announce memprof, a memory profiler for Python: http://jmdana.github.io/memprof/ memprof logs and plots the memory usage of all the variables during the execution of the decorated methods. The source code is available in GitHub: https://github.com/jmdana/memprof

Memory Profiler

2006-01-11 Thread Dave
Hi, Is there any memory profiler for Python programs? I would like to see how much memory objects take up, cache misses, etc. I tried to patch PySizer, but got a build error (Error 138). Thanks! __ Do You Yahoo!? Tired of spam? Yahoo! Mail has

Re: Memory Profiler

2006-01-11 Thread Grig Gheorghiu
See http://pycheesecake.org/wiki/PythonTestingToolsTaxonomy#MiscellaneousPythonTestingTools In particular, PySizer and HeapPy might be what you're looking for. I can't say for sure, since I haven't used these tools myself. Grig -- http://mail.python.org/mailman/listinfo/python-list

Re: Memory Profiler

2006-01-11 Thread Stephen Kellett
In message [EMAIL PROTECTED], Dave [EMAIL PROTECTED] writes Is there any memory profiler for Python programs? I Python Memory Validator http://www.softwareverify.com/pythonMemoryValidator/index.html Stephen -- Stephen Kellett Object Media Limitedhttp://www.objmedia.demon.co.uk

Re: memory profiler?

2005-04-23 Thread John Reese
On Wed, 20 Apr 2005 23:06:51 -0400, Peter Hansen [EMAIL PROTECTED] wrote: John Reese wrote: Is there a memory or heap profiler for python programs? So that, for example, if a program was bloating over time I could see how many of each object there were and maybe even where the references

Re: memory profiler?

2005-04-21 Thread Diez B. Roggisch
Peter Hansen wrote: John Reese wrote: Is there a memory or heap profiler for python programs? So that, for example, if a program was bloating over time I could see how many of each object there were and maybe even where the references were? The gc module has a variety of helpful features

memory profiler?

2005-04-20 Thread John Reese
Good afternoon, ha ha ha! Is there a memory or heap profiler for python programs? So that, for example, if a program was bloating over time I could see how many of each object there were and maybe even where the references were? -- http://mail.python.org/mailman/listinfo/python-list

Re: memory profiler?

2005-04-20 Thread Peter Hansen
John Reese wrote: Is there a memory or heap profiler for python programs? So that, for example, if a program was bloating over time I could see how many of each object there were and maybe even where the references were? The gc module has a variety of helpful features like that. -Peter --