Tagged Questions
Micro-optimization is the process of meticulous tuning of small sections of code in order to address a perceived deficiency in some aspect of its operation (excessive memory usage, poor performance, etc).
46
votes
7answers
1k views
Fastest way to strip all non-printable characters from a Java String
What is the fastest way to strip all non-printable characters from a String in Java?
So far I've tried and measured on 138-byte, 131-character String:
String's replaceAll() - slowest method
517009 ...
23
votes
2answers
516 views
Why date() works twice as fast if we set time zone from code?
Have you noticed that date() function works 2x faster than usual if you set actual timezone inside your script before any date() call? I'm very curious about this.
Look at this simple piece of code:
...
21
votes
10answers
3k views
Why does n++ execute faster than n=n+1?
In C language, Why does n++ execute faster than n=n+1?
(int n=...; n++;)
(int n=...; n=n+1;)
Our instructor asked that question in today's class. (this is not homework)
16
votes
4answers
1k views
Speed of CSS
This is just a question to help me understand CSS rendering better.
Lets say we have a million lines of this.
<div class="first">
<div class="second">
<span ...
14
votes
4answers
228 views
Is an unnamed parameter actually passed during a function call?
template <typename TAG>
fn(int left, TAG, int right)
{
}
fn(0, some_type_tag(), 1);
/* or */
fn(0,int(), 1); // where the primitive, int, is not empty.
EDIT: There are two perspectives to ...
14
votes
12answers
1k views
' … != null' or 'null != …' best performance?
I wrote two methods to check there performance
public class Test1 {
private String value;
public void notNull(){
if( value != null) {
//do something
}
}
public void nullNot(){
if( null ...
14
votes
11answers
1k views
What is the fastest way to find if a number is even or odd?
What is the fastest way to find if a number is even or odd?
13
votes
5answers
846 views
Java: if-return-if-return vs if-return-elseif-return
Asked an unrelated question where I had code like this:
public boolean equals(Object obj)
{
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() ...
12
votes
14answers
1k views
How efficient is an if statement compared to a test that doesn't use an if? (C++)
I need a program to get the smaller of two numbers, and I'm wondering if using a standard "if x is less than y"
int a, b, low;
if (a < b) low = a;
else low = b;
is more or less efficient than ...
12
votes
9answers
2k views
When, if ever, is loop unrolling still useful?
I've been trying to optimize some extremely performance-critical code (a quick sort algorithm that's being called millions and millions of times inside a monte carlo simulation) by loop unrolling. ...
12
votes
5answers
1k views
Does using xor reg, reg give advantage over mov reg, 0?
There're two well-known ways to set an integer register to zero value on x86.
Either
mov reg, 0
or
xor reg, reg
There's an opinion that the second variant is better since the value 0 is not ...
11
votes
4answers
329 views
Do java finals help the compiler create more efficient bytecode? [closed]
Possible Duplicate:
Does use of final keyword in Java improve the performance?
The final modifier has different consequences in java depending on what you apply it to. What I'm wondering is ...
11
votes
13answers
1k views
Does rearranging a conditional evaluation speed up a loop?
Bit of a weird one: I was told a while ago by a friend that rearranging this example for loop from :
for(int i = 0; i < constant; ++i) {
// code...
}
to:
for(int i = 0; constant > i; ...
10
votes
4answers
639 views
On improving Haskell's performance compared to C in fibonacci micro-benchmark
I came across this question, which compared the performance of various compilers on computing fibonaci numbers the naive way.
I tried doing this with Haskell to see how it compares to C.
C code:
...
9
votes
3answers
314 views
SSE micro-optimization instruction order
I have noticed that sometimes MSVC 2010 doesn't reorder SSE instructions at all. I thought I didn't have to care about instruction order inside my loop since the compiler handles that best, which ...
9
votes
4answers
239 views
How to get lg2 of a number that is 2^k
What is the best solution for getting the base 2 logarithm of a number that I know is a power of two (2^k). (Of course I know only the value 2^k not k itself.)
One way I thought of doing is by ...
9
votes
15answers
2k views
Which of these pieces of code is faster in Java?
a) for(int i = 100000; i > 0; i--) {}
b) for(int i = 1; i < 100001; i++) {}
The answer is there on this website (question 3). I just can't figure out why?
8
votes
5answers
229 views
Is it faster to access final local variables than class variables in Java?
I've been looking at at some of the java primitive collections (trove, fastutil, hppc) and I've noticed a pattern that class variables are sometimes declared as final local variables. For example:
...
8
votes
6answers
156 views
Fast search of some nibbles in two ints at same offset (C, microoptimisation)
My task is to check (>trillions checks), does two int contain any of predefined pairs of nibbles (first pair 0x2 0x7; second 0xd 0x8). For example:
first int: 0x3d542783 first pair of 0x2 ...
7
votes
1answer
183 views
How to improve performance on a function that operates on two arrays in clojure
I have a set of a small number of functions. Two functions perform a mathematical overlay operation (defined on http://docs.gimp.org/en/gimp-concepts-layer-modes.html, but a little down -- just ...
7
votes
1answer
117 views
Why is an empty function call in python around 15% slower for dynamically compiled python code
This is pretty bad micro-optimizing, but I'm just curious. It usually doesn't make a difference in the "real" world.
So I'm compiling a function (that does nothing) using compile() then calling exec ...
7
votes
3answers
597 views
Does calling the constructor of an empty class actually use any memory?
Suppose I have a class like
class Empty{
Empty(int a){ cout << a; }
}
And then I invoke it using
int main(){
Empty(2);
return 0;
}
Will this cause any memory to be allocated on ...
7
votes
13answers
2k views
Improving the quick sort
If possible, how can I improve the following quick sort(performance wise).Any suggestions?
void main()
{
quick(a,0,n-1);
}
void quick(int a[],int lower,int upper)
{
...
7
votes
14answers
1k views
Fast Euclidean division in C
I am interested in getting the remainder of the Euclidean division, that is, for a pair of integers (i, n), find r such as:
i = k * n + r, 0 <= r < |k|
the simple solution is:
int euc(int i, ...
7
votes
2answers
835 views
array_push() vs. $array[] = … Which is fastest?
I need to add values received from MySQL into an array [PHP], here is what I've got:
$players = array();
while ($homePlayerRow = mysql_fetch_array($homePlayerResult)) {
$players[] = ...
6
votes
2answers
92 views
Is there overhead using PHP Doc comments vs regular comments?
I read that when the PHP lexer parses the php and encounters a doccomment, that it stores the contents of that comments as metadata. So I would assume this might have a slight overhead compared to ...
6
votes
2answers
157 views
Are there any perfomance test results for usage of likely/unlikely hints?
gcc features likely/unlikely hints that help the compiler to generate machine code with better branch prediction.
Is there any data on how proper usage or failure to use those hints affects ...
6
votes
4answers
286 views
Extreme optimization of integer binary search
I'm writing a program which will need to do a very large number of binary searches—at least 1015—in a tight loop. These together with a small number of bitwise operations will make up ...
6
votes
6answers
2k views
Floating point division vs floating point multiplication
Is there any (non-microoptimization) performance gain by coding
float f1 = 200f / 2
in comparision to
float f2 = 200f * 0.5
A professor of mine told me a few years ago that floating point ...
6
votes
7answers
377 views
Is it possible to have only one comparison per iteration of a binary search algorithm?
In binary search algorithm we have two comparisons:
if (key == a[mid]) then found;
else if (key < a[mid]) then binary_search(a[],left,mid-1);
else binary_search(a[],mid+1,right);
Is there ...
6
votes
7answers
387 views
Java: micro-optimizing array manipulation
I am trying to make a Java port of a simple feed-forward neural network.
This obviously involves lots of numeric calculations, so I am trying to optimize my central loop as much as possible. The ...
5
votes
2answers
60 views
Should one use `if ($a != NULL)` or `if ($a !== NULL)` to control program flow?
This is perhaps a painfully basic question to answer, but I'm wondering about performance issues regarding using PHP's if identical !== versus if equal != to control flow.
Consider the following ...
5
votes
6answers
421 views
Is x >= 0 more efficient than x > -1?
Doing a comparison in C++ with an int is x >= 0 more efficient than x > -1?
5
votes
1answer
174 views
Fast search and replace some nibble in int [c; microoptimisation]
This is variant of Fast search of some nibbles in two ints at same offset (C, microoptimisation) question with different task:
The task is to find a predefined nibble in int32 and replace it with ...
5
votes
5answers
125 views
Does adding local variables to methods make them slower?
This question has received a total of several paragraphs of answer. Here is the only sentence that actually tells me what I was looking for:
Your examples would make little difference since ...
5
votes
6answers
287 views
C++ fixed size arrays vs multiple objects of same type
I was wondering whether (apart from the obvious syntax differences) there would be any efficiency difference between having a class containing multiple instances of an object (of the same type) or a ...
5
votes
5answers
272 views
Use of lazy val for caching string representation
I encountered the following code in JAXMag's Scala special issue:
package com.weiglewilczek.gameoflife
case class Cell(x: Int, y: Int) {
override def toString = position
private lazy val ...
5
votes
7answers
214 views
Two loop bodies or one (result identical)
I have long wondered what is more efficient with regards to making better use of CPU caches (which are known to benefit from locality of reference) - two loops each iterating over the same ...
5
votes
13answers
463 views
Micro-optimizations in C, which ones are there? Is there anyone really useful?
I understand most of the micro-optimizations out there but are they really useful?
Exempli gratia: does doing ++i instead of i++, or while(1) or for(;;) really result in performance improvements ...
5
votes
3answers
518 views
Smart JVM and JIT Micro-Optimizations
Over time, Sun's JVM and JIT have gotten pretty smart. Things that used to be common knowledge as being a necessary micro-optimization are no longer needed, because it gets taken care of for you.
...
4
votes
6answers
235 views
is i=(i+1)&3 faster than i=(i+1)%4
I am optimizing a c++ code.
at one critical step, I want to implement the following function y=f(x):
f(0)=1
f(1)=2
f(2)=3
f(3)=0
which one is faster ? using a lookup table or i=(i+1)&3 ...
4
votes
3answers
218 views
Is thread time spent in syncronization too high?
Today I profiled one of my C# applications using the Visual Studio 2010 Performance Analyzer. Specifically, I was profiling for "Concurrency" because it seemed as though my app should have more ...
4
votes
4answers
136 views
Optimize C# Code Fragment
I'm profiling some C# code. The method below is one of the most expensive ones. For the purpose of this question, assume that micro-optimization is the right thing to do. Is there an approach to ...
4
votes
5answers
386 views
On the use and abuse of alloca
I am working on a soft-realtime event processing system. I would like to minimise as many calls in my code that have non-deterministic timing. I need to construct a message that consists of strings, ...
4
votes
3answers
502 views
Is there a performance overhead to a private inner class in Java?
When I have inner classes with private methods or fields the compiler has to create synthetic package-protected accessor methods to allow the outer class to access those private elements (and ...
4
votes
5answers
542 views
Java - Declaring variables in for loops
Is declaring a variable inside of a loop poor practice? It would seem to me that doing so, as seen in the first code block below, would use ten times the memory as the second... due to creating a new ...
4
votes
8answers
245 views
Question about loop speed
I have the following two loops:
#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
int main(){
int start=clock();
for (int i=0;i<100;i++)
...
4
votes
6answers
813 views
C++ Adding 2 arrays together quickly
Given the arrays:
int canvas[10][10];
int addon[10][10];
Where all the values range from 0 - 100, what is the fastest way in C++ to add those two arrays so each cell in canvas equals itself plus ...
4
votes
4answers
444 views
Does the order of case in Switch statement can vary the performance?
Let say I have a switch statement as below
switch(alphabet) {
case "f":
//do something
break;
case "c":
//do something
break;
case "a":
//do ...
4
votes
3answers
676 views
Cost of exception handlers in Python
In another question, the accepted answer suggested replacing a (very cheap) if statement in Python code with a try/except block to improve performance.
Coding style issues aside, and assuming that ...