So, I was doing some benchmark tests with threads, and i wrote these pieces of code:
resp_threadless[] and resp_threaded[] are global int arrays and their size is n;
int n = 100000;
void function() {
for (long j = 0; j < n; ++j) {
int count = 0;
double x = vetor[j];
while (x > 1.0) {
x = sqrt(x);
++count;
}
resp_threadless[j] = count;
}
}
DWORD WINAPI function_th( LPVOID lpParam ) {
for (long j = 0; j < n; ++j) {
int count = 0;
double x = vetor[j];
while (x > 1.0) {
x = sqrt(x);
++count;
}
resp_threadless[j] = count;
}
}
I benchmarked the first function by just calling her:
function();
And the second one like this:
HANDLE hThreadArray[1];
DWORD dwThreads[1];
hThreadArray[0] = CreateThread(NULL, 0, function_th, NULL , 0, &(dwThreads[0]));
WaitForMultipleObjects(1, hThreadArray, TRUE, INFINITE);
CloseHandle(hThreadArray[0]);
Keep in mind that I know that calling multiple threads using function_th() will not parallelize it, this is just a test because i was having really strange results, so I decided to see what would happen with one thread and one function using the SAME code.
I tested this in a Intel Atom N270, and windows XP with NUMPROC = 1.
Results: Serial code: 1485 ms One Thread: 425 ms
I've had similar results using multiprocessor machines, and even with code using semaphores to parallelize the work done by the threads.
Does anyone has any idea of what could be happening?
EDIT
Inverting the order, running multiple times each one, etc... -> No change
Higher N -> Thread one is proportionally even faster
Using QueryPerformanceCounter() -> No change
Thread Creation Overhead -> Should make the threaded even one slower, not faster
Original code: http://pastebin.com/tgmp5p1G
function()) has low priority? – icepack Oct 21 '12 at 23:31vetor[]access. – yohjp Oct 22 '12 at 5:59sqrt. I heard that Intel Atom has poor FPU performance. (the main thread and new user-created thread has different mode for C runtime math library?) – yohjp Oct 23 '12 at 4:57