Developing Integrated Data Services for Cray Systems with a Gemini Interconnect

Total Page:16

File Type:pdf, Size:1020Kb

Developing Integrated Data Services for Cray Systems with a Gemini Interconnect Developing Integrated Data Services for Cray Systems with a Gemini Interconnect Ron A. Oldeld Todd Kordenbrock Jay Lofstead May 1, 2012 Abstract Over the past several years, there has been increasing interest in injecting a layer of compute resources between a high-performance computing application and the end storage devices. For some projects, the objective is to present the parallel le system with a reduced set of clients, making it easier for le-system vendors to support extreme-scale systems. In other cases, the objective is to use these resources as staging areas to aggregate data or cache bursts of I/O operations. Still others use these staging areas for in-situ analysis on data in-transit between the application and the storage system. To simplify our discussion, we adopt the general term Integrated Data Services to represent these use-cases. This paper describes how we provide user-level, integrated data services for Cray systems that use the Gemini Interconnect. In particular, we describe our implementation and performance results on the Cray XE6, Cielo, at Los Alamos National Laboratory. 1 Introduction den on the le system and potentially improve over- all ecency of the application workow. Current In our quest toward exascale systems and applica- work to enable these coupling and workow scenar- tions, one topic that is frequently discussed is the ios are focused on the data issues to resolve resolu- need for more exible execution models. Current tion and mesh mismatches, time scale mismatches, models for capability class high-performance comput- and make data available through data staging tech- ing (HPC) systems are essentially static, requiring niques [20, 34, 21, 11, 2, 40, 10]. applications and analysis to execute independently storing intermediate results on a persistent, globally accessible parallel le system. For example, in fu- sion science, simulation of the edge of the plasma [17] and the interior of the plasma [39] are currently sepa- rate simulations. To have a more complete, accurate model for a fusion reactor, these components need to In this paper, we describe R&D eorts and chal- be tightly coupled to share the eects between the lenges of coupling simulation codes and analysis on two models. The CESM climate model [24] is sim- Cray systems with Gemini Networks. In particular, ilar in that it incorporates atmosphere, ocean, land we describe how to create and use Integrated Data surface, sea ice, and land ice through a coupling en- Services on the Cray XE6 platform using Sandia's gine to manage the interactions between each of these Network Scalable Service Interface (Nessie) [20]. An dierent systems yielding a more accurate model of integrated data service, illustrated in Figure 1, is a global climate. In most cases, these and other scien- separate (possibly parallel) application that performs tic applications are part of larger oine workows operations on behalf of an actively running scientic that process the output written to storage in phases application. Nessie is a framework for developing that ultimately yield insights into the phenomena be- data services on HPC platforms. It provides portable ing studied. interfaces for inter-application communication across For exascale systems, there is a general belief that RDMA-based networks, an RPC-like abstraction for systems will need more exible execution models rapidly developing client and server stubs, and a that allow the coupling of simulations and/or anal- portable model for dening serializable data struc- ysis. This coupling promises to reduce the I/O bur- tures for data transfer. 1 of these issues to be resolved as visualization experts Client Application! become more accustomed to large-scale parallel pro- (compute nodes)! Data Service! gramming. In some cases, however, the communica- (compute/service nodes)! File System! tion requirements of an analysis algorithm are not Processed Raw appropriate for extreme-scale, and thus in-situ for Data Data! capability-class applications. In transit analysis (also known as staged analysis) is similar to in-situ analysis in that the analysis code Visualization! runs concurrently with the simulation code. The dif- Cache/ ference is that the analysis takes place on dierent aggregate/ compute resources than the simulation. Figure 2 il- process! Database! lustrates this by looking at in-situ and in-transit anal- ysis for Sandia's CTH shock physics code. A physi- Figure 1: Data services uses additional compute re- cal partitioning of the simulation and analysis codes sources to perform operations on behalf of an HPC allows the analysis to execute in a pipeline-parallel application. fashion with minimal interference on the parallel sim- ulation. In some cases, the staging nodes simply pro- vide data caching in the network to provide a buer 2 Background and Related for bursty I/O operations [29, 34, 2, 25]. In this case, the staaging area captures data from the application, Work then writes it to storage while the application contin- ues to compute, eectively trading the cost of writing There are a number of ongoing eorts to integrate or to a storage system with the cost of writing memory- couple simulation, analysis, and visualization. The to-memory through the high-speed interconnect [29]. approaches are generally categorized into two areas: There are also a number of examples of using staging in-situ and in-transit [23]. The term in-situ ap- areas for statistical analysis, indexing, feature extrac- plies to codes that perform the analysis or visualiza- tion [23], FFTs [32], and data permutations [26]. tion of data with the simulation that generates the Some operations can be performed either in-situ data. In-situ libraries link to the main code and ex- or in-transit based on both the resource availability ecute through library calls. This concept was rst (memory and computation) and communication re- mentioned in the 1987 National Science Foundation quirements. ADIOS [19] introduced the idea of Data Visualization in Scientic Computing workshop re- Characteristics [21] as a way to represent a local por- port [22]; however, interest in in-situ has grown sig- tion of statistics intended to either be used to gain nicantly in recent years and is rapidly becoming one knowledge about that portion of the data or to used of the most important topics in large-scale visualiza- in aggregate to learn about the data set as a whole. tion [15, 4]. The placement of these operators was examined in One reason in-situ analysis is attractive for petas- PreDatA [40]. Other eorts to accelerate the use of cale systems is that the cost of dedicated interactive data include FastBit [14] to generate a bitmap-based visualization computers for petascale computing is index for data values. This approach yielded a rel- prohibitive [9]. Developing algorithms and techniqes atively compact index with fast access to elements. that work directly with the simulation code reduces, The ADIOS data characteristics have also been ex- but does not eliminate, the need for specialized visu- tended from just the minimum and maximum value alization hardware. Other studies show that the I/O to include count, sum, sum of squares, histogram, and cost of writing and reading data from parallel le sys- is it an innity or not [12]. Another use of in-transit tems is beginning to dominate the time spent in both processing is for data compression, such as is done in the simulation and visualization [36, 33]. In-situ visu- ISABELA [18]. alization eliminates this I/O cost by performing the Another primary dierence between in-situ and in- visualization in the memory of the scientic code. transit analysis is that in-transit analysis requires the One downside of in-situ analysis is that the algo- ability to transfer data from the scientic code to the rithms to perform analysis may not scale as well as staging area for analysis. In techniques such as I/O the scientic code, creating a signicant bottleneck Delegation[25] the applications uses MPI to commu- for the overall runtime. This is partly because the nicate this data. For I/O Delegation, the user al- algorithms and codes for visualization were not de- locates an additional set of staging processors when signed for large-scale HPC systems we expect some it launches the application. A separate MPI com- 2 Client Application Client Application Fragment-Detection Service ... ... ... Raw Fragment Fragment Data Data Data PVSPY analysis analysis PVSPY Server code CTH CTH code Client (a) In-situ analysis (b) In-transit analysis Figure 2: Comparison of in-situ (a) and in-transit (b) fragment detection for the CTH shock physics code. municator allows the staging processors to perform XE6. analysis without interfering with the primary applica- tion. This approach was rst demonstrated for high- performance computing in a seismic imaging applica- Data services, as dened in this paper, are a general tion called Salvo[32]. In Salvo, the user allocated an form of in-transit computing. They leverage addi- I/O Partition for staging outgoing data and also tional resources for analysis, management, and stag- performing proprocessing (i.e., FFTs) on incoming ing of data. For example, the Nessie service devel- data. I/O delegation is perhaps the most portable oped for the Lightweight le system (LWFS) provided approach for in transit computation, but it requires authentication, authorization, and storage [30]. The a tight coupling of analysis with application and it Dataspaces work is also more than just in-transit is dicult to share the service with multiple applica- analysis [10]. They leverage memory in unused com- tions. pute nodes to manage a distributed shared cache for A second approach for in transit analysis is to cre- coupled applications. ate the staging area as a separate application that communicates with the client application This ap- The two projects most similar to Nessie are proach is extremely exible because it allows for the DataStager [2] and GLEAN [38].
Recommended publications
  • Red Storm Infrastructure at Sandia National Laboratories
    Red Storm Infrastructure Robert A. Ballance, John P. Noe, Milton J. Clauser, Martha J. Ernest, Barbara J. Jennings, David S. Logsted, David J. Martinez, John H. Naegle, and Leonard Stans Sandia National Laboratories∗ P.O. Box 5800 Albquuerque, NM 87185-0807 May 13, 2005 Abstract Large computing systems, like Sandia National Laboratories’ Red Storm, are not deployed in isolation. The computer, its infrastructure support, and the operations of both have to be designed to support the mission of the or- ganization. This talk and paper will describe the infrastructure and operational requirements of Red Storm along with a discussion of how Sandia is meeting those requirements. It will include discussions of the facilities that surround and support Red Storm: shelter, power, cooling, security, networking, interactions with other Sandia platforms and capabilities, operations support, and user services. 1 Introduction mary components: Stewart Brand, in How Buildings Learn[Bra95], has doc- 1. The physical setting, such as buildings, power, and umented many of the ways in which buildings — often cooling, thought to be static structures – evolve over time to meet the needs of their occupants and the constraints of their 2. The computational setting which includes the re- environments. Machines learn in the same way. This is lated computing systems that support ASC efforts not the learning of “Machine learning” in Artificial Intel- on Red Storm, ligence; it is the very human result of making a machine 3. The networking setting that ties all of these to- smarter as it operates within its distinct environment. gether, and Deploying a large computational resource teaches many lessons, including the need to meet the expecta- 4.
    [Show full text]
  • Merrimac – High-Performance and Highly-Efficient Scientific Computing with Streams
    MERRIMAC – HIGH-PERFORMANCE AND HIGHLY-EFFICIENT SCIENTIFIC COMPUTING WITH STREAMS A DISSERTATION SUBMITTED TO THE DEPARTMENT OF ELECTRICAL ENGINEERING AND THE COMMITTEE ON GRADUATE STUDIES OF STANFORD UNIVERSITY IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF DOCTOR OF PHILOSOPHY Mattan Erez May 2007 c Copyright by Mattan Erez 2007 All Rights Reserved ii I certify that I have read this dissertation and that, in my opinion, it is fully adequate in scope and quality as a dissertation for the degree of Doctor of Philosophy. (William J. Dally) Principal Adviser I certify that I have read this dissertation and that, in my opinion, it is fully adequate in scope and quality as a dissertation for the degree of Doctor of Philosophy. (Patrick M. Hanrahan) I certify that I have read this dissertation and that, in my opinion, it is fully adequate in scope and quality as a dissertation for the degree of Doctor of Philosophy. (Mendel Rosenblum) Approved for the University Committee on Graduate Studies. iii iv Abstract Advances in VLSI technology have made the raw ingredients for computation plentiful. Large numbers of fast functional units and large amounts of memory and bandwidth can be made efficient in terms of chip area, cost, and energy, however, high-performance com- puters realize only a small fraction of VLSI’s potential. This dissertation describes the Merrimac streaming supercomputer architecture and system. Merrimac has an integrated view of the applications, software system, compiler, and architecture. We will show how this approach leads to over an order of magnitude gains in performance per unit cost, unit power, and unit floor-space for scientific applications when compared to common scien- tific computers designed around clusters of commodity general-purpose processors.
    [Show full text]
  • Jaguar and Kraken -The World's Most Powerful Computer Systems
    Jaguar and Kraken -The World's Most Powerful Computer Systems Arthur Bland Cray Users’ Group 2010 Meeting Edinburgh, UK May 25, 2010 Abstract & Outline At the SC'09 conference in November 2009, Jaguar and Kraken, both located at ORNL, were crowned as the world's fastest computers (#1 & #3) by the web site www.Top500.org. In this paper, we will describe the systems, present results from a number of benchmarks and applications, and talk about future computing in the Oak Ridge Leadership Computing Facility. • Cray computer systems at ORNL • System Architecture • Awards and Results • Science Results • Exascale Roadmap 2 CUG2010 – Arthur Bland Jaguar PF: World’s most powerful computer— Designed for science from the ground up Peak performance 2.332 PF System memory 300 TB Disk space 10 PB Disk bandwidth 240+ GB/s Based on the Sandia & Cray Compute Nodes 18,688 designed Red Storm System AMD “Istanbul” Sockets 37,376 Size 4,600 feet2 Cabinets 200 3 CUG2010 – Arthur Bland (8 rows of 25 cabinets) Peak performance 1.03 petaflops Kraken System memory 129 TB World’s most powerful Disk space 3.3 PB academic computer Disk bandwidth 30 GB/s Compute Nodes 8,256 AMD “Istanbul” Sockets 16,512 Size 2,100 feet2 Cabinets 88 (4 rows of 22) 4 CUG2010 – Arthur Bland Climate Modeling Research System Part of a research collaboration in climate science between ORNL and NOAA (National Oceanographic and Atmospheric Administration) • Phased System Delivery • Total System Memory – CMRS.1 (June 2010) 260 TF – 248 TB DDR3-1333 – CMRS.2 (June 2011) 720 TF • File Systems
    [Show full text]
  • Red Storm IO Performance Analysis James H
    1 Red Storm IO Performance Analysis James H. Laros III #1,LeeWard#2, Ruth Klundt ∗3, Sue Kelly #4 James L. Tomkins #5, Brian R. Kellogg #6 #Sandia National Laboratories 1515 Eubank SE Albuquerque NM, 87123-1319 [email protected] [email protected], [email protected] [email protected], [email protected] ∗Hewlett-Packard 3000 Hanover Street Palo Alto, CA 94304-1185 [email protected] Abstract— This paper will summarize an IO1 performance hardware or software, potentially affects how the entire system analysis effort performed on Sandia National Laboratories Red performs. Storm platform. Our goal was to examine the IO system We consider the testing described in this paper to be second performance and identify problems or bottle-necks in any aspect of the IO sub-system. Our process examined the entire IO path phase testing. Initial testing was accomplished to establish from application to disk both in segments and as a whole. Our baselines, develop test harnesses and establish test parameters final analysis was performed at scale employing parallel IO that would provide meaningful information within the lim- access methods typically used in High Performance Computing its imposed such as time constraints. All testing presented applications. in this paper was accomplished during system preventative Index Terms— Red Storm, Lustre, CFS, Data Direct Networks, maintenance periods on the production Red Storm platform, Parallel File-Systems on production file-systems. Testing time on heavily utilized production platforms such as Red Storm is precious. Detailed results of previous, current and future testing is posted on- I. INTRODUCTION line[2]. IO is a critical component of capability computing2.At In section II we will discuss components of the Red Storm Sandia Labs, high value is placed on balanced platforms.
    [Show full text]
  • Taking the Lead in HPC
    Taking the Lead in HPC Cray X1 Cray XD1 Cray Update SuperComputing 2004 Safe Harbor Statement The statements set forth in this presentation include forward-looking statements that involve risk and uncertainties. The Company wished to caution that a number of factors could cause actual results to differ materially from those in the forward-looking statements. These and other factors which could cause actual results to differ materially from those in the forward-looking statements are discussed in the Company’s filings with the Securities and Exchange Commission. SuperComputing 2004 Copyright Cray Inc. 2 Agenda • Introduction & Overview – Jim Rottsolk • Sales Strategy – Peter Ungaro • Purpose Built Systems - Ly Pham • Future Directions – Burton Smith • Closing Comments – Jim Rottsolk A Long and Proud History NASDAQ: CRAY Headquarters: Seattle, WA Marketplace: High Performance Computing Presence: Systems in over 30 countries Employees: Over 800 BuildingBuilding Systems Systems Engineered Engineered for for Performance Performance Seymour Cray Founded Cray Research 1972 The Father of Supercomputing Cray T3E System (1996) Cray X1 Cray-1 System (1976) Cray-X-MP System (1982) Cray Y-MP System (1988) World’s Most Successful MPP 8 of top 10 Fastest First Supercomputer First Multiprocessor Supercomputer First GFLOP Computer First TFLOP Computer Computer in the World SuperComputing 2004 Copyright Cray Inc. 4 2002 to 2003 – Successful Introduction of X1 Market Share growth exceeded all expectations • 2001 Market:2001 $800M • 2002 Market: about $1B
    [Show full text]
  • Performance Impact of the Red Storm Upgrade
    Performance Impact of the Red Storm Upgrade Ron Brightwell, Keith D. Underwood, and Courtenay Vaughan Sandia National Laboratories P.O. Box 5800, MS-1110 Albuquerque, NM 87185-1110 {rbbrigh, kdunder, ctvaugh }@sandia.gov Abstract— The Cray Red Storm system at Sandia processors. Several large XT3 systems have National Laboratories recently completed an upgrade been deployed and have demonstrated excellent of the processor and network hardware. Single-core performance and scalability on a wide variety 2.0 GHz AMD Opteron processors were replaced of applications and workloads [1], [2]. Since with dual-core 2.4 GHz AMD Opterons, while the network interface hardware was upgraded from a the processor building block for the XT3 sys- sustained rate of 1.1 GB/s to 2.0 GB/s. This paper tem is the AMD Opteron, existing single-core provides an analysis of the impact of this upgrade on systems can be upgraded to dual-core simply the performance of several applications and micro- by changing the processor. benchmarks. We show scaling results for applications The Red Storm system at Sandia, which is out to thousands of processors and include an analysis the predecessor of the Cray XT3 product line, of the impact of using dual-core processors on this system. recently underwent the first stage of such an upgrade on more than three thousand of its I. INTRODUCTION nearly thirteen thousand nodes. In order to help The emergence of commodity multi-core maintain system balance, the Red Storm net- processors has created several significant chal- work on these nodes was also upgraded from lenges for the high-performance computing SeaStar version 1.2 to 2.1.
    [Show full text]
  • Tour De Hpcycles
    Tour de HPCycles Wu Feng Allan Snavely [email protected] [email protected] Los Alamos National San Diego Laboratory Supercomputing Center Abstract • In honor of Lance Armstrong’s seven consecutive Tour de France cycling victories, we present Tour de HPCycles. While the Tour de France may be known only for the yellow jersey, it also awards a number of other jerseys for cycling excellence. The goal of this panel is to delineate the “winners” of the corresponding jerseys in HPC. Specifically, each panelist will be asked to award each jersey to a specific supercomputer or vendor, and then, to justify their choices. Wu FENG [email protected] 2 The Jerseys • Green Jersey (a.k.a Sprinters Jersey): Fastest consistently in miles/hour. • Polka Dot Jersey (a.k.a Climbers Jersey): Ability to tackle difficult terrain while sustaining as much of peak performance as possible. • White Jersey (a.k.a Young Rider Jersey): Best "under 25 year-old" rider with the lowest total cycling time. • Red Number (Most Combative): Most aggressive and attacking rider. • Team Jersey: Best overall team. • Yellow Jersey (a.k.a Overall Jersey): Best overall supercomputer. Wu FENG [email protected] 3 Panelists • David Bailey, LBNL – Chief Technologist. IEEE Sidney Fernbach Award. • John (Jay) Boisseau, TACC @ UT-Austin – Director. 2003 HPCwire Top People to Watch List. • Bob Ciotti, NASA Ames – Lead for Terascale Systems Group. Columbia. • Candace Culhane, NSA – Program Manager for HPC Research. HECURA Chair. • Douglass Post, DoD HPCMO & CMU SEI – Chief Scientist. Fellow of APS. Wu FENG [email protected] 4 Ground Rules for Panelists • Each panelist gets SEVEN minutes to present his position (or solution).
    [Show full text]
  • Introduction to the Oak Ridge Leadership Computing Facility for CSGF Fellows Bronson Messer
    Introduction to the Oak Ridge Leadership Computing Facility for CSGF Fellows Bronson Messer Acting Group Leader Scientific Computing Group National Center for Computational Sciences Theoretical Astrophysics Group Oak Ridge National Laboratory Department of Physics & Astronomy University of Tennessee Outline • The OLCF: history, organization, and what we do • The upgrade to Titan – Interlagos processors with GPUs – Gemini Interconnect – Software, etc. • The CSGF Director’s Discretionary Program • Questions and Discussion 2 ORNL has a long history in 2007 High Performance Computing IBM Blue Gene/P ORNL has had 20 systems 1996-2002 on the lists IBM Power 2/3/4 1992-1995 Intel Paragons 1985 Cray X-MP 1969 IBM 360/9 1954 2003-2005 ORACLE Cray X1/X1E 3 Today, we have the world’s most powerful computing facility Peak performance 2.33 PF/s #2 Memory 300 TB Disk bandwidth > 240 GB/s Square feet 5,000 Power 7 MW Dept. of Energy’s Jaguar most powerful computer Peak performance 1.03 PF/s #8 Memory 132 TB Disk bandwidth > 50 GB/s Square feet 2,300 National Science Kraken Power 3 MW Foundation’s most powerful computer Peak Performance 1.1 PF/s Memory 248 TB #32 Disk Bandwidth 104 GB/s Square feet 1,600 National Oceanic and Power 2.2 MW Atmospheric Administration’s NOAA Gaea most powerful computer 4 We have increased system performance by 1,000 times since 2004 Hardware scaled from single-core Scaling applications and system software is the biggest through dual-core to quad-core and challenge dual-socket , 12-core SMP nodes • NNSA and DoD have funded
    [Show full text]
  • Towards Efficient Supercomputing: a Quest for the Right Metric
    Towards Efficient Supercomputing: A Quest for the Right Metric ∗ Chung-Hsing Hsu, Wu-chun Feng, Jeremy S. Archuleta Los Alamos National Laboratory {chunghsu, feng, jsarch}@lanl.gov Abstract Awards for Performance and Price/Performance take cen- ter stage. Unfortunately, this focus on performance (and to Over the past decade, we have been building less and a lesser degree, price/performance, where price only cap- less efficient supercomputers, resulting in the construction tures the acquisition cost) has led the HPC community to of substantially larger machine rooms and even new build- build less and less efficient supercomputers with lower reli- ings. In addition, because of the thermal power envelope ability, reduced availability, lower productivity, and signifi- of these supercomputers, a small fortune must be spent to cantly higher total cost of ownership (TCO). cool them. These infrastructure costs coupled with the ad- For example, while the performance of our n-body code ditional costs of administering and maintaining such (un- has increased by 2000-fold since the Cray C90 of the early reliable) supercomputers dramatically increases their total 1990s, the performance per watt has only increased 300- cost of ownership. As a result, there has been substantial in- fold and the performance per square foot by only 65-fold. terest in recent years to produce more reliable and more ef- This trend in inefficiency has resulted in the construction of ficient supercomputers that are easy to maintain and use. substantially larger and more complex machine rooms and But how does one quantify efficient supercomputing? That even new buildings. Further, because of the thermal enve- is, what metric should be used to evaluate how efficiently a lope of such supercomputers, a small fortune must be spent supercomputer delivers answers? to simply cool them, e.g., $6M/year at Lawrence Livermore We argue that existing efficiency metrics such as the National Laboratory (LLNL) [10].
    [Show full text]
  • Leadership Computing Directions at Oak Ridge National Laboratory: Navigating the Transition to Heterogeneous Architectures
    Leadership Computing Directions at Oak Ridge National Laboratory: Navigating the Transition to Heterogeneous Architectures International Symposium on Computing in Atmospheric Sciences September 8-12 , 2013 James J. Hack, Director National Center for Computational Sciences Oak Ridge National Laboratory Arthur S. “Buddy” Bland, OLCF Project Director Bronson Messer, OLCF Scientific Computing James Rogers, NCCS Director of Operations Jack Wells, NCCS Director of Science U.S. Department of Energy strategic priorities Incremental changes to existing technologies cannot meet these challenges – Transformational advances in energy technologies are needed – Transformational adaptation strategies will need to be implemented – Transformational changes to tools that allow a predictive explorations of paths forward Innovation Energy Security Investing in science, Providing clean, secure Safeguarding nuclear discovery and innovation energy and promoting and radiological materials, to provide solutions economic prosperity advancing responsible to pressing energy through energy efficiency legacy cleanup, and challenges and domestic maintaining nuclear forms of energy deterrence 2 Managed by UT-Battelle for the U.S. Department of Energy 3 Managed by UT-Battelle New for the York U.S. Department Magazine of Energy ExampleEnergy is of our the defining virtualization challenge challenge And a great example of success Big storm early next week (Oct 29) with wind and rain??? A number of computer models today were hinting at that, suggesting a tropical system now in the Caribbean may merge with a cold front in that time table, close to the East Coast. At the same time, 8 days is an eternity in storm forecasting, so plenty of time to watch this. Consider this an early “heads-up” that we’ll have an interesting an weather feature to monitor this week..
    [Show full text]
  • Leadership Computing at the National Center for Computational Science: Transitioning to Heterogeneous Architectures
    Leadership Computing at the National Center for Computational Science: Transitioning to Heterogeneous Architectures 15th ECMWF Workshop on High Performance Computing in Meteorology 4 October 2012 James J. Hack, Director National Center for Computational Sciences Oak Ridge National Laboratory Arthur S. “Buddy” Bland, OLCF Project Director Bronson Messer, OLCF Scientific Computing James Rogers, NCCS Director of Operations Jack Wells, NCCS Director of Science U.S. Department of Energy strategic priorities Innovation Energy Security Investing in science, Providing clean, secure Safeguarding nuclear discovery and innovation energy and promoting and radiological materials, to provide solutions economic prosperity advancing responsible to pressing energy through energy efficiency legacy cleanup, and challenges and domestic maintaining nuclear forms of energy deterrence 2 Managed by UT-Battelle for the U.S. Department of Energy Energy is the defining challenge of our time The major driver for Global energy consumption – Climate change will increase 50% by 2030 – National security – Economic competitiveness – Quality of life Incremental changes to existing technologies cannot meet this challenge – Transformational advances in energy technologies are needed – Transformational adaptation strategies will need to be implemented – Transformational changes to tools enabling virtualization of strategies 33 Managed by UT-Battelle for the DepartmentU.S. Department of Energy of Energy ORNL has a long history in High Performance Computing 2007 IBM Blue
    [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]