Tagged Questions
7
votes
3answers
310 views
Profiling help required
I have a profiling issue - imagine I have the following code...
void main()
{
well_written_function();
badly_written_function();
}
void well_written_function()
{
for (a small number)
...
4
votes
2answers
252 views
Optimzing SSE-code
I'm currently developing a C-module for a Java-application that needs some performance improvements (see Improving performance of network coding-encoding for a background). I've tried to optimize the ...