I was playing around with the LG LG P990 optimus speed and noticed that I could not get any speedup at all using multiple threads.
I used the following code for to measure the time needed for some computations.
public class TestThreads extends Thread{
public void run()
{
double temp;
for(int i = 0; i < 5000000 ;i++)
{
temp = Math.random()*Math.random();
}
}
}
long start = System.currentTimeMillis();
Thread t1 = new TestThreads();
Thread t2 = new TestThreads();
t1.start();
t2.start();
t1.join();
t2.join();
The resulting time I compared to the the needed to calculate
for(int i = 0; i < 10000000 ;i++)
{
temp = Math.random()*Math.random();
}
Since the 2 Threaded Version calculates the same amount of loops but distributed over 2 Threads which could possibly run parallel I expected this Version to be significantly faster. However there was no speedup at all and in some cases the Threaded Version was even slower. is there a problem with my idea / code or does Android not distribute multiple threads accross multiple CPU cores?