我有三星Galaxy S3,它使用了自己的Exynos 4 Quad处理器.
因此,我想优化我的应用程序,使其可以使用处理器的所有4个核心.
所以我做了一些测试:
>在一个线程中运行任务.处理时间-8秒.
>在四个线程中运行任务.处理时间-仍为8秒.
new Thread() {
public void run() {
// do 1/4 of task
}
}.start();
new Thread() {
public void run() {
// do 1/4 of task
}
}.start();
new Thread() {
public void run() {
// do 1/4 of task
}
}.start();
new Thread() {
public void run() {
// do 1/4 of task
}
}.start();
>在ExecutorService中运行任务.处理时间-仍为8秒.
ExecutorService threadPool = null;
threadPool = Executors.newFixedThreadPool(4);
threadPool.execute(new Runnable() {
@Override
public void run() {
// do 1/4 of task
}});
threadPool.execute(new Runnable() {
@Override
public void run() {
// do 1/4 of task
}});
threadPool.execute(new Runnable() {
@Override
public void run() {
// do 1/4 of task
}});
threadPool.execute(new Runnable() {
@Override
public void run() {
// do 1/4 of task
}});
看起来所有工作都是同步完成的.为什么它不平行?
解决方法:
您可以使用C或Java尝试测试:
http://bigflake.com/cpu-spinner.c.txt
http://bigflake.com/MultiCore.java.txt
在Nexus 4上运行MultiCore.java时,我看到:
Thread 1 finished in 1516ms (1267234688)
Thread 3 finished in 1494ms (1519485328)
Thread 0 finished in 1530ms (51099776)
Thread 2 finished in 1543ms (-1106614992)
All threads finished in 1550ms
更新:
观察systrace的测试很有用.作为回答类似的question的一部分,我为此测试设置了一个页面shows the systrace output.您可以看到线程的调度方式,并观看其他两个内核的旋转.