My code does the following:
It will be executed in parallel, in a cluster. The master rank will generate an descendent-ordered array with lots of elements (maximum 1.6M elements), will divide this array into smaller arrays, will send each of these parts to each of the computers in the cluster. Each computer in the cluster will perform a quicksort algorithm in it's part of the array and will send back this (ascendent-ordered) array to the master rank. The master rank will then use a modified bubble sort algorithm to sort each parts received from the child ranks and build the new ordered array. (The objective is to perform the quicksort algorithm in parallel computing).
Everything is working perfectly fine, the unique problem is that I need to measure the computing time of the algorithm. It is a university work, so the PDF says to "calculate the time ONLY for the ordering algorithm". So I think its not to consider the array transfer between the network and etc.
What I did in the code is to measure the quicksort elapsed time for every child rank. The biggest time will be the computing time. Am I right? But there is a problem. Look the output:
Array final, first 1, last 800000
Vetor de 800000 elementos ordenado com quicksort em paralelo (99 threads).
Dentre o tempo de processamento de cada node, o maior foi 140000, 0.14 seconds.
Array final, first 1, last 1600000
Vetor de 1600000 elementos ordenado com quicksort em paralelo (99 threads).
Dentre o tempo de processamento de cada node, o maior foi 560000, 0.56 seconds.
It says the maximum time of a child performing quicksort was 0.56 seconds. But I waited like 30 seconds before the last result was printed. Is that absurd difference normal? Am I measuring the time correctly?
Thanks for the help