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