The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
31 views

How to use memory_profiler (python module) with class methods?

I want to profile time and memory usage of class method. I didn't find out of box solution for this (are there such modules?) and I decided to use timeit for time profiling and memory_usage from ...
0
votes
1answer
55 views

Recreate application from memory snapshot

How do I create a snapshot of running java application in order to be able to load the same snapshot later to recreate exactly the same state of running application? How do I load this snapshot? EDIT ...
0
votes
1answer
39 views

VisualVM Profiling tab missing for Tomcat server

I am Running Tomcat 6.0.29 Java Visual Machine use default is not checked and the location is: C:\Program Files\Java\jdk1.6.0_20\jre\bin\server\jvm.dll Running VisualVM with C:\Program ...
0
votes
0answers
25 views

How to track down a AccessViolationException from a CLI project?

We got a CLI Wrapper that uses C++ Code written by another team. Since a few versions with very large changes in the sourcecode, we get randomly AccessViolationExceptions from the CLI. Its completely ...
1
vote
1answer
75 views

Determine Python's actual memory usage

I am currently trying to debug the memory usage of my Python program (on Windows with CPython 2.7). But unfortunately, I can't even find any way to reliably measure the amount of memory it's currently ...
1
vote
2answers
101 views

High JavaScript memory usage with FileReader, images and <canvas>

I am working on image multi upload, that sounds good, but .. as always memory issue. Script goal is to survive uploading of 100+ images (300Mb+). So if you will find (i am still javascript lame) any ...
3
votes
2answers
53 views

Automate JAVA memory profiling on multiple java instances at the same time

I'm relatively unexperienced in developing JAVA and I was hoping on getting some advice. I have a modular JAVA server application setup in which a high level service that acts as a front-end ...
0
votes
0answers
38 views

iOS UIImageView why Instruments show less live bytes for ImageWithContentsOfFile instead of direct image assignment from UIImagePickerController?

I've stumbled upon a peculiar live bytes issue when profiling my app with instruments. I'm interested if this is any real "optimization", or an instruments glitch. Is there any benefit to having less ...
2
votes
0answers
39 views

What is “Document count” counter in Timeline tab of Chrome Dev Toolbar?

Could someone explain me what does 'Document count' counter stands for in Timeline tab of Chrome Dev Toolbar? In my application I'm using iframes and navigate within a set of pages in one of them. ...
3
votes
0answers
118 views

iPhone iOS6 how to return Image IO type “resident dirty memory” to the OS?

I"m looking at the WWDC 2010 video which deals with advanced memory analysis( session 311): At around 45:00 into the video, the performance engineer discusses what to do with "Resident Dirty ...
0
votes
0answers
48 views

How do you profile an HTML5 game on iOS?

My background is in native game development on Windows. But I'm currently working on an iOS game that's built with HTML5. How do I profile such a game? The typical profiling tools for iOS only tell ...
0
votes
1answer
54 views

Memory Access Profiling

I want to know which addresses an application is accessing in the order of access. I heard that Pin (profiler from Intel) can be used to do this. Is there any way to do this with Pin or some other ...
5
votes
1answer
130 views

Understanding memory leaks in ASP.net using RedGate Memory Profiler

I am running a large ASP.net 4.0 website. It uses a popular .Net content management system, has thousands of content items, hundreds of concurrent users - is basically a heavy website. Over the ...
0
votes
0answers
38 views

Memory sampling with jvisualvm

I am using memory sampling feature of Java Visual VM and I can't answer the questions: Why are there so many instances created? Why does these numbers of instances and bytes keep increasing? For ...
2
votes
3answers
303 views

windbg and SciTech profiler: Failed to load data access DLL for x64 memory dump

I know this has been asked many times but well, I have read them all and have not been able to fix the problem. Basically I have a memory dump of an IIS 7.0 x64 w3wp.exe process running as a web role ...
0
votes
0answers
29 views

GC - sprite with animated movieclip don't deleted from memory

If i add movieclip with simple animation (motionTween) to new sprite and then delete this sprite from stage, movieclip don't deleted from memory. But if i add movieclip with static graphic to sprite, ...
0
votes
1answer
41 views

Are there any good memory profiling tools for windows mobile 6.0?

I googled it a bit around but couldn't find any up to the mark solution. Then thought of having a dedicated question on StackOverflow. Anybody has any idea.
10
votes
2answers
184 views

Advanced debugging advice in WPF GarbageCollection

Situation We are running a large WPF application which does not release memory for quite some time. It is not a real memory leak, as the memory will be released eventually. I know that normally, this ...
0
votes
0answers
48 views

Error is Guppy Memory Profiler [closed]

from guppy import hyp class Words: def __init__(self,filename): '''To read all the words (separated bu newline character) from the file and add it to the dictionary''' ...
5
votes
1answer
251 views

Memory efficient Python batch processing

question I wrote a small python batch processor, that loads binary data, performs numpy operations and stores the results. It consumes much more memory, than it should. I looked at similar ...
0
votes
3answers
149 views

Caching in a high-performance financial application

I am writing an application whose purpose is to optimize a trading strategy. For the sake of simplicity, assume only that we have a trading strategy that says "enter here", then another that says ...
8
votes
2answers
503 views

What do the fields of Ruby's GC.stat mean?

I am using GC.stat to profile memory usage in our Rails app. GC.stat returns a hash with the following keys: :count :heap_used :heap_length :heap_increment :heap_live_num :heap_free_num ...
1
vote
1answer
276 views

Monitoring memory usage in python program

