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).

learn more… | top users | synonyms

65
votes
1answer
2k views

Why does my application spend 24% of its life doing a null check?

This is my 3rd question on a similar topic, this time I'm focusing on a single line of code. The code for the binary tree iterator is below with the results from running performance analysis against ...
1
vote
1answer
33 views

C# / XNA - Bounding Circle Collision (Micro) Optimization?

I've been working on a simple space shooter, and have gotten to the point in the project where my terribly written code is actually slowing things down. After running EQATEC, I can see that the ...
2
votes
4answers
95 views

C++ Is this a form of micro optimization

Is this micro-optimization, or is it optimization at all? void Renderer::SetCamera(FLOAT x, FLOAT y, FLOAT z) { // Checking for zero before doing addition? if (x != 0) camX += x; if (y != ...
3
votes
2answers
53 views

What nonlocal effects can change the performance of a basic block?

A Basic Block is an assembly snippet with only one entrance point and one exit point (the Wikipedia link also has a more rigorous definition). Many compiler optimization passes rely on the compiler ...
1
vote
1answer
71 views

WaitHandle.WaitAny allocates copy of WaitHandle[] everytime it is called

I have been noticing that the call to WaitHandle.WaitAny allocates a copy of the WaitHandle[] given to it. As can be seen in the link below or using reflector: ...
0
votes
1answer
60 views

Can reading the dataset be faster in time and/or better in memory than this?

In Java, here is the code to read a file with a table of integers: public static int[][] getDataset() { // open data file to read n and m size parameters BufferedReader br = null; try { ...
6
votes
1answer
127 views

How can I unit test performance optimisations in C#?

I'm using an optimised version of Levenshtein's algorithm in some search code I'm building. I have functional unit tests to verify that the algorithm is returning the correct results, but in this ...
1
vote
3answers
44 views

How to truncate data in a dict so that the resulting JSON isn't longer than n bytes?

I have a python 2.7 dict such as {u"eat": u"糖果", u"drink": u"café"}, and I need to transfer it using JSON. The JSON string must be regular ASCII and it must be less than 256 chars. So far, I have ...
1
vote
3answers
78 views

How can I check which part of a method uses the most time?

I'm working on a project for optimizing an existing algorithm. I profiled the code with JIP and VisualVM and got a main bottleneck. Now I want to see what takes the most time IN the method. What is ...
1
vote
2answers
105 views

What is the fastest way to scan a C# byte[] for two bytes on a 64 bit computer and return the location?

I have an in-memory byte[] and need to locate the offset where 13 and 10 are. I will then use the following to extract that line: String oneLine = Encoding.ASCII.GetString(bytes, 0, max); What ...
2
votes
4answers
106 views

Check the existence of a HashMap key

In Java, having a HashMap fully filled in with data of such form: HashMap<Integer, int[]> map = new HashMap<Integer, int[]>(1000000, 1); what is faster when checking the existence of a ...
28
votes
10answers
2k views

x > -1 vs x >= 0, is there a performance difference

I have heard a teacher drop this once, and it has been bugging me ever since. Let's say we want to check if the integer x is bigger than or equal to 0. There are two ways to check this: if (x > ...
1
vote
1answer
69 views

while loop optimization a little bit

I've got a while loop running that grabs all the posts on my site while ( $all_query->have_posts() ) : $all_query->the_post(); there is meta data in each on that I need to play with. It's a ...
0
votes
2answers
256 views

Fast way to scan a double - c++ [closed]

I'm trying to optimize my solution to a problem, which requires fast double scanning. I tried to implement a function which read a double from the standard input, but I failed. Could someone point me ...
0
votes
3answers
119 views

How to properly increment some array key, even if key needs to be created?

Suppose you need to create a 'top' of some sort and have code like this: $matches=array(); foreach ($array as $v){ $matches[processing($v)]++; } This will output a Notice: Undefined index for ...
1
vote
3answers
111 views

Cheapest way to force implicit array bounds check

Let's say I have a method with the following signature: public int indexOf(byte[] bytes, byte toFind, int offset, int length) { ... } This method does something simple like look for the byte ...
2
votes
4answers
102 views

Branch Predicting [duplicate]

Possible Duplicate: Is it possible to tell the branch predictor how likely it is to follow the branch? So, if branch predicting plays such a great role ("Branch predictors play a critical ...
4
votes
2answers
218 views

What is the fastest way to subtract two arrays in scala

I have two arrays (that i have pulled out of a matrix (Array[Array[Int]]) and I need to subtract one from the other. At the moment I am using this method however, when I profile it, it is the ...
41
votes
4answers
1k views

Does calculating Sqrt(x) as x * InvSqrt(x) make any sense in the Doom 3 BFG code?

I browsed through the recently released Doom 3 BFG source code, when I came upon something that does not appear to make any sense. Doom 3 wraps mathematical functions in the idMath class. Some of the ...
2
votes
2answers
143 views

When doing bitwise operations in C#, do I ever have to consider the CPU besides x64 or x86?

I'm considering doing some Bitwise operations in C# and want to make sure I take full advantage of the CPU and bus. I'd also like to structure my in-memory data so it doesn't incur unnecessary load ...
6
votes
1answer
167 views

How do I optimize a loop which can be fully strict

I'm trying to write a brute-force solution to Project Euler Problem #145, and I cannot get my solution to run in less than about 1 minute 30 secs. (I'm aware there are various short-cuts and even ...
1
vote
1answer
160 views

Persuading the compiler to set registers outside a loop

Firstly, I will prefix this by saying I don't think it is necessary to understand the functioning of the code below to make a sensible attempt to solve my problem. This is primarily an optimisation ...
0
votes
2answers
223 views

jQuery - show/hide - check if already set [duplicate]

Possible Duplicate: Jquery performance: hide() vs is(':visible') - which is faster? Does it make sense to check (by own condition) if element is already hidden before calling ...
0
votes
0answers
155 views

Delete from multiple tables with common column in one query?

Micro optimization I know, this is more because I am curious. I have two link tables, blog_categories_posts => post_id, category_id blog_tags_posts => post_id, tag_id I am removing ...
1
vote
1answer
91 views

addition vs comparison [closed]

Let say I have an array of 1,000,000 elements with about 90% of 0s and 10% of 1s. In order to count of 1s, I can do sum=0; for(int i=0;i<size;i++) { sum+=x[i] } But I thought maybe ...
0
votes
3answers
73 views

Micro optimization - compiler optimization when accesing recursive members

I'm interested in writing good code from the beginning instead of optimizing the code later. Sorry for not providing benchmark I don't have a working scenario at the moment. Thanks for your attention! ...
-1
votes
4answers
77 views

PHP what is faster to use [closed]

What is faster / better to use? To put html into variables and print them later, or to just html print / echo print the content based on condition? EXAMPLE 1:(html into variables) ...
0
votes
2answers
244 views

Dynamically inject javascript file - why do most examples append to head?

In just about every example I come across for injecting a script dynamically with javascript, it ends with: document.getElementsByTagName("head")[0].appendChild(theNewScriptTag) Even yepnope.js ...
1
vote
1answer
96 views

How to hide SHLD delay?

I have a simple bit reader which uses the SHLD instruction (__shiftleft128) to read a bit stream. This works great. However, I have been doing some profiling and I notice that whatever instruction ...
3
votes
1answer
150 views

Can accessing uninitialized values result in a performance hit?

I'm optimizing a matrix numerical hotspot. Currently, I'm doing blocking and loop unrolling to improve performance. However, I deliberately avoid peeling the borders. Instead I let the blocking steps ...
-1
votes
5answers
323 views

Most efficient method to create all the letters in the alphabet into a string [duplicate]

Possible Duplicate: Generating an array of letters in the alphabet in C# (Theoretical question only, was just pondering it as a writing a filtering system (not using an alphabet, but got me ...
0
votes
2answers
99 views

Keeping a counter variable vs using count() at every iteration in PHP

In an infinite loop, i want to break out based on number of elements in an array. Say: $myarr = array(); While (True){ //... do something that modifies $myarr ... if (count($myarr) > ...
1
vote
4answers
122 views

How to optimize this python script further?

I've created this script to compute the string similarity in python. Is there any way I can make it run any faster? tries = input() while tries > 0: mainstr = raw_input() tot = 0 ml = ...
0
votes
2answers
48 views

Performance optimization multipliers

Can anyone provide an example of a system in which a performance improvement of x% to a single sub-component of the system results in an overall performance increase of Ax% (where A>1) for the entire ...
2
votes
1answer
94 views

Calling .length() in the for declaration is slower than doing so before the loop?

In Java code, I think this: for (int i = 0; i < s.length(); i++) { // do a lot of something } Is slower than this: int length = s.length(); for (int i = 0; i < length; i++) { // do a ...
1
vote
5answers
486 views

Performance: typedef vs wrapper class for primitive types?

I want to define a new type in C++ which is just some primitive type (in my example an int, could be any type). I call the type NodeId in this example. I could just use typedef int NodeId. I want a ...
7
votes
2answers
181 views

Non-virtual interface? (Need a very performant low level abstraction)

I'm trying to micro-optimize my code at a very low level point in the application architecture. So here is my concrete scenario: I have a parser class which parses a graph file (nodes, edges, ...
11
votes
2answers
373 views

Why is this assembly code faster?

I'm experimenting with a lexer, and I found that switching from a while-loop to an if-statement and a do-while-loop in one part of the program led to ~20% faster code, which seemed crazy. I isolated ...
-5
votes
1answer
74 views

cost of == operator vs < or > operators [closed]

This is really just sort of an academic question, I'm just curious to know which one is faster. I'm guessing the difference is negligible but still, I'd like to know. if( (x == 1) || (x == 2) ) vs ...
-1
votes
4answers
352 views

PHP: Which is faster: do while, while, or for loop [closed]

I am currently creating a socket server in PHP and I would like to know which one would be faster to use throughout it. I've heard for loops are faster than while loops, but I don't know about do ...
4
votes
4answers
969 views

How should I return multiple variables in a function (for best practises)?

Just curious to know what the best practice would be for something like this: A function, that returns multiple variables - how should one return these variables? like this (globalizing): function ...
0
votes
2answers
85 views

Is this code ineffective/slow? [duplicate]

Possible Duplicate: How is an array in a PHP foreach loop read? If I have this function: function getList() { $list = array(); $list['foo'] = 'Foo'; $list['bar'] = 'Bar'; ...
2
votes
2answers
109 views

JS Private methods not redefined at each constructor call

How do you make a Javascript private method that is not redefined each time you call the constructor ? As far as I know, in OOP-JS, private methods are methods defined in the "constructor method" of ...
3
votes
2answers
243 views

CPU Resources and Clock Cycles: System.out.println Or Incrementing a flag

To debug our Android code we have put System.out.println(string) which will let us know how many times a function has been called. The other method would have been to put a flag and keep on ...
2
votes
3answers
132 views

PHP null and copy-on-write

Suppose I want to have two variables and have them both equal to null. (More realistically, I am thinking about an array that contains a large amount of nulls, but the "two variables" scenario is ...
5
votes
2answers
274 views

Accessing arbitrary 16-bit elements packed in a 128-bit register

With Intel compiler intrinsics, given a 128-bit register, packing 8 16-bit elements, how do I access (cheaply) arbitrary elements from within the register, for subsequent use of _mm_cvtepi8_epi64 ...
3
votes
2answers
1k views

AddThis and Google Page Speed

No matter how I try to load AddThis (using Google +1, Facebook Send and Like, and Twitter buttons as default), Google Page Speed still warns about: Leverage browser caching Defer parsing of ...
0
votes
4answers
385 views

C++: the fastest way to access specific octet of int

Assuming we have 32bit integer, 8bit char, gcc compiler and Intel architecture: What would be the fastest way (with no assembler usage) to extract, say, third octet of integer variable? To store it ...
6
votes
2answers
397 views

LINQ Count() until, is this more efficient?

Say I want to check whether there are at least N elements in a collection. Is this better than doing? Count() >= N Using: public static bool AtLeast<T>(this IEnumerable<T> ...
-1
votes
3answers
93 views

Optimising this function

I have a script which calls this function more than 100k times, so I am looking for anyway to squeeze a bit more performance out of it. Can you suggest optimisations or an alternate method for ...

1 2 3 4 5