Tagged Questions
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.
473
votes
8answers
47k views
Why doesn't GCC optimize a*a*a*a*a*a to (a*a*a)*(a*a*a)?
I am doing some numerical optimization on a scientific application. One thing I noticed is that, GCC will not recognize pow(a,6), and will call the library function pow, (although it recognizes ...
231
votes
28answers
50k views
Fastest way to determine if an integer's square root is an integer
I'm looking for the fastest way to determine if a long value is a perfect square (i.e. its square root is another integer). I've done it the easy way, by using the built-in Math.sqrt() function, but ...
171
votes
31answers
16k views
Performance optimization strategies of last resort?
There are plenty of performance questions on this site already, but it occurs to me that almost all are very problem-specific and fairly narrow. And almost all repeat the advice to avoid premature ...
153
votes
17answers
18k views
How can I know which parts in the code are never used?
I have legacy C++ code that I'm supposed to remove unused code from. The problem is that the code base is large.
How can I find out which code is never called/never used?
127
votes
12answers
23k views
Fastest sort of fixed length 6 int array
Answering to another StackOverflow question (this one) I stumbled upon an interesting sub-problem. What is the fastest way to sort an array of 6 ints ?
As the question is very low level:
we can't ...
126
votes
21answers
3k views
Is Disney's FastPass Valid and/or Useful Queue Theory
At Disney World, they use a system called Fastpass to create a second, shorter line for popular rides. The idea is that you can wait in the standard line, often with a wait longer than an hour, or ...
121
votes
22answers
40k views
Big O, how do you calculate/approximate it?
Most people with a degree in CS will certainly know what Big O stands for.
It helps us to measure how (in)efficient an algorithm really is and if you know in what category the problem you are trying ...
107
votes
3answers
3k views
Once upon a time, when > was faster than < … Wait, what?
I am reading a wonderful OpenGL tutorial. It's unbelievably great, trust me. The topic I am currently at is Z-buffer. Aside from explaining what's it all about, the author mentions that we can perform ...
105
votes
42answers
9k views
What is the most ridiculous pessimization you've seen? [closed]
We all know that premature optimization is the root of all evil because it leads to unreadable/unmaintainable code. Even worse is pessimization, when someone implements an "optimization" because they ...
86
votes
4answers
2k views
how to achieve 4 flops per cycle
How can the theoretical peak performance of 4 floating point operations (double precision) per cycle be achieved on a modern x86-64 Intel cpu?
As far as I understand does it take 3 cycles for an sse ...
81
votes
25answers
6k views
Best algorithm for this interview problem
Given a NxN matrix with 0s and 1s. Set every row that contains a 0 to all 0s and set every column that contains a 0 to all 0s.
For example
1 0 1 1 0
0 1 1 1 0
1 1 1 1 1
1 0 1 1 1
1 1 1 1 1
...
77
votes
15answers
13k views
Is there a performance difference between i++ and ++i in C?
Is there a performance difference between i++ and ++i if the resulting value is not used?
72
votes
13answers
5k views
Tricky Google interview question
A friend of mine is interviewing for a job. One of the interview questions got me thinking, just wanted some feedback.
There are 2 non-negative integers: i and j. Given the following equation, find ...
71
votes
15answers
3k views
Beyond Stack Sampling: C++ Profilers
A Hacker's Tale
The date is 12/02/10. The days before Christmas are dripping away and I've pretty much hit a major road block as a windows programmer. I've been using AQTime, I've tried sleepy, ...
69
votes
13answers
7k views
Is there a performance difference between i++ and ++i in C++?
We looked at this answer for C in this question:
http://stackoverflow.com/questions/24886/is-there-a-performance-difference-between-i-and-i-in-c
What's the answer for C++?
67
votes
9answers
18k views
Getting all types that implement an interface with C# 3.5
How can I do what's in the title, with the minimum amount of code, using whatever c# 3.5 syntax (I'm guessing lambda expressions would fit, but I still don't understand them fully)?
In short,
I want ...
65
votes
1answer
1k views
Why is early return slower than else?
This is a follow-up question to an answer I gave a few days back. Edit: it seems that the OP of that question already used the code I posted to him to ask the same question, but I was unaware of it. ...
64
votes
5answers
1k views
Is this an g++ optimization bug?
Below code works on Visual Studio 2008 with and without optimization.
But it only works on g++ without optimization (O0).
#include <cstdlib>
#include <iostream>
#include <cmath>
...
58
votes
31answers
3k views
Coding Practices which enable the compiler/optimizer to make a faster program
Many years ago, C compilers were not particularly smart. As a workaround K&R invented the register keyword, to hint to the compiler, that maybe it would be a good idea to keep this variable in an ...
57
votes
12answers
2k views
Optimizing Android application before release
I'm in a "special" situation about effeciency of my program. Now I'm at a phase where I want to maximize my application; being top notch and reducing battery consumption.
Before the question:
First ...
57
votes
7answers
3k views
Optimizing away a “while(1);” in C++0x
Updated, see below!
I have heard and read that C++0x allows an compiler to print "Hello" for the following snippet
#include <iostream>
int main() {
while(1)
;
std::cout << ...
57
votes
17answers
9k views
Fastest way to list all primes below N in python
This is the best algorithm I could come up with after struggling with a couple of Project Euler's questions.
def get_primes(n):
numbers = set(range(n, 1, -1))
primes = []
while numbers:
...
56
votes
6answers
843 views
Why are operators so much slower than method calls? (structs are slower only on older JITs)
Intro: I write high-performance code in C#. Yes, I know C++ would give me better optimization, but I still choose to use C#. I do not wish to debate that choice. Rather, I'd like to hear from ...
56
votes
4answers
14k views
Deflate compression browser compatibility and advantages over GZIP
UPDATE Sept 11 2010:
A testing platform has been created for this here
HTTP 1.1 definitions of GZIP and DEFLATE (zlib) for some background information:
" 'Gzip' is the gzip format, and ...
53
votes
8answers
9k views
Tool to identify unused css definitions
Are there any good tools to help identify unused css definitions in project? A bunch of css files were pulled in and now I'm trying to clean things up a bit.
51
votes
5answers
6k views
Optimizing Kohana-based Websites for Speed and Scalability
A site I built with Kohana was slammed with an enormous amount of traffic yesterday, causing me to take a step back and evaluate some of the design. I'm curious what are some standard techniques for ...
50
votes
17answers
31k views
Most effective way for float and double comparison
What would be the most efficient way to compare two doubles or two floats (single precision)?
Simply doing this is not correct:
bool CompareDoubles1 (double A, double B)
{
return A == B;
}
But ...
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 ...
45
votes
11answers
6k views
What is the real overhead of try/catch in C#?
So, I know that try/catch does add some overhead and therefore isn't a good way of controlling process flow, but where does this overhead come from and what is it's actual impact?
43
votes
4answers
7k views
Which, if any, C++ compilers do tail-recursion optimization?
It seems to me that it would work perfectly well to do tail-recursion optimization in both C and C++, yet while debugging I never seem to see a frame stack that indicates this optimization. That is ...
42
votes
5answers
881 views
Optimising Python dictionary access code
Question:
I've profiled my Python program to death, and there is one function that is slowing everything down. It uses Python dictionaries heavily, so I may not have used them in the best way. If I ...
42
votes
18answers
7k views
while (1) Vs. for (;;) Is there a speed difference?
Long version...
A co-worker asserted today after seeing my use of while (1) in a Perl script that for (;;) is faster. I argued that they should be the same hoping that the interpreter would optimize ...
41
votes
11answers
6k views
Should Python import statements always be at the top of a module?
PEP 08 states:
Imports are always put at the top of the file, just after any module comments and docstrings, and before module globals and constants.
However if the class/method/function that I ...
40
votes
2answers
604 views
Why does a small change to this scala code make such a huge difference to performance?
I'm running on a 32-bit Debian/Squeeze system (a 2.5GHz Core2 CPU), sun-java6 6.24-1 but with the scala 2.8.1 packages from Wheezy.
This code, compiled with scalac -optimise, takes over 30s to run:
...
40
votes
18answers
2k views
What optimizations should be done early?
Anyone who reads a lot of SO questions knows that the need to preach against premature optimization is not going away anytime soon - but what about the other extreme, the projects that fail or ...
40
votes
7answers
4k views
What is the “cost” of .NET reflection?
I am currently in a programming mentality that reflection is my best friend. I use it a lot for dynamic loading of content that allows "loose implementation" rather than strict interfaces, as well as ...
39
votes
5answers
2k views
Is my Android App Draining Battery?
I'm developing a game for Android. It uses a surface view and uses the sort of standard 2D drawing APIs provided. When I first released the game, I was doing all sorts of daft things like re-drawing ...
39
votes
3answers
2k views
Worst Case Analysis for Regular Expressions
Are there any tools that will take a particular regular expression and return the worst case scenario in terms of the number of operations required for a certain number of characters that the regular ...
38
votes
6answers
959 views
C# 'is' type check on struct - odd .NET 4.0 x86 optimization behavior
Update: I have filed a bug report with Microsoft Connect, please vote for it!
Update 2: Microsoft have marked the bug report as fixed
Posted by Microsoft on 18/08/2010 at 17:25
This bug will ...
38
votes
18answers
36k views
Best way to reverse a string in C# 2.0
I've just had to write a string reverse function in C# 2.0 (i.e. LINQ not available) and came up with this:
public string Reverse(string text)
{
char[] cArray = text.ToCharArray();
string ...
37
votes
19answers
2k views
Effective optimization strategies on modern C++ compilers
I'm working on scientific code that is very performance-critical. An initial version of the code has been written and tested, and now, with profiler in hand, it's time to start shaving cycles from the ...
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();
...
37
votes
13answers
14k views
What's the best string concatenation method using C#?
What's the most efficient way to concatenate strings?
36
votes
8answers
924 views
Optimizations for pow() with const non-integer exponent?
I have hot spots in my code where I'm doing pow() taking up around 10-20% of my execution time.
My input to pow(x,y) is very specific, so I'm wondering if there's a way to roll two pow() ...
36
votes
22answers
6k views
Math optimization in C#
I've been profiling an application all day long and, having optimized a couple bits of code, I'm left with this on my todo list. It's the activation function for a neural network, which gets called ...
36
votes
29answers
2k views
What optimizations today are going to be useless tomorrow? [closed]
I hope we all know by now that Premature optimization is the root of all evil.
One side of that quote means by optimizing you are increasing complexity and complexity is evil. The other less known ...
35
votes
4answers
515 views
Can C# 'is' operator suffer under release mode optimization on .NET 4?
Below is a simple test fixture. It succeeds in Debug builds and fails in Release builds (VS2010, .NET4 solution, x64):
[TestFixture]
public sealed class Test
{
[Test]
public void ...
34
votes
13answers
26k views
Inline functions in C#?
How do you do "inline functions" in C#? I don't think I understand the concept. Are they like anonymous methods? Like lambda functions?
33
votes
2answers
881 views
Good introductory text about GHC implementation?
When programming in Haskell (and especially when solving Project Euler problems, where suboptimal solutions tend to stress the CPU or memory needs) I'm often puzzled why the program behaves the way it ...
33
votes
16answers
1k views
Optimizing for space instead of speed in C++
When you say "optimization", people tend to think "speed". But what about embedded systems where speed isn't all that critical, but memory is a major constraint? What are some guidelines, techniques, ...