home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / bit / listserv / sasl / 4146 < prev    next >
Encoding:
Text File  |  1992-09-10  |  3.0 KB  |  101 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!europa.asd.contel.com!paladin.american.edu!auvm!ACT-ACT6-PO.ACT.ORG!SVEC
  3. X-Vers: Weeg cc:Mail/SMTP translation (originally by A. Marshall)
  4. Message-ID: <9209110052.AA09967@ns-mx.uiowa.edu>
  5. Newsgroups: bit.listserv.sas-l
  6. Date:         Thu, 10 Sep 1992 19:16:00 CST
  7. Reply-To:     Svec@ACT-ACT6-PO.ACT.ORG
  8. Sender:       "SAS(r) Discussion" <SAS-L@UGA.BITNET>
  9. From:         Svec@ACT-ACT6-PO.ACT.ORG
  10. Subject:      Benchmark results under OS/2 1.3
  11. Lines: 88
  12.  
  13. I saw the benchmark results that someone posted recently for a big IBM
  14. mainframe, and I couldn't resist running it on my 386 25MHz DX running
  15. SAS 6.06 under OS/2 version 1.3 (no 2.0 yet, sorry).  The machine has
  16. a 330MB SCSI hard drive with a Western Digital 7000 FASST SCSI controller, and
  17. 16 MB RAM.  I ran the thing from the command line - running in "intereactive"
  18. mode is slightly slower.
  19.  
  20. I'd be VERY INTERESTED to see results from this benchmark when run on
  21. other PC configurations (486's, etc, OS/2 2.0 vs. OS/2 1.3, etc)...
  22.  
  23. Joe Svec
  24. Research Analyst
  25. American College Testing
  26. Iowa City, IA  52245
  27.  
  28. ---
  29.  
  30. NOTE: Copyright(c) 1989 by SAS Institute Inc., Cary, NC USA.
  31. NOTE: SAS (r) Proprietary Software Release 6.06.03
  32.       Licensed to AMERICAN COLLEGE TESTING, Site 0026417001.
  33.  
  34. 1          filename dataf 'c:\test.sas';
  35. 2
  36. 3          data _null_;
  37. 4             file datf;
  38. 5             do a='c', 'b', 'a';
  39. 6                do x=1 to 1000;
  40. 7                   y=4+3*x+rannor(0); put a x y;
  41. 8                end;
  42. 9             end;
  43. 10         run;
  44.  
  45. NOTE: The file DATF is:
  46.       FILENAME=C:\sas\DATF.DAT
  47.  
  48. NOTE: 3000 records were written to the file DATF.
  49.       The minimum record length was 14.
  50.       The maximum record length was 19.
  51. NOTE: The DATA statement used 12.16 seconds.
  52.  
  53. 11
  54. 12         data t1;
  55. 13            infile datf;
  56. 14            length a $ 1;
  57. 15            input a x y;
  58. 16            x2=x*x;
  59. 17            ia=0; ib=0; ic=0;
  60. 18            select(a);
  61. 19               when('a') ia=1;
  62. 20               when('b') ib=1;
  63. 21               when('c') ic=1;
  64. 22               otherwise;
  65. 23            end;
  66. 24         run;
  67.  
  68. NOTE: The infile DATF is:
  69.       FILENAME=C:\sas\DATF.DAT
  70.  
  71. NOTE: 3000 records were read from the infile DATF.
  72.       The minimum record length was 14.
  73.       The maximum record length was 19.
  74. NOTE: The data set WORK.T1 has 3000 observations and 7 variables.
  75. NOTE: The DATA statement used 6.90 seconds.
  76.  
  77. 25
  78. 26         proc sort data=t1;
  79. 27            by a;
  80. 28         run;
  81.  
  82. NOTE: SAS sort was used.
  83. NOTE: The data set WORK.T1 has 3000 observations and 7 variables.
  84. NOTE: The PROCEDURE SORT used 4.50 seconds.
  85.  
  86. 29
  87. 30         proc reg;
  88. 31            model y=x;
  89. 32            model y=ia ib ic x x2 /noint;
  90. 33         run;
  91.  
  92. NOTE: 3000 observations read.
  93.       3000 observations used in computations.
  94. NOTE: At least one W.D format was too small for the number to be printed. The de
  95. cimal may be shifted by the "BEST" format.
  96. NOTE: The PROCEDURE REG printed pages 1-2.
  97. NOTE: The PROCEDURE REG used 5.53 seconds.
  98.  
  99.  
  100. NOTE: SAS Institute Inc., SAS Circle, PO Box 8000, Cary, NC 27512-8000
  101.