免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1638 | 回复: 1
打印 上一主题 下一主题

是不是用多进程比多线程快得多? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-11-05 09:40 |只看该作者 |倒序浏览
是不是用多进程比多线程快得多?

在一个8CPU的AIX上面,直接使用线程比使用进程整整慢了三倍

,为什么?
下面thread5直接使用线程,thread6使用进程
thread5执行时间为:
开始时间:Fri Nov  5 08:23:43 CST 2004
结束时间:Fri Nov  5 08:25:17 CST 2004

thread6执行时间为:

Fri Nov  5 08:22:43 CST 2004
Fri Nov  5 08:23:11 CST 2004

附上源代码:

  1. 程序 thread5.c:

  2. #include<pthread.h>;
  3. #include<stdlib.h>;
  4. #include<unistd.h>;
  5. #include<stdio.h>;
  6. /*计算20000! */
  7. void *fac(void *arg){
  8. int i,j,k,r;
  9. int n;
  10. int data[200000];
  11. int digit;
  12. data[0]=1;
  13. data[1]=1;
  14. digit=1;
  15. n=20000;
  16. for(i=1;i<n+1;i++){
  17. for(j=1;j<digit+1;j++)data[j]*=i;
  18. for(j=1;j<digit+1;j++){
  19. if (data[j]>;=10){
  20. for(r=j;r<digit+1;r++){
  21. if (data[digit]>;=10)
  22. digit++;
  23. data[r+1]+=data[r]/10;
  24. data[r]=data[r]%10;
  25. }
  26. }
  27. }
  28. }
  29. }

  30. int main(void){
  31. system("date");
  32. pthread_t mythread1,mythread2,mythread3;
  33. pthread_create(&mythread1,NULL,fac,NULL);
  34. pthread_create(&mythread2,NULL,fac,NULL);
  35. pthread_create(&mythread3,NULL,fac,NULL);

  36. pthread_join(mythread1,NULL);
  37. pthread_join(mythread2,NULL);
  38. pthread_join(mythread3,NULL);


  39. system("date");
  40. printf("done\n");
  41. exit(0);
  42. }

  43. 程序thread6.c:

  44. #include<pthread.h>;
  45. #include<stdlib.h>;
  46. #include<unistd.h>;
  47. #include<stdio.h>;

  48. void *fac(void *arg){
  49. system("./fac1");
  50. }

  51. int main(void){
  52. system("date");
  53. pthread_t

  54. mythread1,mythread2,mythread3,mythread4,mythread5,mythre

  55. ad6,mythread7,mythread8;
  56. pthread_create(&mythread1,NULL,fac,NULL);
  57. pthread_create(&mythread2,NULL,fac,NULL);
  58. pthread_create(&mythread3,NULL,fac,NULL);

  59. pthread_join(mythread1,NULL);
  60. pthread_join(mythread2,NULL);
  61. pthread_join(mythread3,NULL);


  62. system("date");
  63. printf("done\n");
  64. exit(0);
  65. }

  66. 其中fac1.c为:
  67. //计算20000!
  68. #include <stdio.h>;
  69. void main(){
  70. int i,j,k,r;
  71. int data[20000000];
  72. int n;
  73. int digit;
  74. for (i=1;i<20000000+1;i++)data[i]=0;

  75. data[0]=1;
  76. data[1]=1;
  77. digit=1;

  78. n=20000;
  79. for(i=1;i<n+1;i++){
  80. for(j=1;j<digit+1;j++)data[j]*=i;
  81. for(j=1;j<digit+1;j++){
  82. if (data[j]>;=10){
  83. for(r=j;r<digit+1;r++){
  84. if (data[digit]>;=10)
  85. digit++;
  86. data[r+1]+=data[r]/10;
  87. data[r]=data[r]%10;
  88. }
  89. }
  90. }
  91. }

  92. }
复制代码

论坛徽章:
0
2 [报告]
发表于 2004-11-05 20:46 |只看该作者

是不是用多进程比多线程快得多?

可能的原因:(但不能保证正确)

在多CPU情况下,当前不少系统中进程可以分配到不同CPU,而细到线程时只能将同一进程的子线程部署到单个CPU。这样,你的多进程程序使用了多个CPU,而多线程程序没有这个优势。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP