Tagged Questions
The memory-optimization tag has no wiki summary.
37
votes
7answers
6k views
Reducing memory usage of .NET applications?
What are some tips to reduce the memory usage of .NET applications? Consider the following simple C# program.
class Program
{
static void Main(string[] args)
{
Console.ReadLine();
...
6
votes
8answers
1k views
Automated field re-ordering in C structs to avoid padding
I've spent a few minutes manually re-ordering fields in a struct in order to reduce padding effects[1], which feels like a few minutes too much. My gut feeling says that my time could probably be ...
5
votes
6answers
2k views
C++ Memory Efficient Solution for Ax=b Linear Algebra System
I am using Numeric Library Bindings for Boost UBlas to solve a simple linear system.
The following works fine, except it is limited to handling matrices A(m x m) for relatively
small 'm'.
In practice ...
4
votes
5answers
498 views
Memory efficient int-int dict in Python
I need a memory efficient int-int dict in Python that would support the following operations in O(log n) time:
d[k] = v # replace if present
v = d[k] # None or a negative number if not present
I ...
4
votes
9answers
1k views
Clean vector every loop iteration. What is the most memory efficient way?
I have a question about the std::vector.
I have a very memory intensive algorithm where I forsee that predicting vector sizes and reserving enough memory for the vectors in advance will help me a lot ...
3
votes
2answers
363 views
Disk-based trie?
I'm trying to build a Trie but on a mobile phone which has very limited memory capacity.
I figured that it is probably best that the whole structure be stored on disk, and only loaded as necessary ...
2
votes
2answers
79 views
Numpy: Reduce memory footprint of dot product with random data
I have a large numpy array that I am going to take a linear projection of using randomly generated values.
>>> input_array.shape
(50, 200000)
>>> random_array = ...
2
votes
1answer
243 views
shared memory optimization confusion
I have written an application in cuda , which uses 1kb of shared memory in each block.
Since there is only 16kb of shared memory in each SM, so only 16 blocks can be accommodated overall ( am i ...
2
votes
4answers
610 views
Does unsetting array values during iterating save on memory?
This is a simple programming question, coming from my lack of knowledge of how PHP handles array copying and unsetting during a foreach loop. It's like this, I have an array that comes to me from an ...
1
vote
2answers
46 views
How to optimize objects created from query in Entity Framework (Object graph)
I've run into some memory problems while using EF4.1, the problems mainly happens in this situation:
Imagine that I have Students, that can attend one or more Courses, and multiple users can attend ...
1
vote
1answer
113 views
How to make this python script memory efficient
This snippet pulls all of the docs out of my database, and dumps them into a gzip-compressed file. docs_to_dump is a django object containing all of the text documents to be dumped.
...
1
vote
4answers
600 views
Permutations of Varying Size
I'm trying to write a function in PHP that gets all permutations of all possible sizes. I think an example would be the best way to start off:
$my_array = array(1,1,2,3);
Possible permutations of ...
1
vote
1answer
601 views
PHP Memory Optimization
I am using xdebug to trace some code to see how much memory it is using, but at the start of the trace, it is using around 560224 bytes of memory. Is this normal? This is before any code is executed.
...
0
votes
3answers
295 views
PHP CLI - Detect where my memory is wasted
I'm using PHP + Zend Framework for several CLI daemons.
They take up quite a bit of memory. I'm assuming the Zend Framework part might be causing this, but I want to have facts showing me where the ...
-1
votes
4answers
279 views
Read special line from txt file in j2me
I have a text file, for example : file.txt, I want to read a line, for example line 7, have any way to read directly line 7 without reading other lines? I want to save memory from this work.