[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: 980214: netCDF under UNICOS/mk (Cray T3E) ?



> To: address@hidden
> Subject: 980214: netCDF under UNICOS/mk (Cray T3E) ?
> Reply-to: "Ulrich Detert" <address@hidden>
> Date: Sat, 14 Feb 1998 11:31:02 -0700
> From: Unidata Support <address@hidden>
> Content-Type: text
> Content-Length: 1338
> 
> 
> ------- Forwarded Message
> 
> >From: "Ulrich Detert" <address@hidden>
> >Subject: netCDF under UNICOS/mk (Cray T3E) ?
> >Organization: Zentralinstitut fuer Angewandte Mathematik
> >Keywords: 199802141623.JAA04928 netCDF UNICOS/mk
> 
> For the data exchange between workstations and our Cray mainframes
> we would strongly be interested in a version of netCDF for Cray T3E
> under UNICOS/mk. I recognized that there is a version of netCDF
> for T3D under UNICOS. But is there also a version for UNICOS/mk??? 
> 
> In advance many thanks for your help. Best regards,
> Ulrich Detert
> 
> 
>         
> _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
>         _/ Forschungszentrum Juelich     _/ Juelich Research Centre      
> _/
>        _/ Zentralinstitut fuer          _/ Central Institute             _/
>       _/ Angewandte Mathematik         _/ for Applied Mathematics       _/
>      _/ D-52425 Juelich               _/ D-52425 Juelich               _/
>     _/                               _/ Germany                       _/
>    _/ Tel. : 02461 61-6434          _/ Phone: (++49) 2461 61-6434    _/
>   _/ Fax:   02461 61-6656          _/ Fax:   (++49) 2461 61-6656    _/
>  _/ Email: address@hidden _/ Email: address@hidden _/
> _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
> 
> 
> ------- End of Forwarded Message
> 

There is a web page about netCDF on the T3E at NERSC:

    http://www.nersc.gov/software/netcdf/netcdf.html

describing a version built from the netCDF 2.4.3 release, which uses the
same file format as the current netCDF 3.3.1 release.

The problems we describe with building on the T3E in the INSTALL file
that comes with netCDF 3.4a (which I've appended) indicate that it is
possible to build netCDF 3.4 on this platform, though you'll have to not
use ncx_cray.c, use the indicated flags, and precompile libsrc/putget.c
with -O2 before compiling the rest of the sources with "make".

The netCDF 3.4 alpha test version is available from
<ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-3.4a.tar.Z>.  We have no
access to a T3E UNICOS/mk platform locally, so it's difficult to test
our software or reproduce problems on UNICOS/mk.

--Russ

_____________________________________________________________________

Russ Rew                                         UCAR Unidata Program
address@hidden                     http://www.unidata.ucar.edu

sn6602 t3e 1.4.1.50 unicosmk CRAY T3E
Tue Jun  3 12:00:27 MDT 1997 (glenn)

        Don't use ncx_cray.c for this machine.
        (TODO: figure out why. Hypothesis: different
        address structure.)

    CC=c89
    CFLAGS=-O3  # -g tested as well
    FC=f90
    FFLAGS='-g -F -M1110'' # -F is the same as -Wp-F?, -i64 is default
        # -dp irrelevant
        # -M1110 suppresses "DOUBLE PRECISION is not supported ... messages"
    CXX=""
        'C' compiler chokes on libsrc/putget.c
                c89 -c -O3 -I.  -DNDEBUG putget.c
                cc-7951 c89: LIMIT File = putget.c, Line = 6477
                Insufficient memory is available for compiler to continue.
        Precompile libsrc/putget.c at -O2:
                cd libsrc; c89 -c -O2 -I.  -DNDEBUG putget.c