I'm thoroughly confused about the memory usage of a specific python script. I guess I don't really know how to profile the usage despite advice from several SO Questions/Answers. My questions are: ...
1
vote
1answer
162 views

Is there any tool that supports checkpoint based memory usage profiling for C++

I am working on a network based application. I want to see the memory usage between different stages of my application, like memory usage between initialization and release or memory usage between ...
2
votes
2answers
216 views

What is the price of a cache miss

I'm analyzing some code and using cachegrind to get the number of cachemisses(L2 and L3) in the execution. My question is how do I determine the time spend waiting for the cache to get readdy based ...
1
vote
0answers
23 views

Memory Profile for Windows Azure

How do I perform a memory allocation profile for a windows azure application (worker role) on a local (emulator) deployment?
0
votes
1answer
72 views

How to isolate memory leaks in .NET

I know this question has been asked before, but a lot of the info out there seems outdated. Is it possible to isolate a memory leak in a .NET application to an object type or namespace? Is there a ...
0
votes
1answer
328 views

How do I run stand-alone Eclipse MAT?

I generated hprof using jmap. sudo ~/jdk/bin/jmap -F -dump:file=app.hprof 5003 Now, I am getting OOM / 'Java Heap Space' error while parsing *.hprof in eclipse. I think I need to run it as ...
2
votes
2answers
151 views

profiling maximum memory usage in C application - linux

I'm developing C module for php under linux and I'm trying to find a way that could help me profile my code by maximum memory spike (usage). Using valgrind I can get total memory allocation within ...
0
votes
0answers
40 views

Is it possible to get the total number of GC tracked allocated objects programmatically in .NET?

Is it possible to get the total number of GC tracked allocated objects programmatically in .NET? You can do this by attaching a memory profiler. However I can't seem to find this figure at runtime. ...
0
votes
0answers
138 views

Tracking memory leak cause in code

I have a memory leak in my app, probably caused by pushing too many tasks (Runnables) on java.awt.EventQueue. Here is a snapshot from Eclipse MAT: http://postimage.org/image/c6xmjkdbf/full Selected ...
0
votes
1answer
89 views

Discrepancy between what typeperf reports - and every other tool (mem profiler, process explorer, full dump)

Trying to do a before/after comparison of 2 versions of the same .net 3.5 application, I get inconsistent results, depending on what tool I use. typeperf - which I'd think would be authoritative - ...
3
votes
3answers
143 views

Find out where memory is consumed

I have this relatively large numerical application code that may run for a few days and eventually spit out some numbers. The whole thing is written in C++, making use of a bunch of 3rd-party ...
1
vote
1answer
147 views

Python 3 memory profiler or simple alternative [duplicate]

Possible Duplicate: Is there any working memory profiler for Python3 I have some script where I'd like to find out which objects are using up the memory. Moreover it should be for Python 3. ...
0
votes
1answer
47 views

Tool to detect and visualize memory transfers and access

I have a problem with a piece of C code computing a LU decomposition of a sparse matrix. There I write some different routine with various optimizations. Depending on the structure of the non zero ...
6
votes
3answers
580 views

ConcurrentHashMap memory overhead

Does somebody know what is the memory overhead of a ConcurrentHashMap (compared to a "classical" HashMap) ? At construction ? At insertion of an element ?
2
votes
0answers
133 views

Windows Phone profiling - parsing log failed

I am newbie in memory profiling Windows Phone applications. After I stopping memory profiling session Visual Studio tries to parse log, and failes with message "Parsing of log file failed". I am see ...
6
votes
1answer
448 views

Getting Memory Statistics in Java: Runtime vs. MemoryMXBean

I am creating a scheduled executor to read the memory usage of the JVM. I have come across two ways to get memory statistics in a running JVM - Runtime & MemoryMXBean, with the following ...
5
votes
1answer
452 views

How can I track/fix memory leak in tornado-redis using pympler?

I've been trying to use tornado-redis (which is basically a fork of brükva slightly modified to work with tornado.gen interface instead of adisp) in order to deliver events by using redis' pubsub. So ...
3
votes
1answer
334 views

.Net memory profiler and <GCHandle> pinned

I am using Scitech's .Net Memory Profiler to check some stuff in my app (running on WinXP 64). I am seeing a lot cases where there is a single live instance of a list my app uses which is always 32 ...
1
vote
0answers
46 views

Test suite to generate page faults and LLC miss events

I need to profile a virtual machine memory access in terms of the number of page faults per second generated and number of last level cache miss encountered per second. Is there a standard test suite ...
9
votes
3answers
5k views

How do I use a dump file to diagnose a memory leak?

I have a .NET service with a normal private working set of about 80 MB. During a recent load test, the process reached 3.5 GB memory usage causing the whole machine to be low on physical memory (3.9 ...
0
votes
4answers
485 views

Can there be memory leaks in .NET? If yes, what are the best tool out there?

I am working on a C# 4.0 managed code application. I am using external DLLs which are not CLS compliant. Do I need a memory leak detection tool to check for memory leaks in the DLLs? If yes what are ...
8
votes
4answers
886 views

C# Out of memory exception - warning strategy

Inside a complex multithreaded application I am hitting an out-of-memory exceptions maybe once a week. The application is sending/reading massive amounts of data via several sockets, where the read ...
0
votes
3answers
126 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 ...
4
votes
1answer
89 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 ...
2
votes
3answers
396 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 ...
1
vote
1answer
179 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 ...
0
votes
1answer
134 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
150 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 ...

1 2