Search Results

5
votes

C++: Best algorithm to check if a vector is sorted

Is there something faster than a loop checking that v[i]<=v[i+1] ? You will need to check any value to see if it's sorted, so it won't get any faster then O( …
4
votes

Math optimization in C#

If you're able to interop with C++, you could consider storing all the values in an array and loop over them using SSE like this: void sigmoid_sse(float *a_Values, float *a_Output, …
1
vote

How to correctly benchmark a [templated] C++ program

Unless you have a really aggressive compiler (can happen), I'd suggest calculating a checksum (simply add all the results together) and output the checksum. Other than that, you mi …
0
votes

Rounding off to nearest power of 2

For IEEE floats you'd be able to do something like this. int next_power_of_two(float a_F){ int f = *(int*)&a_F; int b = f << 9 != 0; // If we're a power of two this is 0 …
2
votes

Can this code be optimised?

Try swapping the x and y for loops for a more linear memory access pattern and (thus) less cache misses, like so. int xSize = ResultImageData.GetLength(0); int ySize = ResultImageDa …
3
votes

Optimizing a non-tail-recursive function.

This code is untested, but from the top of my head, the iterative function should look something like this: function render($index){ $stack = array(); array_push($index); $pre = …
6
votes

Why differ(!=,<>) is faster than equal(=,==) ?

It could have something to do with branch prediction on the CPU. Static branch prediction would predict that a branch simply wouldn't be taken and fetch the next instruction. However, hardly anybod …
2
votes

C coding practices for performance or code size - beyond what a compiler does

Compilers these days still aren't very good at vectorizing your code so you'll still want to do the SIMD implementation of most algorithms yourself. Choosing the right datastructures for yo …