免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: benjiam
打印 上一主题 下一主题

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

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

系统环境:p4630 2G 内存,xp环境下freebsd和CentOS虚拟机,都是默认安装,配置相同,未开apache和mysql这样的服务 ...

主要是用time测试进程运行的时间是没什么可比性的。

论坛徽章:
0
12 [报告]
发表于 2007-05-29 21:05 |只看该作者
主要是用time测试进程运行的时间是没什么可比性的。


why?  在大量的运算之后 我只需要粗陋的从系统时间中 就能获取 程序运行的时间了。


ls 的ls

你的结论是不正确的。

我的代码中io 部分不多。

pngout = fopen(pngfile, "wb");   
          /* Do the same for a JPEG-format file. */  
          jpegout = fopen(jpgfile, "wb");  
           /* Output the image to the disk file in PNG format. */  
         //  gdImagePng(im, pngout);   
           /* Output the same image in JPEG format, using the default    JPEG quality setting. */  
         //  gdImageJpeg(im, jpegout, -1);   
           /* Close the files. */  
           fclose(pngout);  
           fclose(jpegout);   

我给出的代码 已经屏蔽了 写文件的部分。所以 io 部分 只有一个open 一个close

很不幸 在我刚才 将open 和close 也屏蔽的结果。 结果更差

freebsd  401s
linux       177s

完全没有io  操作。 bsd 的表现实在让人失望

论坛徽章:
0
13 [报告]
发表于 2007-05-29 21:10 |只看该作者
原帖由 benjiam 于 2007-5-29 21:05 发表
主要是用time测试进程运行的时间是没什么可比性的。


why?  在大量的运算之后 我只需要粗陋的从系统时间中 就能获取 程序运行的时间了。


ls 的ls

你的结论是不正确的。

我的代码中io 部分不多。
...

实时时间对效率的比较没有意义,比较效率用的是进程用了多少时间而不是时钟跑了多长时间。
在分时系统上,计算效率用的是进程自己使用的时间。
按照你的计算方式,你要是跑在dos上估计更快。

论坛徽章:
0
14 [报告]
发表于 2007-05-29 21:20 |只看该作者
实时时间对效率的比较没有意义,比较效率用的是进程用了多少时间而不是时钟跑了多长时间。
....

你需要对你的客户说  一样的机器  一样的工作 这台机器跑得时间更长,但他利用的cpu时间其实更短吗? 所以它效率更高?

同样一个业务 bsd 需要400多秒才能完成, linux 200秒不到。你却说bsd 更好?

论坛徽章:
0
15 [报告]
发表于 2007-05-29 21:26 |只看该作者
原帖由 benjiam 于 2007-5-29 21:20 发表
实时时间对效率的比较没有意义,比较效率用的是进程用了多少时间而不是时钟跑了多长时间。
....

你需要对你的客户说  一样的机器  一样的工作 这台机器跑得时间更长,但他利用的cpu时间其实更短吗? 所以它效 ...

我只是在说事实而已,你怎么认为那是你的事情,我也没让你说谁好谁不好,你愿意说什么说什么。
如果你想探讨这个问题的原因,那么我上面已经说了。
如果你打算在这里拍砖或者找拍,那就找点benchmark方面的资料自己补习一下先。

论坛徽章:
0
16 [报告]
发表于 2007-05-29 21:36 |只看该作者
原帖由 benjiam 于 2007-5-29 21:05 发表
主要是用time测试进程运行的时间是没什么可比性的。


why?  在大量的运算之后 我只需要粗陋的从系统时间中 就能获取 程序运行的时间了。


ls 的ls

你的结论是不正确的。

我的代码中io 部分不多。
...



程序运行,我按照你贴出来的没做任何修改,虽说是open和close,但是文件确实生成了,文件生成就涉及到很多的IO操作,虽说楼主的代码IO部分并不多,但这部分的时间和程序在CPU上运行的时间相比不可能忽略不计,相反会占据绝大部分的时间!

[ 本帖最后由 杜比环绕声 于 2007-5-29 21:42 编辑 ]

论坛徽章:
0
17 [报告]
发表于 2007-05-29 21:40 |只看该作者
不能说没做修改,我把第一行的

#include "gd.h"

改成了

#include <gd.h>

论坛徽章:
0
18 [报告]
发表于 2007-05-29 21:41 |只看该作者
实时时间对效率的比较没有意义,比较效率用的是进程用了多少时间而不是时钟跑了多长时间。

首先linux 也是一个分时系统.

其次 教条的比较进程用了多少cpu 时间,却不去比较真正的结果,又有什么意义?

或许 用dos 会更快,因为没有进程切换。

但linux 和 freebsd 一样。 也是一个多进程的分时系统。  在同样的cpu 和硬件条件下,
结果差异如此之大。如何让人信服?

我更愿意看到有人对 port 的编译方法提出置疑,指出编译参数修改,提高在bsd 下面的速度。 或者对gdlib 的源码提出修改意见,来提高性能。

如果比较的系统不是linux 而是 bsd 5.4 和 bsd 6.1 呢?
bsd 5.4 完成程序的时间长 但是花费cpu 时间少, 你们又会如何解释? 5.4 比6.1 更好?

论坛徽章:
0
19 [报告]
发表于 2007-05-29 21:52 |只看该作者
  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. }
复制代码


你再测试一下  完全没有io操作的代码

论坛徽章:
0
20 [报告]
发表于 2007-05-29 21:53 |只看该作者
最后再说一点

测试结果不是单单用一个程序,运行两三遍就可以作为一种结论提出的,望楼主斟酌使用你的测试结论。就算用一个程序,也要用不同的数据,以及不同的系统压力下的运行数据进行考量。

就此停住,不再参与此话题的讨论!!!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP