home *** CD-ROM | disk | FTP | other *** search
- Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
- Path: sparky!uunet!paladin.american.edu!auvm!PITTVMS.BITNET!ADROSEN
- X-Envelope-to: SAS-L@OHSTVMA.BITNET
- X-VMS-To: IN%"SAS-L@OHSTVMA.BITNET"
- X-VMS-Cc: ADROSEN
- Message-ID: <01GOMXA0VY5S936DTN@vms.cis.pitt.edu>
- Newsgroups: bit.listserv.sas-l
- Date: Thu, 10 Sep 1992 22:59:00 EST
- Reply-To: "Allan D. Rosen (412)624-0418" <ADROSEN@PITTVMS.BITNET>
- Sender: "SAS(r) Discussion" <SAS-L@UGA.BITNET>
- From: "Allan D. Rosen (412)624-0418" <ADROSEN@PITTVMS.BITNET>
- Subject: More Benchmarks for SAS under OS/2
- Lines: 85
-
- -----------------------------------------------------
- Content: Continuing Discussion
- SUMMARY: More Benchmarks for SAS under OS/2
- E-ADDR: ADROSEN@vms.cis.pitt.edu
- NAME: Allan Rosen
- ADDR: University of Pittsburgh
- -------------------------------------------------------
-
- I have some benchmark results to add to what Joe Svec provided for SAS under
- OS/2.
- I have included below:
- 1. Table describing the computing environments.
- 2. Table of comparisons.
- 3. The benchmark program.
-
- Please note that one of the tests includes results for two sessions which were
- run almost simultaneously. After submitting each session in sequence,
- I opened up OS/2's Window List so that neither SAS session had
- any preference by the operating system.
-
- -----------------------------------------------------
- System 1 System 2
- OS OS/2 1.3 OS/2 2.0
- SAS SAS 6.06 SAS 6.06
- Vendor Gateway
- Chip 386 25MHz DX2 486 50MHz DX2
- Bus ISA EISA
- RAM 16MB 16MB 70ns RAM
- HD 330MB SCSI 340MB Maxtor SCSI(15ms)
- Controller Western Digital Adaptec 1742A SCSI EISA
- 7000 FASST SCSI
- Tester Joe Svec Allan Rosen
- "Svec@ACT-ACT6-PO. "ADROSEN@vms.cis.pitt.edu"
- ACT.ORG"
- -----------------------------------------------------
- system # data step 1 data step 2 proc proc
- and mode write to file read file sort reg
- 1 batch 12.16 6.90 4.50 5.53
- 2 batch 5.12 2.85 3.22 3.00
- 2 DMS 3.85 3.50 3.25 2.25
-
- 2 DMS
- session1 9.59 6.08 2.77 6.15
- session2 8.52 7.59 5.00 3.16
- ----------------------------------------------------
- * benchmrk.sas *;
-
- filename dataf 'c:\test.sas';
-
- data _null_;
- file datf;
- do a='c', 'b', 'a';
- do x=1 to 1000;
- y=4+3*x+rannor(0); put a x y;
- end;
- end;
- run;
-
- data t1;
- infile datf;
- length a $ 1;
- input a x y;
- x2=x*x;
- ia=0; ib=0; ic=0;
- select(a);
- when('a') ia=1;
- when('b') ib=1;
- when('c') ic=1;
- otherwise;
- end;
- run;
-
- proc sort data=t1;
- by a;
- run;
-
- proc reg;
- model y=x;
- model y=ia ib ic x x2 /noint;
- run;
- quit;
- -------------------------------------------------------
-
- Allan Rosen
- University of Pittsburgh
-