Fortran Language Reference Manual, Volume 2 SR–3903 3.0.1 Copyright © 1993, 1997 Cray Research, Inc

Total Page:16

File Type:pdf, Size:1020Kb

Fortran Language Reference Manual, Volume 2 SR–3903 3.0.1 Copyright © 1993, 1997 Cray Research, Inc Fortran Language Reference Manual, Volume 2 SR–3903 3.0.1 Copyright © 1993, 1997 Cray Research, Inc. All Rights Reserved. This manual or parts thereof may not be reproduced in any form unless permitted by contract or by written permission of Cray Research, Inc. The CF90 compiler includes United States software patents 5,247,696, 5,257,372, and 5,361,354. Portions of this product may still be in development. The existence of those portions still in development is not a commitment of actual release or support by Cray Research, Inc. Cray Research, Inc. assumes no liability for any damages resulting from attempts to use any functionality or documentation not officially released and supported. If it is released, the final form and the time of official release and start of support is at the discretion of Cray Research, Inc. Autotasking, CF77, CRAY, Cray Ada, CraySoft, CRAY Y-MP, CRAY-1, CRInform, CRI/TurboKiva, HSX, LibSci, MPP Apprentice, SSD, SUPERCLUSTER, UNICOS, and X-MP EA are federally registered trademarks and Because no workstation is an island, CCI, CCMT, CF90, CFT, CFT2, CFT77, ConCurrent Maintenance Tools, COS, Cray Animation Theater, CRAY APP, CRAY C90, CRAY C90D, Cray C++ Compiling System, CrayDoc, CRAY EL, CRAY J90, CRAY J90se, CrayLink, Cray NQS, Cray/REELlibrarian, CRAY S-MP, CRAY SSD-T90, CRAY T90, CRAY T3D, CRAY T3E, CrayTutor, CRAY X-MP, CRAY XMS, CRAY-2, CSIM, CVT, Delivering the power . ., DGauss, Docview, EMDS, GigaRing, HEXAR, IOS, ND Series Network Disk Array, Network Queuing Environment, Network Queuing Tools, OLNET, RQS, SEGLDR, SMARTE, SUPERLINK, System Maintenance and Remote Testing Environment, Trusted UNICOS, UNICOS MAX, and UNICOS/mk are trademarks of Cray Research, Inc. Adapted with permission of McGraw-Hill, Inc. from the FORTRAN 90 HANDBOOK, Copyright © 1992 by Walter S. Brainerd, Jeanne C. Adams, Jeanne T. Martin, Brian T. Smith, and Jerrold L. Wagener. All rights reserved. Cray Research, Inc. is solely responsible for the content of this work. DynaWeb is a trademark of Electronic Book Technologies, Inc. MIPS is a registered trademark and MIPSpro is a trademark of MIPS Technologies, Inc. PostScript is a trademark of Adobe Systems, Inc. Silicon Graphics, the Silicon Graphics logo, and IRIS are registered trademarks and IRIX is a trademark of Silicon Graphics, Inc. SPARC is a trademark of SPARC International, Inc. Sun Microsystem is a trademark of Sun Microsystems, Inc. TotalView is a trademark of Bolt Baranek and Newman, Inc. UNIX is a registered trademark in the United States and other countries, licensed exclusively to X/Open Limited. The UNICOS operating system is derived from UNIX® System V. The UNICOS operating system is also based in part on the Fourth Berkeley Software Distribution (BSD) under license from The Regents of the University of California. New Features Fortran Language Reference Manual, Volume 2 SR–3903 3.0.1 This manual describes the Fortran 90 language as implemented by the Cray Research CF90 compiler, releases 3.0 and 3.0.1, and the MIPSpro 7 Fortran 90 compiler, revision 7.2. Revision 3.0 of the Fortran language reference manual set describes the following features, all of which are extensions to the Fortran 90 standard: • AUTOMATIC statement and attribute. The AUTOMATIC statement and attribute allow you to declare that an array or variable is based on the stack. Items declared as AUTOMATIC become undefined when the procedure that contains them is exited. • The <>,or.LG., operator. This logical operator is suggested by the IEEE standard for floating-point arithmetic. • PURE and ELEMENTAL keywords for subroutines and functions. These features assist programmers interested in parallel processing. PURE declares that the procedure has no side effects. ELEMENTAL declares that the procedure contains scalar dummy arguments but that they may correspond to array actual arguments. When the actual arguments are array-valued, the function result is the same as the result that would have been obtained by operating on each element of the actual argument array independently. • An optional [DIM=]dim argument has been added to the MAXLOC(3I) and MINLOC(3I) intrinsic procedures. • On UNICOS systems, the RESHAPE(3I) intrinsic procedure vectorizes. • The following intrinsic procedures vectorize on UNICOS/mk systems: LOG(3M), EXP(3M), SQRT(3M), RANF(3I), SIN(3M), POPCNT(3I), and COS(3M). For more information on vectorization on UNICOS/mk systems, see CF90 Commands and Directives Reference Manual, publication SR–3901. This manual is one of several manuals that describe the Fortran 90 language as implemented by the CF90 compiler and the MIPSpro 7 Fortran 90 compiler. If information on one of the preceding features cannot be found in this manual, please see the other manuals in the Fortran language reference manual set. Revision 3.0.1, which is provided in online form only, contains corrections and features to support the CF90 3.0.1 release and the MIPSpro 7 Fortran 90 7.2 release. Changes to support this revision are noted with change indicators. Record of Revision Version Description 2.0 November 1995. Original printing. This document supports the CF90 compiler release 2.0 running on Cray PVP systems, CRAY T3E systems, and SPARC systems. The implementation of features on CRAY T3E systems is deferred. This manual contains information that was previously contained in the CF90 Fortran Language Reference Manual, revision 1.0, publication SR–3902, and in the Application Programmer’s Library Reference Manual, publication SR–2165. 3.0 May 1997. This printing supports the Cray Research CF90 3.0 release running on UNICOS and UNICOS/mk operating systems, and the MIPSpro 7 Fortran 90 compiler 7.2 release running on the IRIX operating system. The implementation of features on IRIX operating system platforms is deferred. This manual contains information that was previously contained in the CF90 Fortran Language Reference Manual, Volume 1, revision 2.0, publication SR–3902. 3.0.1 August 1997. This online revision supports the Cray Research CF90 3.0.1 release, running on UNICOS and UNICOS/mk operating systems, and the MIPSpro 7 Fortran 90 compiler 7.2 release, running on the IRIX operating system. SR–3903 3.0.1 i Contents Page Preface xvii Related CF90 and MIPSpro 7 Fortran 90 compiler publications .......... xviii CF90 and MIPSpro 7 Fortran 90 compiler messages .............. xviii CF90 and MIPSpro 7 Fortran 90 compiler man pages . .......... xix Related Fortran publications . .................... xix Related publications . .................... xx Ordering publications . .................... xx Conventions . ......................... xxi BNF conventions ........................ xxii Reader comments ........................ xxiv Input and Output (I/O) Processing [1] 1 Records, files, access methods, and units . ............... 2 Records . ......................... 2 Kinds of files ......................... 4 External files ........................ 6 Internal files ........................ 6 File existence ........................ 6 File position ......................... 7 File access methods . .................... 9 Sequential access . .................... 9 Direct access ........................ 10 Units . ......................... 10 Unit existence ........................ 11 Establishing a connection to a unit . ............... 12 Data transfer statements . .................... 12 SR–3903 3.0.1 iii Fortran Language Reference Manual, Volume 2 Page The I/O control specifiers . .................... 13 UNIT= control specifier . .................... 14 FMT= control specifier . .................... 15 NML= control specifier . .................... 16 ADVANCE= control specifier .................... 16 END= control specifier . .................... 17 EOR= control specifier . .................... 17 ERR= control specifier . .................... 18 IOSTAT= control specifier .................... 19 REC= control specifier . .................... 20 SIZE= control specifier . .................... 20 The I/O item list ........................ 21 Explicitly formatted advancing sequential access data transfer .......... 23 Unformatted sequential access ................... 26 Nonadvancing formatted sequential data transfer .............. 27 Direct access data transfer . .................... 30 Formatted direct access data transfer . ............... 30 Unformatted direct access data transfer . ............... 32 List-directed data transfer . .................... 34 Namelist data transfer . .................... 36 Form of a namelist group declaration . ............... 36 Forms of namelist I/O statements . ............... 37 Data transfer on internal files .................... 38 Printing formatted records . .................... 41 BUFFER IN and BUFFER OUT statements (EXTENSION) . .......... 41 Execution model for data transfer statements . ............... 45 Data transfer ......................... 46 File position prior to data transfer . ............... 46 File position after data transfer ................... 47 iv SR–3903 3.0.1 Contents Page Error and other conditions in I/O statements . ............... 47 OPEN statement ......................... 50 Connecting a file to a unit . .................... 50 Creating a file on a preconnected unit . ............... 50 Changing the connection properties . ............... 51 Form of the OPEN statement .................... 51 The connection specifiers . .................... 52 UNIT= specifier . .................... 53 ACCESS= specifier . .................... 53 ACTION= specifier . .................... 53 BLANK=
Recommended publications
  • UNICOS® Installation Guide for CRAY J90lm Series SG-5271 9.0.2
    UNICOS® Installation Guide for CRAY J90lM Series SG-5271 9.0.2 / ' Cray Research, Inc. Copyright © 1996 Cray Research, Inc. All Rights Reserved. This manual or parts thereof may not be reproduced in any form unless permitted by contract or by written permission of Cray Research, Inc. Portions of this product may still be in development. The existence of those portions still in development is not a commitment of actual release or support by Cray Research, Inc. Cray Research, Inc. assumes no liability for any damages resulting from attempts to use any functionality or documentation not officially released and supported. If it is released, the final form and the time of official release and start of support is at the discretion of Cray Research, Inc. Autotasking, CF77, CRAY, Cray Ada, CRAYY-MP, CRAY-1, HSX, SSD, UniChem, UNICOS, and X-MP EA are federally registered trademarks and CCI, CF90, CFr, CFr2, CFT77, COS, Cray Animation Theater, CRAY C90, CRAY C90D, Cray C++ Compiling System, CrayDoc, CRAY EL, CRAY J90, Cray NQS, CraylREELlibrarian, CraySoft, CRAY T90, CRAY T3D, CrayTutor, CRAY X-MP, CRAY XMS, CRAY-2, CRInform, CRIlThrboKiva, CSIM, CVT, Delivering the power ..., DGauss, Docview, EMDS, HEXAR, lOS, LibSci, MPP Apprentice, ND Series Network Disk Array, Network Queuing Environment, Network Queuing '!boIs, OLNET, RQS, SEGLDR, SMARTE, SUPERCLUSTER, SUPERLINK, Trusted UNICOS, and UNICOS MAX are trademarks of Cray Research, Inc. Anaconda is a trademark of Archive Technology, Inc. EMASS and ER90 are trademarks of EMASS, Inc. EXABYTE is a trademark of EXABYTE Corporation. GL and OpenGL are trademarks of Silicon Graphics, Inc.
    [Show full text]
  • Unix and Linux System Administration and Shell Programming
    Unix and Linux System Administration and Shell Programming Unix and Linux System Administration and Shell Programming version 56 of August 12, 2014 Copyright © 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2010, 2011, 2012, 2013, 2014 Milo This book includes material from the http://www.osdata.com/ website and the text book on computer programming. Distributed on the honor system. Print and read free for personal, non-profit, and/or educational purposes. If you like the book, you are encouraged to send a donation (U.S dollars) to Milo, PO Box 5237, Balboa Island, California, USA 92662. This is a work in progress. For the most up to date version, visit the website http://www.osdata.com/ and http://www.osdata.com/programming/shell/unixbook.pdf — Please add links from your website or Facebook page. Professors and Teachers: Feel free to take a copy of this PDF and make it available to your class (possibly through your academic website). This way everyone in your class will have the same copy (with the same page numbers) despite my continual updates. Please try to avoid posting it to the public internet (to avoid old copies confusing things) and take it down when the class ends. You can post the same or a newer version for each succeeding class. Please remove old copies after the class ends to prevent confusing the search engines. You can contact me with a specific version number and class end date and I will put it on my website. version 56 page 1 Unix and Linux System Administration and Shell Programming Unix and Linux Administration and Shell Programming chapter 0 This book looks at Unix (and Linux) shell programming and system administration.
    [Show full text]
  • The Gemini Network
    The Gemini Network Rev 1.1 Cray Inc. © 2010 Cray Inc. All Rights Reserved. Unpublished Proprietary Information. This unpublished work is protected by trade secret, copyright and other laws. Except as permitted by contract or express written permission of Cray Inc., no part of this work or its content may be used, reproduced or disclosed in any form. Technical Data acquired by or for the U.S. Government, if any, is provided with Limited Rights. Use, duplication or disclosure by the U.S. Government is subject to the restrictions described in FAR 48 CFR 52.227-14 or DFARS 48 CFR 252.227-7013, as applicable. Autotasking, Cray, Cray Channels, Cray Y-MP, UNICOS and UNICOS/mk are federally registered trademarks and Active Manager, CCI, CCMT, CF77, CF90, CFT, CFT2, CFT77, ConCurrent Maintenance Tools, COS, Cray Ada, Cray Animation Theater, Cray APP, Cray Apprentice2, Cray C90, Cray C90D, Cray C++ Compiling System, Cray CF90, Cray EL, Cray Fortran Compiler, Cray J90, Cray J90se, Cray J916, Cray J932, Cray MTA, Cray MTA-2, Cray MTX, Cray NQS, Cray Research, Cray SeaStar, Cray SeaStar2, Cray SeaStar2+, Cray SHMEM, Cray S-MP, Cray SSD-T90, Cray SuperCluster, Cray SV1, Cray SV1ex, Cray SX-5, Cray SX-6, Cray T90, Cray T916, Cray T932, Cray T3D, Cray T3D MC, Cray T3D MCA, Cray T3D SC, Cray T3E, Cray Threadstorm, Cray UNICOS, Cray X1, Cray X1E, Cray X2, Cray XD1, Cray X-MP, Cray XMS, Cray XMT, Cray XR1, Cray XT, Cray XT3, Cray XT4, Cray XT5, Cray XT5h, Cray Y-MP EL, Cray-1, Cray-2, Cray-3, CrayDoc, CrayLink, Cray-MP, CrayPacs, CrayPat, CrayPort, Cray/REELlibrarian, CraySoft, CrayTutor, CRInform, CRI/TurboKiva, CSIM, CVT, Delivering the power…, Dgauss, Docview, EMDS, GigaRing, HEXAR, HSX, IOS, ISP/Superlink, LibSci, MPP Apprentice, ND Series Network Disk Array, Network Queuing Environment, Network Queuing Tools, OLNET, RapidArray, RQS, SEGLDR, SMARTE, SSD, SUPERLINK, System Maintenance and Remote Testing Environment, Trusted UNICOS, TurboKiva, UNICOS MAX, UNICOS/lc, and UNICOS/mp are trademarks of Cray Inc.
    [Show full text]
  • CRAY T90 Series IEEE Floating Point Migration Issues and Solutions
    CRAY T90 Series IEEE Floating Point Migration Issues and Solutions Philip G. Garnatz, Cray Research, Inc., Eagan, Minnesota, U.S.A. ABSTRACT: Migration to the new CRAY T90 series with IEEE floating-point arith- metic presents a new challenge to applications programmers. More precision in the mantissa and less range in the exponent will likely raise some numerical differences issues. A step-by-step process will be presented to show how to isolate these numerical differences. Data files will need to be transferred and converted from a Cray format PVP system to and from a CRAY T90 series system with IEEE. New options to the assign command allow for transparent reading and writing of files from the other types of system. Introduction This paper is intended for the user services personnel and 114814 help desk staff who will be asked questions by programmers and exp mantissa users who will be moving code to the CRAY T90 series IEEE from another Cray PVP architecture. The issues and solutions Exponent sign presented here are intended to be a guide to the most frequent problems that programmers may encounter. Mantissa sign What is the numerical model? Figure2: Cray format floating-point frames and other computational entities such as workstations and New CRAY T90 series IEEE programmers might notice graphic displays. Other benefits are as follows: different answers when running on the IEEE machine than on a system with traditional Cray format floating-point arithmetic. • Greater precision. An IEEE floating-point number provides The IEEE format has the following characteristics: approximately 16 decimal digits of precision; this is about one and a half digits more precise than Cray format numbers.
    [Show full text]
  • System Programmer Reference (Cray SV1™ Series)
    ® System Programmer Reference (Cray SV1™ Series) 108-0245-003 Cray Proprietary (c) Cray Inc. All Rights Reserved. Unpublished Proprietary Information. This unpublished work is protected by trade secret, copyright, and other laws. Except as permitted by contract or express written permission of Cray Inc., no part of this work or its content may be used, reproduced, or disclosed in any form. U.S. GOVERNMENT RESTRICTED RIGHTS NOTICE: The Computer Software is delivered as "Commercial Computer Software" as defined in DFARS 48 CFR 252.227-7014. All Computer Software and Computer Software Documentation acquired by or for the U.S. Government is provided with Restricted Rights. Use, duplication or disclosure by the U.S. Government is subject to the restrictions described in FAR 48 CFR 52.227-14 or DFARS 48 CFR 252.227-7014, as applicable. Technical Data acquired by or for the U.S. Government, if any, is provided with Limited Rights. Use, duplication or disclosure by the U.S. Government is subject to the restrictions described in FAR 48 CFR 52.227-14 or DFARS 48 CFR 252.227-7013, as applicable. Autotasking, CF77, Cray, Cray Ada, Cray Channels, Cray Chips, CraySoft, Cray Y-MP, Cray-1, CRInform, CRI/TurboKiva, HSX, LibSci, MPP Apprentice, SSD, SuperCluster, UNICOS, UNICOS/mk, and X-MP EA are federally registered trademarks and Because no workstation is an island, CCI, CCMT, CF90, CFT, CFT2, CFT77, ConCurrent Maintenance Tools, COS, Cray Animation Theater, Cray APP, Cray C90, Cray C90D, Cray CF90, Cray C++ Compiling System, CrayDoc, Cray EL, CrayLink,
    [Show full text]
  • CRAY XMS Minisupercomputer System
    Intro~ucin~ t~B ~~A~ XM~ Minisu~Brcom~ufBr ~~stBm Cray Research, the supercomputer leader; now offers an unsurpassed range of computing options, from a leading price/performance system to the world's most powerful supercomputer. The CRAY XMS delivers the balanced Cray Research 64-bit vector architecture via the powerful and easy-to-use UNICOS operating system . With the CRAY XMS system, Cray Research now offers you a clear pathway to the unlimited power of large­ scale supercomputing. The CRAY XMS system will meet your needs for: D A system suited to departmental budgets D A pathway to Cray Research large-scale supercomputer systems D A cost-effective UNICOS application development platform D A powerful system in a secure environment The CRAY XMS system is compact, easy to install, and inexpensive to operate. Its low power requirements, high reliability, and high serviceability minimize operating costs. And it offers the most throughput performance in its price range for multi-user technical computing requirements. Reliable. high-performance software The CRAY XMS system runs the same powerful operating system used by the entire Cray Research product line: the UNICOS operating system . Based on UNIX System V, the UNICOS operating system is easy to use and is the most fully featured, highest-performance UNIX- based operating system available. The UNICOS user environment delivers a highly productive combination of optimizing compilers and easy-to-use tools. The CFn Fortran compiling system and Standard C compiler, along with a variety of library routines and utilities, make the Cray Research programming environment the most dependable and productive software environ­ ment available.
    [Show full text]
  • Cray Supercomputers Past, Present, and Future
    Cray Supercomputers Past, Present, and Future Hewdy Pena Mercedes, Ryan Toukatly Advanced Comp. Arch. 0306-722 November 2011 Cray Companies z Cray Research, Inc. (CRI) 1972. Seymour Cray. z Cray Computer Corporation (CCC) 1989. Spin-off. Bankrupt in 1995. z Cray Research, Inc. bought by Silicon Graphics, Inc (SGI) in 1996. z Cray Inc. Formed when Tera Computer Company (pioneer in multi-threading technology) bought Cray Research, Inc. in 2000 from SGI. Seymour Cray z Joined Engineering Research Associates (ERA) in 1950 and helped create the ERA 1103 (1953), also known as UNIVAC 1103. z Joined the Control Data Corporation (CDC) in 1960 and collaborated in the design of the CDC 6600 and 7600. z Formed Cray Research Inc. in 1972 when CDC ran into financial difficulties. z First product was the Cray-1 supercomputer z Faster than all other computers at the time. z The first system was sold within a month for US$8.8 million. z Not the first system to use a vector processor but was the first to operate on data on a register instead of memory Vector Processor z CPU that implements an instruction set that operates on one- dimensional arrays of data called vectors. z Appeared in the 1970s, formed the basis of most supercomputers through the 80s and 90s. z In the 60s the Solomon project of Westinghouse wanted to increase math performance by using a large number of simple math co- processors under the control of a single master CPU. z The University of Illinois used the principle on the ILLIAC IV.
    [Show full text]
  • Performance of Various Computers Using Standard Linear Equations Software
    ———————— CS - 89 - 85 ———————— Performance of Various Computers Using Standard Linear Equations Software Jack J. Dongarra* Electrical Engineering and Computer Science Department University of Tennessee Knoxville, TN 37996-1301 Computer Science and Mathematics Division Oak Ridge National Laboratory Oak Ridge, TN 37831 University of Manchester CS - 89 - 85 June 15, 2014 * Electronic mail address: [email protected]. An up-to-date version of this report can be found at http://www.netlib.org/benchmark/performance.ps This work was supported in part by the Applied Mathematical Sciences subprogram of the Office of Energy Research, U.S. Department of Energy, under Contract DE-AC05-96OR22464, and in part by the Science Alliance a state supported program at the University of Tennessee. 6/15/2014 2 Performance of Various Computers Using Standard Linear Equations Software Jack J. Dongarra Electrical Engineering and Computer Science Department University of Tennessee Knoxville, TN 37996-1301 Computer Science and Mathematics Division Oak Ridge National Laboratory Oak Ridge, TN 37831 University of Manchester June 15, 2014 Abstract This report compares the performance of different computer systems in solving dense systems of linear equations. The comparison involves approximately a hundred computers, ranging from the Earth Simulator to personal computers. 1. Introduction and Objectives The timing information presented here should in no way be used to judge the overall performance of a computer system. The results reflect only one problem area: solving dense systems of equations. This report provides performance information on a wide assortment of computers ranging from the home-used PC up to the most powerful supercomputers. The information has been collected over a period of time and will undergo change as new machines are added and as hardware and software systems improve.
    [Show full text]
  • Performance of Various Computers Using Standard Linear Equations Software
    ———————— CS - 89 - 85 ———————— Performance of Various Computers Using Standard Linear Equations Software Jack J. Dongarra* Electrical Engineering and Computer Science Department University of Tennessee Knoxville, TN 37996-1301 Computer Science and Mathematics Division Oak Ridge National Laboratory Oak Ridge, TN 37831 University of Manchester CS - 89 - 85 September 30, 2009 * Electronic mail address: [email protected]. An up-to-date version of this report can be found at http://WWW.netlib.org/benchmark/performance.ps This Work Was supported in part by the Applied Mathematical Sciences subprogram of the Office of Energy Research, U.S. Department of Energy, under Contract DE-AC05-96OR22464, and in part by the Science Alliance a state supported program at the University of Tennessee. 9/30/2009 2 Performance of Various Computers Using Standard Linear Equations Software Jack J. Dongarra Electrical Engineering and Computer Science Department University of Tennessee Knoxville, TN 37996-1301 Computer Science and MatHematics Division Oak Ridge National Laboratory Oak Ridge, TN 37831 University of Manchester September 30, 2009 Abstract This report compares the performance of different computer systems in solving dense systems of linear equations. The comparison involves approximately a hundred computers, ranging from the Earth Simulator to personal computers. 1. Introduction and Objectives The timing information presented here should in no way be used to judge the overall performance of a computer system. The results reflect only one problem area: solving dense systems of equations. This report provides performance information on a wide assortment of computers ranging from the home-used PC up to the most powerful supercomputers. The information has been collected over a period of time and will undergo change as new machines are added and as hardware and software systems improve.
    [Show full text]
  • IRIS Failsafetm DMF Administrator's Guide
    IRIS FailSafeTM DMF Administrator’s Guide Document Number 007–3906–001 Copyright © 1998 Silicon Graphics, Inc. All Rights Reserved. This document or parts thereof may not be reproduced in any form unless permitted by contract or by written permission of Silicon Graphics, Inc. LIMITED AND RESTRICTED RIGHTS LEGEND Use, duplication, or disclosure by the Government is subject to restrictions as set forth in the Rights in Data clause at FAR 52.227-14 and/or in similar or successor clauses in the FAR, or in the DOD or NASA FAR Supplement. Unpublished rights reserved under the Copyright Laws of the United States. Contractor/manufacturer is Silicon Graphics, Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-1389. Autotasking, CF77, CRAY, Cray Ada, CraySoft, CRAY Y-MP, CRAY-1, CRInform, CRI/TurboKiva, HSX, LibSci, MPP Apprentice, SSD, SUPERCLUSTER, UNICOS, and X-MP EA are federally registered trademarks and Because no workstation is an island, CCI, CCMT, CF90, CFT, CFT2, CFT77, ConCurrent Maintenance Tools, COS, Cray Animation Theater, CRAY APP, CRAY C90, CRAY C90D, Cray C++ Compiling System, CrayDoc, CRAY EL, CRAY J90, CRAY J90se, CrayLink, Cray NQS, Cray/REELlibrarian, CRAY S-MP, CRAY SSD-T90, CRAY SV1, CRAY T90, CRAY T3D, CRAY T3E, CrayTutor, CRAY X-MP, CRAY XMS, CRAY-2, CSIM, CVT, Delivering the power . ., DGauss, Docview, EMDS, GigaRing, HEXAR, IOS, ND Series Network Disk Array, Network Queuing Environment, Network Queuing Tools, OLNET, RQS, SEGLDR, SMARTE, SUPERLINK, System Maintenance and Remote Testing Environment, Trusted UNICOS, UNICOS MAX, and UNICOS/mk are trademarks of Cray Research, Inc., a wholly owned subsidiary of Silicon Graphics, Inc.
    [Show full text]
  • Cray the Supercomputer Company
    April 6, 1972 1993 2004 Cray Research, Inc. (CRI) opens in Chippewa Falls, WI 1986 Signs first medical research customer Forms Cray Research Superservers Acquires OctigaBay Systems Corp. (National Cancer Institute) Announces Cray EL92™ and Cray EL98™ systems Announces Cray XD1™ supercomputer Signs first chemical industry customer (DuPont) Signs first South African customer Announces Cray XT3™ supercomputer Signs first Australian customer (DoD) (South Africa Weather Service) Announces Cray X1E™ supercomputer 1973 Signs first SE Asian customer Opens business headquarters in Bloomington, MN (Technological Univ. of Malaysia) Announces Cray T3D™ 1987 massively parallel processing (MPP) system 2006 Opens subsidiary in Spain Signs first financial customer (Merrill Lynch) Announces Cray XT4™ supercomputer 1975 America’s Cup-winning yacht “Stars & Stripes” Announces massively multithreaded Powers up first Cray-1™ supercomputer designed on Cray X-MP system Cray XMT™ supercomputer Ships 200th system Exceeds 1 TBps on HPCC benchmark Becomes Fortune 500 company 1994 test on Red Storm system Establishes Cray Academy Announces Wins $200M contract to deliver 1976 Tera Computer Company founded Cray T90™ world’s largest supercomputer to Delivers first Cray-1 system supercomputer, Oak Ridge National Laboratory (ORNL) (Los Alamos National Laboratory) first wireless system Wins $52M contract with National Energy Research Issues first public stock offering Signs first Chinese Scientific Computing Center Receives first official
    [Show full text]
  • I Grandi Computer Del Museo Degli Strumenti Per Il Calcolo Di Pisa
    INFORMATICA - Prof. Claudio Maccherani -a.s. 2005/2006 Prof. Claudio Maccherani ITC “Vittorio Emanuele II” Perugia Anno scolastico 2005-2006 I Grandi Computer del Museo degli Strumenti per il Calcolo di Pisa. C.E.P.......................................................................................................................................................................................2 BULL GAMM3......................................................................................................................................................................3 CINAC (OLIVETTI ELEA 9104).................................................................................................................................4 TAU 2......................................................................................................................................................................................5 CRAY.......................................................................................................................................................................................6 APE..........................................................................................................................................................................................7 NCUBE....................................................................................................................................................................................8 Istituto Tecnico Commerciale “Vittorio Emanuele II” – P.le Anna Frank,
    [Show full text]