77
votes
155answers
7k views
Biggest performance improvement you’ve had with the smallest change?
What's the biggest performance improvement you've had with the smallest change? For example, I once improved the performance of a certain page on a high-profile web app by a facto …
55
votes
31answers
3k views
When is assembler faster than C?
One of the stated reasons for knowing assembler is that, on occasion, it can be employed to write code that will be more performant than writing that code in a higher-level languag …
0
votes
2answers
65 views
Estimate Power Consumption Based on Running Time Analysis / Code Size
I've developed and tested a C program on my PC and now I want to give an estimate of the power consumption required for the program to do a single run. I've analysised the running …
25
votes
24answers
2k 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 …
0
votes
1answer
49 views
How to change iPhone app language during runtime?
Is there a way to change the application language during runtime?
So, after the change NSLocalizedString immediately returns the string for the new language.
What I'm doing now i …
26
votes
21answers
3k 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, …
33
votes
17answers
5k 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 pro …
5
votes
25answers
511 views
Will optimizing code become unnecessary?
If Moore's Law holds true, and CPUs/GPUs become increasingly fast, will software (and, by association, you software developers) still push the boundaries to the extent that you sti …
3
votes
7answers
191 views
How long does my code take to run?
How can I find out how much time my C# code takes to run?
1
vote
7answers
230 views
Another question about premature optimization
Knuth said:
We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil
I’m curious how he came up with 97%. Could someone …
3
votes
6answers
314 views
Why does this speed up my SQL query?
I learned a trick a while back from a DBA friend to speed up certain SQL queries. I remember him mentioning that it had something to do with how SQL Server compiles the query, and …
3
votes
4answers
106 views
Performing your own runtime analysis of your code in C#
I have written a large C# app with many methods in many classes.
I'm trying to keep a log of what gets called and how often during my development. (I keep a record in a DB)
Every …
6
votes
14answers
1k views
Fastest function to generate Excel column letters in C#
What is the fastest c# function that takes and int and returns a string containing a letter or letters for use in an Excel function? For example, 1 returns "A", 26 returns "Z", 2 …
0
votes
2answers
266 views
Graph layout optimization in C#
I've got a list of objects that I need to organize as an aesthetic graph. My current approach involves IronPython and a genetic algorithm, but this takes way too long.
I've been r …
4
votes
10answers
623 views
How can I improve this square root method?
I know this sounds like a homework assignment, but it isn't. Lately I've been interested in algorithms used to perform certain mathematical operations, such as sine, square root, e …
