免费注册 查看新帖 |

Chinaunix

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

[FreeBSD] 如何提高程序的性能? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-05-28 22:46 |只看该作者 |倒序浏览
做了测试了 同一台pc 做的测试 centos 4.0 和 bsd 6.1

大家都是默认的


  1. #include "gd.h"
  2. /* Bring in standard I/O so we can output the PNG to a file */
  3. #include <stdio.h>
  4. #include <time.h>

  5. int main() {
  6.         int i = 0;
  7.         time_t a,b;
  8.          time(&a);
  9.         for (i = 0; i <5000; i++)
  10.         {

  11.                 draw(i);
  12.         }
  13.        time(&b);
  14.         printf("%s ", ctime(&a));
  15.         printf("%s",  ctime(&b));
  16.         printf("take %d \n", b-a);
  17.         return 0;
  18. }

  19. int draw(int number)
  20. {  
  21.          /* Declare the image */  
  22.          gdImagePtr im;  
  23.          /* Declare output files */  
  24.          FILE *pngout, *jpegout;  
  25.          /* Declare color indexes */  
  26.          int black;
  27.          int white;
  28.          int red;
  29.          int green;
  30.          
  31.          int width  = 1800;
  32.          int heigh  = 500;
  33.          int xhead  = 50;         
  34.          int yhead  = 50;
  35.          int jianju = 10;
  36.          int xtail    =        xhead;
  37.          int ytail    =   yhead;
  38.          int xnum   = (width-  xhead- xtail)/ jianju  ;
  39.          int ynum   = (heigh-  yhead- ytail)/ jianju;
  40.         double PI = 3.1415926;

  41.          int i =0;

  42.          /* Allocate the image: 64 pixels across by 64 pixels tall */  
  43.          im = gdImageCreate(width, heigh);   
  44.          /* Allocate the color black (red, green and blue all minimum).   
  45.          Since this is the first color in a new image, it will    be the background color. */
  46.          
  47.           white = gdImageColorAllocate(im, 255, 255, 255);
  48.           black = gdImageColorAllocate(im, 0, 0, 0);     
  49.           green = gdImageColorAllocate(im, 0, 255, 0);     
  50.           red = gdImageColorAllocate(im, 255, 0, 0);     
  51.          
  52.          
  53.           /* Allocate the color white (red, green and blue all maximum). */  
  54.               
  55.           /* Draw a line from the upper left to the lower right,    using white color index. */  
  56.          
  57.           /*
  58.           gdImageLine(im, 0, 0, 63, 63, black);     
  59.           gdImageLine(im, 100, 100, 63+100, 63+100, red);     
  60.           gdImageLine(im, 0+200, 0+200, 300, 300, green);     
  61.           */
  62.          
  63.           for (i = 0; i < ynum; i++) {   // �� ==
  64.              gdImageLine(im, xhead, yhead+i*jianju , xhead + xnum*jianju ,yhead+i*jianju, green);         
  65.           }
  66.          
  67.           for (i = 0; i < xnum; i++) {   // ֱ�
  68.              gdImageLine(im, xhead + i*jianju, heigh-yhead , xhead + i*jianju , heigh-yhead-ynum*jianju, green);         
  69.           }
  70.         
  71.           for (i = 0; i < xnum*jianju; i++) {   // ֱ�
  72.              gdImageLine(im, xhead + i, (heigh-yhead -ytail)*(1.0/2)+yhead+(sin(PI * (6*i*0.1)/180)*(heigh-yhead -ytail)*(1.0/2)) , xhead + i , (heigh-yhead -ytail)*(1.0/2)+ynum*jianju, red);         
  73.           }
  74.          
  75.          
  76.           /* Open a file for writing. "wb" means "write binary", important   
  77.           under MSDOS, harmless under Unix. */  
  78.         char pngfile[256] ={0};
  79.         char jpgfile[256] ={0};
  80.         sprintf(pngfile, "%s%04d.png","test",number);
  81.         sprintf(jpgfile, "%s%04d.jpg", "test",number);
  82.        
  83.         pngout = fopen(pngfile, "wb");   
  84.           /* Do the same for a JPEG-format file. */  
  85.           jpegout = fopen(jpgfile, "wb");  
  86.            /* Output the image to the disk file in PNG format. */  
  87.          //  gdImagePng(im, pngout);   
  88.            /* Output the same image in JPEG format, using the default    JPEG quality setting. */  
  89.          //  gdImageJpeg(im, jpegout, -1);   
  90.            /* Close the files. */  
  91.            fclose(pngout);  
  92.            fclose(jpegout);   
  93.            /* Destroy the image in memory. */  
  94.            gdImageDestroy(im);
  95.            
  96. }


复制代码



做了2次 测试 测试的差别 在于 一次 将文件保存为jpg 和png  第二次不保存

因为我知道bsd 的磁盘操作能力不强

但是结果让我太失望

不保存的结果
linux是 177s
bsd    403s

保存的结果 是
linux  692s
bsd   1262s

效果差太多了。 当然你可以说这么测试不权威 。但是代码都用一样的,一样的没有优化的情况下 ,同一台pc

而且centos 还有mysql apache mysql 等几个服务。 (都没有负载)结果差太多了。

bsder 要加油了。

你们也可以在自己的机器上 使用linux 和bsd 都跑跑看。 看看效果差多少? 如果bsd 快了

把调节的参数也贴贴看。

cmd: gcc -o 1 1.c -lgd


还有一个结果 就是 哭芮 2 不是很强啊
1.8*4 的 +1g ramd centos 结果也是99s

而我的机器 c31.1 +256 centos 是 173


最后希望 客观的看待这个结果。 找到问题的关键

