我有三星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.您可以看到线程的调度方式,并观看其他两个内核的旋转.
以上是内存溢出为你收集整理的android-多核处理器的多线程全部内容,希望文章能够帮你解决android-多核处理器的多线程所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)