/[MITgcm]/MITgcm/pkg/mdsio/MDSIO_BUFF_3D.h
ViewVC logotype

Annotation of /MITgcm/pkg/mdsio/MDSIO_BUFF_3D.h

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (hide annotations) (download)
Mon Jun 8 14:38:54 2009 UTC (15 years ago) by jmc
Branch: MAIN
CVS Tags: checkpoint62, checkpoint62c, checkpoint62b, checkpoint62a, checkpoint62g, checkpoint62f, checkpoint62e, checkpoint62d, checkpoint62k, checkpoint62j, checkpoint62i, checkpoint62h, checkpoint62o, checkpoint62n, checkpoint62m, checkpoint62l, checkpoint62p, checkpoint61v, checkpoint61w, checkpoint61t, checkpoint61u, checkpoint61r, checkpoint61s, checkpoint61p, checkpoint61q, checkpoint61z, checkpoint61x, checkpoint61y
Changes since 1.1: +5 -1 lines
File MIME type: text/plain
a hack for fizhi with NrPhys > 2*Nr

1 jmc 1.2 C $Header: /u/gcmpack/MITgcm/pkg/mdsio/MDSIO_BUFF_3D.h,v 1.1 2009/06/08 03:32:33 jmc Exp $
2 jmc 1.1 C $Name: $
3    
4     CBOP
5     C !ROUTINE: MDSIO_BUFF_3D.h
6     C !INTERFACE:
7     C include "MDSIO_BUFF_3D.h"
8     C
9     C !DESCRIPTION:
10     C *==========================================================*
11     C | MDSIO_BUFF_3D.h
12     C | o Shared 3-D Buffers used for I/O
13     C *==========================================================*
14     CEOP
15    
16     C size3dBuf :: buffer 3rd dimension, corresponds to the maximum number
17     C of levels that can be read/written at a time.
18     C Note: minimum value = Nr, but in few cases (vertical interpolation,
19     C NrPhys from Fizhi, ...) needs to be larger. Here we pick 2*Nr
20     C which should be enough for most applications.
21     INTEGER size3dBuf
22 jmc 1.2 #ifdef ALLOW_FIZHI
23     PARAMETER ( size3dBuf = Nr+NrPhys )
24     #else
25 jmc 1.1 PARAMETER ( size3dBuf = 2*Nr )
26 jmc 1.2 #endif
27 jmc 1.1
28     C-- COMMON /MDS_3D_BUFFERS/ 3-D Shared Local Buffers
29     C Those buffers have be in common block to be shared by all threads
30     C shared3dBuf_rx :: Heap storage buffer to which master thread
31     C read-in/write-from data which all threads copy from
32     C (during read) or copy to (during write).
33     COMMON /MDS_3D_BUFFERS/ shared3dBuf_r8, shared3dBuf_r4
34     Real*8 shared3dBuf_r8( sNx*sNy*size3dBuf*nSx*nSy )
35     Real*4 shared3dBuf_r4( sNx*sNy*size3dBuf*nSx*nSy )
36    
37     C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|

  ViewVC Help
Powered by ViewVC 1.1.22