Optimization is the act of improving a method or design. In programming, optimization usually takes the form of increasing the speed of an algorithm, or reducing the resources it requires.
0
votes
0answers
13 views
Code optimisation of math.asin function vb.net
I have the following line of code:
SomeDouble= constant1/ ((a * b) * (Math.Asin((c- a) / (a * d)) + constant2))
The two constants are different and calculated out of the loops, a - d are variables ...
1
vote
0answers
14 views
Finding all possible sub-optimal(not optimal!!!) solutions in optimization
I am writing a CPLEX optimization code to generate a matrix, which takes r and n as the command line arguments, but they may be assumed 2 and 4 for now.
The condition for generating the matrix is ...
0
votes
1answer
13 views
Genetic Algorithms and multi-objectives optimization on PYTHON : libraries/tools to use?
I am scanning the internet to find libraries available to use GA with potential development for multi-objective algorithms like NSGAII for PYTHON. Do you have any suggestion?
Here is what I have so ...
1
vote
0answers
10 views
How to display progress of scipy.optimize function?
I use scipy.optimize to minimize a function of 12 arguments. I started the optimization a while ago and still weighting for results. It would be nice to have an options that forces scipy.optimize to ...
0
votes
0answers
28 views
Converting statements into expressions
I'm looking for ideas on how to convert code into expressions in C# for Unity. We have this basic list of statements:
Simple statements:
assignment: A:= A + 5
call: CLEARSCREEN()
return: return 5;
...
0
votes
0answers
9 views
magnetic absolut shaft encoder calibration
I have an absolute magnetic shaft encoder. I want to use it in order get the azimuth angle of that a motor. I want get values from the encoder but I want to know it is aligned to the magnetic north or ...
0
votes
1answer
70 views
Faster implementation for matrix excercise of Error correcting codes a 2^x eficience in C++
I've been working on this problem and getting the solution right with an eficiency of 2^n but my problem comes that my implemented solution is currently too slow around 0,49 s is there any form to ...
0
votes
0answers
13 views
Openx 2.8.10. Reducing number of inserts/updates to mysql
My server(board + portal + openx) is struggling with openx, well currently looking means to reduce load made by openx.
I wonder is there any option to reduce number of inserts/updates which Openx ...
1
vote
1answer
19 views
GL ES: Fragment shader optimization
Summary:
I get FPS slowdown as soon as I try to tint the sprites (i.e: multiply texture with color in the fragment shader)
Details:
Hardware: iPod touch 4
Using 64x64 png texture containing alpha ...
2
votes
2answers
39 views
Algorithm for finding empty cell around desired position in a grid
I will describe my problem using the attached image :
The green block is the starting position of my game entity. Next I'd like to move it to the position marked by the orange square. But at the ...
1
vote
3answers
83 views
Is it more efficient to use getters or assign them to a variable? [duplicate]
In the below scenario, all 3 getXxxxx() methods simple return a property of that class with no additional processing.
Is it more efficient for me to assign them to a temporary variable like I've done ...
0
votes
2answers
81 views
Shifting syntax error
I have a byte array:
byte data[2]
I want to to keep the 7 less significant bits from the first and the 3 most significant bits from the second.
I do this:
unsigned int the=((data[0]<<8 | ...
0
votes
2answers
41 views
Optimizing a loop to cut down on the number of draws
I'm creating an animated strip chart that redraws on every new packet message received from the header. First I create a function that checks if the chart already exists and if not builds it:
...
-1
votes
1answer
42 views
Does the C# Compiler optimize nested property calls into inline calls?
So in .NET I know it is more expensive to get the value of a property than that of a field, provided that the property has some sort of logic in the getter. My question is sort of two fold. Consider ...
2
votes
0answers
20 views
Storing data for levels in a game like RISK or Total War
I'm working on a game which is a bit like the boardgame RISK, or the campaign section of the Total War series. I currently have a working implementation of the region system, but because of bad ...
2
votes
1answer
38 views
Using PHP ini_set “memory_limit” safely
I currently have a script that is going to be running for quite a long time (forked in its own separate process though). It's not going to be running very often but when it does it's going to use ...
0
votes
1answer
19 views
How to remove dynamic module Bundle and minification in asp.net mvc
I'm not using the bundling and minification feature of asp.net mvc, and I would like to know if it's possible to completely turn it off. I already did
BundleTable.EnableOptimizations = false;
But I ...
0
votes
0answers
22 views
changing llvm pass architecture to find desired function instead main function in module
I try to do some optimization on LLVM bitcode without generating final executable binary. I link all project bitcode.In this test there is no main function in bitcode, but LLVM needs to find a main ...
0
votes
2answers
62 views
normalise list data in range (0.0, 1.0)
I create a dict with lists as values, containing some parameters. these parameters are mostly float or int and sometimes boolean values (in my case stored as 0 or 1). Now i want to select the best ...
-2
votes
0answers
15 views
How to find the min and max of an inequality for the solution with constraints in matlab?
I'm trying to use matlab to basically solve a problem with two constraints:
S*x = zero_vector
c*x = scalar_value
And I want the min value of x and the max value of x:
xmin < x < xmax
Any ...
1
vote
4answers
108 views
Crafting a LINQ based solution to determine if a set of predicates are satisfied for a pair of collections constrained by a set of invariants
This isn't a question I feel I have the vocabulary to properly express, but I have two collections of the same anonymous type (lets call it 'a.)
'a is defined as new {string Name, int Count}
One of ...
0
votes
2answers
35 views
Optimisation in R using Ucminf package
I am not able to apply ucminf function to minimise my cost function in R.
Here is my cost function:
costfunction <- function(X,y,theta){
m <- length(y);
J = 1/m * ...
0
votes
3answers
105 views
Ternary operator vs if statement: compiler optimization
Is this:
int val;
// ...
val = (val != 0) ? otherVal : 0;
less efficient than this:
int val;
//...
if (val != 0)
val = otherVal;
?
Are compiler able to optimize the ternary operator? The ...
0
votes
0answers
20 views
Python, minimize: constraints are ignored
I have some trouble using Python's 'minimize'-function (I use Scipy 0.12.0). I tried to implement my system in an analog way as it is shown here
The problem is that some of he constraints are ...
4
votes
3answers
74 views
Java: optimize hashset for large-scale duplicate detection
I am working on a project where I am processing a lot of tweets; the goal is to remove duplicates as I process them. I have the tweet IDs, which come in as strings of the format "166471306949304320"
...
1
vote
1answer
32 views
Cascading Style Sheets Optimization
I wonder about optimization in case:
font-weight: normal;
font-weight: 400;
Which of this instruction is the most optimal ?
0
votes
2answers
41 views
How can I optimize a nested Cypher query?
I have a database with 9537 nodes and 52846 relationships. Both nodes and relationships have attributes which are indexed.
I am running many queries against this database which have more or less the ...
1
vote
1answer
50 views
Time efficiency of Power operation?
I was just wondering about power operations and their time efficiency. Since a power operation is effectively:
x^n = x*x*x...[n times]
Does that mean calculation of x^n takes approximately O(n) ...
1
vote
0answers
69 views
How to reduce the cache miss of a computation-intensive program
I wrote a computation-intensive program, and I profiled it with cachegrind, which showed the data cache miss may be the main bottleneck. I adjust(decrease the size of the computation unit to the CPU ...
0
votes
4answers
69 views
Is it possible to beat the Assembler today? [closed]
Apparently it used to be, according to this terrific account by Ed Nather. How about today? That is, is it possible, with enough knowledge of CPU/FPU/GPU/etc. architecture, to write machine code ...
-1
votes
1answer
51 views
Algorithm for optimal combinations to cut
Input: I have a master length of 10m and I have products that need to be cut in 3m, 4m, 5m dimensions.
I tried writing an algorithm that will generate the following table for me (optimal lengths):
...
0
votes
1answer
20 views
Optimizing MySQL Table Size With The Limit Option
If I understand how MySQL tables work, then each instance of the table consumes its full memory allotment, even if most the columns are blank. For instance, a blank TEXT column would consume 65536 ...
0
votes
1answer
30 views
Modify CFG in LLVM
Could I modify the CFG in LLVM and these modifications be written in IR file? I made an LLVM pass to modify basic block and edges sequence and I ran the pass by lli -load to emit the IR, but nothing ...
0
votes
0answers
14 views
Mobile ViewNavigatorApplication on Flex 4.5.1 ram increase
I have a kind of big mobile application (flex 4.5.1) with 50+ views used in a ViewNavigatorApplication..
The application use:
a local sqlite database (now is about 700mb size).
camera and manage ...
-1
votes
2answers
114 views
C array = array faster than memcpy() [closed]
I have a piece of C code which I am trying to optimise which involves setting an array a to b. I am currently using memcpy to achieve this, and it works, however it's not fast enough. I.e.
double ...
0
votes
0answers
32 views
Read BER-encoded data in C#? [closed]
I'm trying to read some SNMP packets on my own. So far so good, I was able to put up some functions to write some SNMP TRAP packets as I need them. However, now I need to be able to read them and ...
1
vote
1answer
41 views
How to optimize the following double for loop in octave?
I have the following code in octave:
dist=0;
for i = 1:length(x);
for j = 1:length(y);
v = x(i,:) - y(j,:);
distvect(j) = norm(v);
endfor
dist = dist + ...
0
votes
0answers
20 views
Efficiently Intersecting Big Boolean Arrays
Suppose I have N Boolean arrays of size M. I simply want to intersect between pairs of these Boolean arrays efficiently (in optimized time). In my problem in hand, N is at least equal to 4500 and M is ...
-5
votes
0answers
56 views
How can I optimize Java code(Algorithm). Faster code [closed]
I´m just starting to learn how to program in Java, and I would like to know some tricks you know to optimize your code. Also, explain WHY it makes your code faster. I´m expecting to create a list that ...
0
votes
0answers
48 views
Configure GCC for optimization
I trying to build gcc such that we can perform the highest optimization on an Intel E5-2690 x86_64. The default gcc is configured with :
COLLECT_GCC=gcc
...
0
votes
1answer
36 views
NGen and generic collections. How to get rid of Jitting?
I'm struggling with ngen and generic collections. I've ngen'ed all my assemblies in solution, but still somehow jitting is occurred every time my app is executing that code:
private ...
4
votes
1answer
139 views
6 element double precision vector matrix vector multiply in AVX
I need to do the following operation in double precision:
The numbers represent how the values are stored in memory. I want to implement this with AVX. Would it be best if I padded the columns of ...
1
vote
2answers
47 views
Bit wise operator
Take any number of following type 2, 2^2(=4), 2^3(=8) , 16 ,32 , 64 ...
If we will make ORing (|) of two numbers like
2| 4 = xyz
0010 | 0100 = 0110
then for checking this whether this number ...
0
votes
3answers
36 views
How to rid repeating lines in Javascript?
I have a Javascript file which adds markers to a custom Google Map, and this is the code I have:
var locations = [
// Bloor Station
new google.maps.Marker({
position: new ...
0
votes
2answers
29 views
speed up an update join query in mysql
I have 2 tables each of one hundred million rows, with key1 and str_key both non-unique keys.
the following MYSQL query, according to show engine innodb status, is performing around 80 reads/sec, no ...
0
votes
1answer
24 views
Optimise mysql image count and random
Hello would be great if someone could help me with this.
Basically an image belongs to an album.
The query I am running is very slow and i could do with some advice on optimising.
The slow part of ...
0
votes
0answers
24 views
How to find the maximum edge-weighted clique?
The maximum clique problem(MC-problem) is a classical NP problem, and we could use branch-bound to solve this problem effectively. Recently, I try to develop an algorithm to find out the clique that ...
0
votes
1answer
22 views
max winning and losing streaks (code optimization)
I made this code for calculating max winning & losing streaks on an array of values. But I can get my head around doing it in one foreach loop. Currently I'm using 2 loops as follow :
public ...
2
votes
2answers
77 views
A really slow UPDATE to a MySQL server
I am running a CMS, but this has nothing do to with it.
I have a simple query which is:
UPDATE e107_online SET `online_location` = 'http://page.com/something.php?', `online_pagecount` = 133 WHERE ...
-2
votes
0answers
14 views
Does the GCC Core 2 optimizations apply to newer Intel processors? [closed]
There are some optimization options on GCC and I want to target to common processors rather then general, simply because of what most computers use (Intel). But will applying Core 2 optimizations ...




