memory-profiling Questions
0
I am trying to understand how to interpret the results of the instrument profiler on a mac with xcode. Primarily I am trying to understand the difference b/w Weight and Self Weight.
This is my re...
Soilasoilage asked 20/9, 2017 at 6:7
1
Solved
I am using Memory Profiler module to get the memory usage of my python code following this answer. However, I am not able to interpret the output from %memit magic (or the output using the @profile...
Sibel asked 26/7, 2017 at 5:58
1
Solved
I have a utility that spawns multiple workers using the Python multiprocessing module, and I'd like to be able to track their memory usage via the excellent memory_profiler utility, which does ever...
Galanti asked 13/7, 2016 at 18:7
1
When we try to take a memory snapshot in ie11's memory profiler (windows 10) We get an out of memory exception.
Is there a way to tell ie dev tools to use more memory? our computer has much more m...
Kestrel asked 7/11, 2015 at 14:6
2
Solved
I'm learning Go, and as an exercise I wanted to implement a linked list. For reference I looked at the official Go code (https://golang.org/src/container/list/list.go) . One thing that stuck with m...
Campagna asked 20/8, 2016 at 10:16
2
Solved
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 ...
Pneumonectomy asked 3/3, 2011 at 18:32
2
Solved
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....
Doubtful asked 3/4, 2013 at 7:24
7
I have a table "class" which is linked to tables "student" and "teachers".
A "class" is linked to multiple students and teachers via foriegn key relationship.
When I use hibernate associations an...
Amylolysis asked 10/2, 2016 at 19:13
1
Solved
As this link stated for defining traits for a template class we should define it manually or we extract our class from the trait class. But I want to make this process automatically, for this reaso...
Chaves asked 14/2, 2016 at 12:33
1
Solved
While trying to fine-tune some memory leaks in the Python bindings for some C/C++ functions I cam across some strange behavior pertaining to the garbage collection of Numpy arrays.
I have created...
Bollen asked 15/7, 2015 at 5:29
1
I want to use the memory profiler of the visual studio 2013 ultimate for profiling a WPF application.
But there seems to be a problem: After running the profiler there is no data available/showed.
...
Carlynne asked 14/7, 2014 at 14:29
1
How can I measure, how much memory a Clojure program uses?
I've noted that even small programs, that say make something like
(println "Hello World")
can consume tens of megabytes of RAM, accor...
Malka asked 6/10, 2014 at 9:33
5
Solved
How would you go about finding out how much memory is being used by an object? I know it is possible to find out how much is used by a block of code, but not by an instantiated object (anytim...
Pudency asked 29/8, 2008 at 4:59
3
In Python 2 there's a couple of tools but everything seems to be old and out-of-dated.
I've found PySizer and Heapy but everything seems to be Python2 oriented and would take a lot of effor...
Eldwun asked 13/10, 2011 at 18:27
3
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
:heap_fina...
Hoppe asked 28/9, 2012 at 5:58
2
Solved
Background: I am trying to track down a memory leak in a Xamarin.Android app. Using DDMS and Eclipse Memory Profiler, I am able to see which objects are alive. When trying to track what is holding ...
Mcnulty asked 1/10, 2013 at 20:25
1
I would like to know if while debugging, is possible to know how many objects of a type are loaded using a Visual Studio 2013. I am currently developing in C#.
Homopolar asked 14/12, 2013 at 13:24
1
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?
Fo...
Handedness asked 21/1, 2013 at 4:15
1
Solved
I want to profile time and memory usage of class method. I didn't find an out of box solution for this (are there such modules?), and I decided to use timeit for time profiling and memory_usage fro...
Charily asked 16/5, 2013 at 16:55
1
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 co...
Torques asked 20/2, 2013 at 11:18
2
Solved
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, t...
Pathognomy asked 26/11, 2012 at 15:39
1
Solved
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...
Scrope asked 21/9, 2012 at 16:53
3
Solved
Does somebody know what is the memory overhead of a ConcurrentHashMap (compared to a "classical" HashMap) ?
At construction ?
At insertion of an element ?
Guienne asked 19/6, 2012 at 14:32
1
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 corres...
Mordant asked 9/5, 2012 at 4:41
4
Solved
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...
Terresaterrestrial asked 1/2, 2012 at 8:48
© 2022 - 2024 — McMap. All rights reserved.