disk file reads slow down for file sizes greater than 2 GB
From: John S (shaeffer_at_bigzoo.net)
Date: 03/15/04
- Previous message: Richard Maine: "Re: internal procedure can't use array of derived type from main"
- Next in thread: Ian Bush: "Re: disk file reads slow down for file sizes greater than 2 GB"
- Reply: Ian Bush: "Re: disk file reads slow down for file sizes greater than 2 GB"
- Reply: Herman D. Knoble: "Re: disk file reads slow down for file sizes greater than 2 GB"
- Reply: David Frank: "Re: disk file reads slow down for file sizes greater than 2 GB"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 15 Mar 2004 11:40:17 -0800
Have been developing an EM integral equation solver using sparse
methods and a special block LU matrix factorization for really large
method of moment problems. Have done problems with 100,000 unknowns
in 8 hours.
The platform is a 3 GHz PC, 2 GB memory, Win XP pro, CVF 6.6b, and a
pair of 10,000 rpm disks set up in raid 0 (disk striping) for the
scratch file.
The scratch disk file is opened as direct access, RECL = 4096, and
form = 'BINARY' (non standard).
When the file is less than 2 GB, the (wall / cpu) time ratio for disk
reads is unity (and fast). But when the file gets larger than 2 GB,
the (wall/cpu) time ratio approaches 30 and the MBits/sec read rate
drops significantly.
The complex sub matrices are read as:
read(iU, rec = iRecordStart, ioStat=iErr ) zArr
where zArr is known to the subroutine as zArr(nRows,nCols) and
iRecordStart is integer(8) and is the record number of the
corresponding write for this zArr.
The goal is to do problems which will have file sizes in excess of 20
GB.
Why should the disk IO slow when file sizes exceed 2 GB?
John Shaffer
- Previous message: Richard Maine: "Re: internal procedure can't use array of derived type from main"
- Next in thread: Ian Bush: "Re: disk file reads slow down for file sizes greater than 2 GB"
- Reply: Ian Bush: "Re: disk file reads slow down for file sizes greater than 2 GB"
- Reply: Herman D. Knoble: "Re: disk file reads slow down for file sizes greater than 2 GB"
- Reply: David Frank: "Re: disk file reads slow down for file sizes greater than 2 GB"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|