Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
3answers
6k views

Find out how much memory is being used by an object in Python

How would you go about finding out how much memory is being used by an object in python? I know it is possible to find out how much is used by a block of code, but not by an instantiated object ...
18
votes
1answer
360 views

Memory profiling in R - tools for summarizing

R has some tools for memory profiling, like Rprofmem(), Rprof() with option "memory.profiling=TRUE" and tracemem(). The last one can only be used on objects, and hence is useful to follow how many ...
18
votes
9answers
7k views

.NET Memory Profiling Tools

I am on the lookout for good .NET CLR memory profiling tools. My key requirement is that it will play well with IIS and standalone CLR Apps. Ideally I would see what objects are allocated, where they ...
9
votes
1answer
166 views

How can I track down memory peaks? (That's peaks with a p, not an l.)

I've got a kiosk app, which, essentially shows a bunch of slides with various bits of information on them. I initially began coding this over a year ago, when I was beginning with Objective-C and iOS ...
8
votes
1answer
184 views

memory profiling changes memory usage (for the better)

This is actually a follow up question of this question. I managed to get the profiling to work and the problem really seems to be lazy evaluation. The data structure I'm using is a Map Int (Map Int ...
7
votes
1answer
214 views

Memory profiler for numpy

I have a numpy script that -- according to top -- is using about 5GB of RAM: PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 16994 aix 25 0 5813m 5.2g 5.1g S 0.0 22.1 ...
6
votes
4answers
443 views

How can I profile memory of multithread program in Python?

Is there a way to profile memory of a multithread program in Python? For CPU profiling, I am using the cProfile to create seperate profiler stats for each thread and later combine them. However, I ...
4
votes
1answer
48 views

Can I find out all of the objects in a generation of the garbage collector?

I was struck by the thought that it might be interesting if an app could scan what objects are hanging around in its generation 2 or large object heap in the garbage collector periodically, and see if ...
3
votes
1answer
135 views

What's the right way to install gems in a GC Patched ruby?

I want to install a GC Patched Ruby to do a memory profiling on my app. I followed the instructions at http://guides.rubyonrails.org/performance_testing.html#gc and installed a ruby instance at my ...
2
votes
3answers
109 views

How do I run a memory profiler on our test projects?

All, Something's wrong with our test project throwing OOM exceptions, and I suspect the problem is us. We're holding references somehow and memory is never being released. So, I'd like to run a ...
2
votes
1answer
53 views

What kind of leak can cause instance leak of TimeBoundedCache.ExpirableItem in WCF?

I profiled my WCF application using the .NET Memory Profiler, and found that there is instance leak of types TimeBoundedCache.ExpirableItem and Byte[]: The comparison was made using two snapshot ...
2
votes
1answer
212 views

Dispose StreamResourceInfo.Stream

I use StreamResourceInfo.Stream to get BitmapImages from resources. Is it correct to Close and Dispose the stream after using it? I ask because in memory profiler, I get an error if I do so. Memory ...
2
votes
3answers
310 views

How to profile the memory consumption by a set of C++ classes?

I am trying to figure out the memory consumption by my (C++) program using gprof. The program does not have a gui, it is entirely cli based. Now, I am new to gprof, so I read a few tutorials, that ...
2
votes
1answer
345 views

TimerCallback.PerformTimerCallback memory allocation

I have a WCF service and I'm profiling its memory allocation. I see that 36% of the memory allocated on each request, is allocated through TimerCallBack.PerformTimerCallback, which in turn calls the ...
1
vote
1answer
58 views

Why is this DataGridView still referenced by a UserPreferenceChangedEventHandler?

I upgraded a .NET 2.0 Winform Application build with VS2005 to .NET 3.5 SP1. build by VS 2008 The application had a memory leak in .NET 2.0 caused by a ToolStripControl that was referenced by a ...
1
vote
2answers
121 views

How to understand this NetBeans memory profile session in java (visible memory leak)?

I'm begginner in Java and wondering how to analyse this memory profile session in NetBeans and how to watch on it to get assist in searching for memory leak ? What means "Live bytes" ? I can see that ...
1
vote
3answers
119 views

memory usage of in class - converting double to float didn't reduce memory usage as expected

I am initializing millions of classes that are of the following type template<class T> struct node { //some functions private: T m_data_1; T m_data_2; T m_data_3; node* m_parent_1; ...
1
vote
2answers
154 views

Tracking down the source of .NET 4.0 Induced GC

I'm using PerfMonitor.exe ( http://bcl.codeplex.com/wikipage?title=PerfMonitor ) to track down some .NET performance issues of a .NET 4.0 app that uses some third party libraries some of which are ...
1
vote
1answer
151 views

Google App Engine Apptrace Error

I am trying to profile my GAE application using Apptrace When I try to do so, I get the following error Traceback (most recent call last): File ...
1
vote
1answer
69 views

Memory profiler software - How to use them? Examples?

If I want to check a program for memory leaks, what method should I use to go about this? What software is available and how do you use that software? I'd like to see if there is a memory leak ...
1
vote
4answers
334 views

Can I simulate memory scarcity to ferret out a memory leak with a smaller source dataset in a .NET application?

I have an application which predictably generates out-of-memory errors on very, very (very) large datasets - we're trying to fix the problem by optimizing the app's memory management, but the very, ...
1
vote
2answers
148 views

What do you think about mapmalloc?

I found following memory profiler: http://www.solucorp.qc.ca/miscprj/mapmalloc.hc It should be light and fast. Can someone share any experience with it?
1
vote
3answers
160 views

Looking for Multi-Platform Memory Leak detection programs

Ok I have a school assignment to basically pick 3 memory leak detecting programs and run them on a bunch of c++ programs that the teacher supplies us and see how they compare to each other. These 3 ...
0
votes
3answers
54 views

How to handle Nullable<T> types returned from stored proc?

I am looking for some suggestion over best practice (considering Memory and CPU time) to handle Nullable<T> fields returned from a stored procedure on using Linq2Sql. Please consider the ...
0
votes
1answer
53 views

What are some common issues in a winform application for memory leaks?

I try to get to grasp with Ants Memory Profiler. The problem I have is that I dont have an easy application that has a memory leak. I used the sample of Redgate (QueryBee), but it was to contreived ...
0
votes
0answers
83 views

Why does this code not generate more soft page faults? [closed]

I'm looking into possible causes of and solutions for page faults. I've created 2 Qt models to display strings: CleanModel: containing a 2 dimensional array of QChar-array's ListModel: containing a ...
0
votes
1answer
293 views

WP7 memory profiling

I'm attempting to analyze memory usage of our Windows Phone 7 app. Querying the ApplicationPeakMemoryUsage property yields a value of ~90Mb following a soak test. System.GC.GetTotalMemory(true) ...
0
votes
0answers
64 views

Pylons Memory Profiler

I need to profile a Pylons application for memory usage. I've seen a question (and answer) on how to profile memory in Python, but I'm not sure how to apply this to a Pylons app. Thank you
0
votes
0answers
218 views

Using SlimTune to view object allocations

I'm currently using SlimTune to improve my application's speed. As i'm developing on the xbox, i also want to minimise the number of garbage collections. This means minimising allocating objects. I ...
0
votes
0answers
87 views

How does Acumem ThreadSpotter sample applications?

How does Acumem ThreadSpotter (ex SlowSpotter) sample applications? How it is possible to know which memory used by program, without instrumenting it (like valgrind+cachegrind does). ThreadSpotter is ...
0
votes
1answer
1k views

How to use TraceView for memory profiling for android application

I am referencing this to memory profiling of my application, when I launched TraceView with my trace file, there are several colors and items shows on TraceView window. So how can I understand where ...
0
votes
4answers
320 views

How to Profile JVM memory in the code?

I am writing a servlet that I can't test in Eclipse, I need to run on server. I want to do memory profiling and pinpoint any leaks. So, I think I need write debug statements that can tell me current ...
0
votes
1answer
77 views

Measuring Web application session resource consumption

I have this web application that i have created using Wicket, Guice and JPA. I would like to advise my clients on the resource consumption of the application so that i can also advice him on the ...
0
votes
2answers
310 views

Which .NET performance and/or memory profilers will allow me to profile a DLL?

I write a lot of .NET based plug-ins for other programs which are usually compiled as a DLL which is up to the native application to start up. I've been using Equatec's profiler, which works great, ...
0
votes
2answers
2k views

Using VADump to track memory usage - OpenProcess Failed c0000034

After reading an article in the most recent issue of MSDN magazine, I wanted to try using VADump to break down the memory usage of some applications I've written. The only copy of the executable on ...
0
votes
4answers
438 views

What tools and techniques can I use to detect and isolate high memory usage in .NET applications which call into significant unmanaged code?

Suppose I have a WinForms .NET application written in C#. This application allocates large amounts of memory from both the managed and unmanaged heaps. I can (relatively) easily figure out the ...