The memory-optimization tag has no wiki summary.
1
vote
1answer
51 views
Memory optimisation
I'm just curious to know if I can reduce memory usage of Matlab by using some option.
Clicking on a variable in workspace shows a long digit which may not be necessary in most of cases. e.g.,
[20, ...
0
votes
1answer
38 views
Variable size of CGContext
I'm currently using a UIGraphicsBeginImageContext(resultingImageSize); to create an image.
But when I call this function, I don't know exactly the width of resultingImageSize.
Indeed, I developed ...
3
votes
1answer
174 views
How to represent a very large bit array efficiently?
Since a boolean actually takes 1 byte of space, a bool[] isn't the most space-efficient way to represent a bit array. Sometimes integers and longs are used as a more efficient bit array, but a long ...
0
votes
0answers
43 views
add/remove dom elements mobile page using any javascript framework
I am trying to create a mobile page which shows a list of items (which are currently huge over 2500) using unordered list. I created the page and it hangs after sometime.
Someone told me that mobile ...
0
votes
0answers
294 views
Optimizing memory usage of large Redis Hash and Sorted set
As part of a distributed crawler, we store all URLs in a Redis sorted set, which is the crawl queue and Redis hash (to de-duplicate and mark visited URLs).
We have about 11M URLs for various domains ...
3
votes
1answer
271 views
Android Bitmap Pixels - write directly to file?
Background:
The goal is to write a rather large (at least 2048 x 2048 pixels) image file with OpenGL rendered data.
Today I first use glReadPixels in order to get the 32-bit (argb8888) pixel data ...
0
votes
0answers
125 views
Share OpenGL textures between two rendering threads?
I have an interface rendering to a GLSurfaceView, but at some point I launch another rendering thread in order to be able to render a part of the interface (just a couple of textures) at a much larger ...
0
votes
2answers
191 views
Cache only the necessary images in webapps
I have this in the head section of index.php:
<link rel="apple-touch-startup-image" href="images/screenLD.png" media="(device-width:320px)" /><!--iPod/iPhone Portrait LD 320x460-->
...
1
vote
2answers
147 views
Least memory-intensive Collection?
Apart from rolling my own collection, I'm wondering which existing (.NET 3.5) Collection and IDictionary uses the least amount of memory.
I'm currently using a
List<int>, where I only add ...
1
vote
1answer
60 views
Consecutive item comparison with smallest memory footprint
In J (using J503, not J6 or 7), normally when I want to see if the elements of an array are smaller than their predecessor, I use this:
smaller =: }:<:}.
Which results in n-1 items:
...
3
votes
3answers
183 views
Efficient way to store a fixed range float
I'm heaving an (big) array of floats, each float takes 4 bytes.
Is there a way, given the fact that my floats are ranged between 0 and 255, to store each float in less than 4 bytes?
I can do any ...
3
votes
1answer
272 views
Building a “sparse” lookup array minimizing memory footprint
let's say I want to build an array to perform a lookup to parse network protocols (like an ethertype). Since such an identifier is 2-byte long, I would end up with a 2^16 cells array if I use direct ...
-4
votes
2answers
140 views
Memory footprint minimization in Java EE 5, for classes, primitive data types and Strings
Context is: Java EE 5.
I have a server running some huge app. I need to refactor the classes, so that their memory footprint is low (towards lowest possible), in exchange for CPU time (of which ...
2
votes
2answers
196 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 = ...
1
vote
2answers
248 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
171 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.
...
0
votes
4answers
895 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.
4
votes
1answer
748 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 ...
0
votes
3answers
694 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 ...
3
votes
5answers
1k 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 ...
5
votes
6answers
989 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
2answers
792 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 ...
1
vote
4answers
778 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
887 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.
...
50
votes
8answers
16k 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
6answers
4k 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 ...
7
votes
7answers
2k 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
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 ...