论坛徽章:
0
2 [报告]
发表于 2007-05-29 00:05 |只看该作者

论坛徽章:
0
3 [报告]
发表于 2007-05-29 09:24 |只看该作者
原帖由 benjiam 于 2007-5-28 22:46 发表
做了测试了 同一台pc 做的测试 centos 4.0 和 bsd 6.1

大家都是默认的
[code]

#include "gd.h"
/* Bring in standard I/O so we can output the PNG to a file */
#include <stdio.h> ...

不了解这种图形操作是不是与图形芯片有关系。
另外,你有很多的IO操作,默认情况下,FreeBSD的IO是同步的。
我认为计算为主的进程效率与OS关系不大。

论坛徽章:
0
4 [报告]
发表于 2007-05-29 11:08 |只看该作者
GD库跟图形芯片应该没有关系。

我建议把跟文件操作有关系的语句(包括文件打开、关闭等)全部注释掉然后再做测试。如果差距还是这么大那问题应该出在GD库上。我手边没有环境做对比测试。

论坛徽章:
0
5 [报告]
发表于 2007-05-29 11:45 |只看该作者
可惜我不是系统开发人员,没有做过这样的项目. 我一般都是用内存替换读写十分平凡的那块磁盘分区

论坛徽章:
0
6 [报告]
发表于 2007-05-29 12:56 |只看该作者
这是我一个项目里面的 一个测试。

windows 下面的测试结果更惊人

89秒。 不保存文件速度 比我的苦芮2 1.8*4 还快

保存文件是589秒

计算机的配置 是p4 2.4 windows 2003 devcpp 5.0 512M ram

如果是gdlib 的问题。 windows 和unix 的差距 可以解释。
但bsd 和linux 就南解释了。这两者的代码应该都很相近。

如果说是编译参数的问题,我认为这更难解释。 一个是port 安装 ,一个是centos 自带的光盘。
如果port 安装出来的程序性能差这么多,那port 管理真是个大问题。

bsd 的优点。如果此时 你登录进系统。会发现没有延迟,而linux 在跑运算的时候
是有明显延迟的。 如果此时 你在同目录下删除1000 个文件,bsd 很快。而且没延迟
linux 慢 有延迟感。  linux 用的是ext3



我的个人意见,应该是bsd 的系统调度,把更多的cpu 提供给了别的进程。运算效率不如linux
但应该更好的保证了公正性。  bsd 和centos 的差距如此之大,真让我非常失望。 我想如果时间差距
在3-5秒内,是可以接受的。

我还在suse 9.0 上面测试过。 在suse 的gui 下面,性能惨不韧度 500 多秒指完成了 1/10. 性能大概只有
同样配置centos 的字符界面下的1/5.  在切到init 3 下面去。性能立刻就上去了 centos 差不多的。 只有10秒左右的差距。

因为都是在同一台pc 上面测试的。所以应该是公正的。

我还有freebsd 5.4 原装的os . 速度也是很低。 比6.1 慢

最后贴一下 我的机器
pc1  c1.1 256M DQI 主板
centos 4
freebsd 6.1
windows

pc2 c1.1  512 asus 815
suse 9
windows
freebsd 5.4

pc3 p4 2.4 512M
windows
suse 9

pc4 苦芮1.8*4 1G 基价945G
centos 4

所有的测试都是在上面 测试的

论坛徽章:
0
7 [报告]
发表于 2007-05-29 13:36 |只看该作者
原帖由 benjiam 于 2007-5-29 12:56 发表
这是我一个项目里面的 一个测试。

windows 下面的测试结果更惊人

89秒。 不保存文件速度 比我的苦芮2 1.8*4 还快

保存文件是589秒

计算机的配置 是p4 2.4 windows 2003 devcpp 5.0 512M ram

如果是 ...

我一直没有注意你测试时间的方式,现在发现你用的是time,这个测量是没什么意义的。
你可以用times看看结果。

论坛徽章:
0
8 [报告]
发表于 2007-05-29 13:40 |只看该作者
原帖由 benjiam 于 2007-5-29 12:56 发表
这是我一个项目里面的 一个测试。

windows 下面的测试结果更惊人

89秒。 不保存文件速度 比我的苦芮2 1.8*4 还快

保存文件是589秒

计算机的配置 是p4 2.4 windows 2003 devcpp 5.0 512M ram

如果是 ...


          

原帖由 mingyanguo 于 2007-5-29 13:36 发表

我一直没有注意你测试时间的方式,现在发现你用的是time,这个测量是没什么意义的。
你可以用times看看结果。


        

[ 本帖最后由 mkdir 于 2007-5-29 13:41 编辑 ]

论坛徽章:
2
技术图书徽章
日期:2013-09-04 15:21:51酉鸡
日期:2013-11-01 21:20:20
9 [报告]
发表于 2007-05-29 14:03 |只看该作者
一个单线程的程序,还要探讨多核的cpu?!
open/close,难道就没有fs操作了?
在一个目录下存10k个的文件,够狠的,改成测试fs的目录节点测试了

论坛徽章:
0
10 [报告]
发表于 2007-05-29 20:32 |只看该作者
我按照楼主的代码,编译运行了一下,刨除系统差异,linux和freebsd差异并不是楼主说得那么大

系统环境:p4630 2G 内存,xp环境下freebsd和CentOS虚拟机,都是默认安装,配置相同,未开apache和mysql这样的服务程序,在KDE桌面环境下虚拟终端中测试

测试结果:

CentOS : 66秒

FreeBSD: 122秒


分析源代码,运行时间主要集中在文件保存上,因为两者文件系统设计上的差异,这种运行时间的差异并不能说明什么!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP