DGCL: an Efficient Communication Library for Distributed GNN Training

Total Page:16

File Type:pdf, Size:1020Kb

DGCL: an Efficient Communication Library for Distributed GNN Training DGCL: An Efficient Communication Library for Distributed GNN Training Zhenkun Cai Xiao Yan∗ Yidi Wu The Chinese University of Hong Kong Southern University of Science and The Chinese University of Hong Kong [email protected] Technology [email protected] [email protected] Kaihao Ma James Cheng Fan Yu The Chinese University of Hong Kong The Chinese University of Hong Kong Huawei Technologies Co. Ltd [email protected] [email protected] [email protected] Abstract ACM Reference Format: Graph neural networks (GNNs) have gained increasing pop- Zhenkun Cai, Xiao Yan, Yidi Wu, Kaihao Ma, James Cheng, and Fan ularity in many areas such as e-commerce, social networks Yu. 2021. DGCL: An Efficient Communication Library for Dis- tributed GNN Training. In Sixteenth European Conference on Com- and bio-informatics. Distributed GNN training is essential for puter Systems (EuroSys ’21), April 26ś29, 2021, Online, United King- handling large graphs and reducing the execution time. How- dom. ACM, New York, NY, USA, 15 pages. https://doi.org/10.1145/ ever, for distributed GNN training, a peer-to-peer communi- 3447786.3456233 cation strategy suffers from high communication overheads. Also, different GPUs require different remote vertex embed- dings, which leads to an irregular communication pattern 1 Introduction and renders existing communication planning solutions un- Graph neural networks (GNNs) are a special kind of deep suitable. We propose the distributed graph communication neural network, in which each vertex aggregates the embed- library (DGCL) for efficient GNN training on multiple GPUs. dings of its neighbors in the graph to compute its own embed- At the heart of DGCL is a communication planning algorithm ding. Many GNN models have been proposed, e.g., GCN [17], tailored for GNN training, which jointly considers fully uti- GAT [33], CommNet [32], GraphSAGE [8], GIN [39] and lizing fast links, fusing communication, avoiding contention GGNN [20]. These GNN models achieve excellent perfor- and balancing loads on different links. DGCL can be easily mance for graph related tasks such as node classification, adopted to extend existing single-GPU GNN systems to dis- link prediction and graph clustering. To support the effi- tributed training. We conducted extensive experiments on cient training of GNN models, a number of GNN systems different datasets and network configurations to compare such as DGL [35], PyG [7], NeuGraph [21], RoC [13] and DGCL with alternative communication schemes. In our ex- AliGraph [40], have been developed for CPU or GPU. As real periments, DGCL reduces the communication time of the graphs can be very large, e.g., containing millions of vertices peer-to-peer communication by 77.5% on average and the and billions of edges, it is essential to conduct distributed training time for an epoch by up to 47%. GNN training using many GPUs for efficiency and scalabil- ity. However, most existing GNN systems are designed for Keywords Graph Neural Networks, Distributed and Paral- a single worker (e.g., DGL and PyG) or a small number of lel Training, Network Communication workers on the same machine (e.g., NeuGraph). To conduct distributed GNN training, a graph is usually ∗Corresponding author. partitioned [4, 14, 15, 30] to assign its vertices to multiple workers, and the workers compute the vertex embedding in parallel. As vertices need to access the embeddings of their Permission to make digital or hard copies of all or part of this work for neighbors that reside on other workers, it is necessary to personal or classroom use is granted without fee provided that copies are not made or distributed for profit or commercial advantage and that copies bear conduct embedding passing during training. However, using this notice and the full citation on the first page. Copyrights for components direct peer-to-peer communication (i.e., each worker fetches of this work owned by others than ACM must be honored. Abstracting with the required embeddings directly from other workers) [12] credit is permitted. To copy otherwise, or republish, to post on servers or to for embedding passing results in high communication over- redistribute to lists, requires prior specific permission and/or a fee. Request heads. The communication time can easily take up over 50% permissions from [email protected]. of the total training time and even exceeds 90% in some cases EuroSys ’21, April 26ś29, 2021, Online, United Kingdom © 2021 Association for Computing Machinery. according to our measurements in ğ3. ACM ISBN 978-1-4503-8334-9/21/04...$15.00 Our profiling and analysis show that peer-to-peer com- https://doi.org/10.1145/3447786.3456233 munication has poor efficiency for two main reasons (ğ3): (1) It fails to fully utilize fast links. Modern GPU servers (e.g., h e h e NVIDIA DGX systems [22]) contain heterogeneous physical GPU 3 GPU 2 connections such as NVLink [25], PCIe, QPI, IB [36] and 0 Ethernet, and the bandwidth of the fastest link can be an g i f d g i f d order of magnitude of the slowest link. Peer-to-peer commu- nication simply uses the direct links between workers and j a b j a b does not fully exploit the fast links. (2) It does not consider l GPU 4 k c GPU 1 the communications between different worker pairs jointly. l k c With peer-to-peer communication, all workers communicate (a) Graph (b) Partition to 4 GPUs with each other concurrently for embedding passing. This results in severe network contention and load imbalance Figure 1. An example graph and its partitioning given the complex connections among GPUs in a modern GPU cluster. To eliminate embedding passing, we considered an alternative that replicates the remote neighbors of the vertices to the local worker but found that replication results in high memory and computation costs. work in a single-worker mode and does not need to know the To optimize communication efficiency of distributed GNN details about distributed execution. In addition to the SPST training, we formulate a communication planning problem, algorithm, we introduce several system designs in DGCL which is to find a plan that minimizes the time to pass the to improve communication efficiency, including decentral- required vertex embeddings among the workers. The prob- ized communication coordination, automatic communica- lem is challenging for two reasons: (1) The communication tion method selection and non-atomic aggregation. pattern is irregular as different workers require different re- To evaluate the performance of DGCL, we conducted ex- mote embeddings. This is in contrast to training normal deep tensive experiments on four graphs and three GNN mod- neural networks (e.g., VGG [31] and ResNet [9] variants), els under different network configurations. We compared for which each worker sends/receives the same set of model with three alternative communication schemes, i.e., peer- parameters and communication planning has been solved to-peer communication, swap (which uses main memory for by NCCL [24]. (2) The physical connections are complex in embedding exchange among GPUs as in NeuGraph [21]) and modern GPU servers and the communications of all worker replication (which replicates cross-partition vertices to elimi- pairs need to be jointly considered to avoid contention and nate communication as in Medusa [43]). The results show balance the loads among different links. that DGCL consistently achieves shorter communication To solve the communication planning problem, we first time and hence shorter per-epoch time than the baselines show that the optimal strategy to transmit a vertex embed- for distributed GNN training. Compared with peer-to-peer ding from its source worker (i.e., the worker that computes communication, DGCL reduces the communication time by it) to its destination workers (i.e., the workers that use it as at most 85.8% and 77.5% on average. The per-epoch time input) is a tree that has the source worker as its root and of peer-to-peer is reduced by up to 47% in some cases. We contains all the destination workers. Then, a communication also found that replication has poor performance in process- plan is defined as the union of the communication treesof ing dense graphs and runs out of memory for large graphs. all vertices, which provides the maximum flexibility as each Swap often has the worst performance as it needs to dump vertex is allowed to choose its own communication strategy. all vertex embeddings to main memory. We also build a cost model to predict the execution time of Paper outline. We give the background on GNN training a communication plan, which divides the communications in ğ2. We analyze existing strategies for distributed GNN into stages and considers contention, load balancing and training in ğ3 to show their limitations and hence motivate parallelization. Finally, we propose a shortest path spanning our work. We present the architecture and the API of DGCL tree (SPST) algorithm to minimize the cost model in a greedy in ğ4. We discuss the details of communication planning and manner. The vertices are considered sequentially and the the SPST algorithm in ğ5. We discuss the system designs communication tree for each vertex is solved by minimizing and some implementation details in ğ6. We report the per- the cost blow-up considering the processed vertices. formance evaluation results in ğ7. We discuss related work Based on the SPST algorithm, we develop a package called in ğ8 and conclude our work in ğ9. the distributed graph communication library (DGCL). DGCL handles tasks related to distributed GNN training includ- ing graph partitioning, communication planning, and ac- 2 Background on GNN Training tual communication execution. Existing GNN systems can Given a graph G = (V, E), GNN models (e.g., GCN [17], easily invoke DGCL with user-friendly APIs for efficient CommNet [32] and GIN [39]) learn an embedding for each distributed communication.
Recommended publications
  • 20201130 Gcdv V1.0.Pdf
    DE LA RECHERCHE À L’INDUSTRIE Architecture evolutions for HPC 30 Novembre 2020 Guillaume Colin de Verdière Commissariat à l’énergie atomique et aux énergies alternatives - www.cea.fr Commissariat à l’énergie atomique et aux énergies alternatives EUROfusion G. Colin de Verdière 30/11/2020 EVOLUTION DRIVER: TECHNOLOGICAL CONSTRAINTS . Power wall . Scaling wall . Memory wall . Towards accelerated architectures . SC20 main points Commissariat à l’énergie atomique et aux énergies alternatives EUROfusion G. Colin de Verdière 30/11/2020 2 POWER WALL P: power 푷 = 풄푽ퟐ푭 V: voltage F: frequency . Reduce V o Reuse of embedded technologies . Limit frequencies . More cores . More compute, less logic o SIMD larger o GPU like structure © Karl Rupp https://software.intel.com/en-us/blogs/2009/08/25/why-p-scales-as-cv2f-is-so-obvious-pt-2-2 Commissariat à l’énergie atomique et aux énergies alternatives EUROfusion G. Colin de Verdière 30/11/2020 3 SCALING WALL FinFET . Moore’s law comes to an end o Probable limit around 3 - 5 nm o Need to design new structure for transistors Carbon nanotube . Limit of circuit size o Yield decrease with the increase of surface • Chiplets will dominate © AMD o Data movement will be the most expensive operation • 1 DFMA = 20 pJ, SRAM access= 50 pJ, DRAM access= 1 nJ (source NVIDIA) 1 nJ = 1000 pJ, Φ Si =110 pm Commissariat à l’énergie atomique et aux énergies alternatives EUROfusion G. Colin de Verdière 30/11/2020 4 MEMORY WALL . Better bandwidth with HBM o DDR5 @ 5200 MT/s 8ch = 0.33 TB/s Thread 1 Thread Thread 2 Thread Thread 3 Thread o HBM2 @ 4 stacks = 1.64 TB/s 4 Thread Skylake: SMT2 .
    [Show full text]
  • NVIDIA DGX Station the First Personal AI Supercomputer 1.0 Introduction
    White Paper NVIDIA DGX Station The First Personal AI Supercomputer 1.0 Introduction.........................................................................................................2 2.0 NVIDIA DGX Station Architecture ........................................................................3 2.1 NVIDIA Tesla V100 ..........................................................................................5 2.2 Second-Generation NVIDIA NVLink™ .............................................................7 2.3 Water-Cooling System for the GPUs ...............................................................7 2.4 GPU and System Memory...............................................................................8 2.5 Other Workstation Components.....................................................................9 3.0 Multi-GPU with NVLink......................................................................................10 3.1 DGX NVLink Network Topology for Efficient Application Scaling..................10 3.2 Scaling Deep Learning Training on NVLink...................................................12 4.0 DGX Station Software Stack for Deep Learning.................................................14 4.1 NVIDIA CUDA Toolkit.....................................................................................16 4.2 NVIDIA Deep Learning SDK ...........................................................................16 4.3 Docker Engine Utility for NVIDIA GPUs.........................................................17 4.4 NVIDIA Container
    [Show full text]
  • The NVIDIA DGX-1 Deep Learning System
    NVIDIA DGX-1 ARTIFIcIAL INTELLIGENcE SYSTEM The World’s First AI Supercomputer in a Box Get faster training, larger models, and more accurate results from deep learning with the NVIDIA® DGX-1™. This is the world’s first purpose-built system for deep learning and AI-accelerated analytics, with performance equal to 250 conventional servers. It comes fully integrated with hardware, deep learning software, development tools, and accelerated analytics applications. Immediately shorten SYSTEM SPECIFICATIONS data processing time, visualize more data, accelerate deep learning frameworks, GPUs 8x Tesla P100 and design more sophisticated neural networks. TFLOPS (GPU FP16 / 170/3 CPU FP32) Iterate and Innovate Faster GPU Memory 16 GB per GPU CPU Dual 20-core Intel® Xeon® High-performance training accelerates your productivity giving you faster insight E5-2698 v4 2.2 GHz NVIDIA CUDA® Cores 28672 and time to market. System Memory 512 GB 2133 MHz DDR4 Storage 4x 1.92 TB SSD RAID 0 NVIDIA DGX-1 Delivers 58X Faster Training Network Dual 10 GbE, 4 IB EDR Software Ubuntu Server Linux OS DGX-1 Recommended GPU NVIDIA DX-1 23 Hours, less than 1 day Driver PU-Only Server 1310 Hours (5458 Days) System Weight 134 lbs 0 10X 20X 30X 40X 50X 60X System Dimensions 866 D x 444 W x 131 H (mm) Relatve Performance (Based on Tme to Tran) Packing Dimensions 1180 D x 730 W x 284 H (mm) affe benchmark wth V-D network, tranng 128M mages wth 70 epochs | PU servers uses 2x Xeon E5-2699v4 PUs Maximum Power 3200W Requirements Operating Temperature 10 - 30°C NVIDIA DGX-1 Delivers 34X More Performance Range NVIDIA DX-1 170 TFLOPS PU-Only Server 5 TFLOPS 0 10 50 100 150 170 Performance n teraFLOPS PU s dual socket Intel Xeon E5-2699v4 170TF s half precson or FP16 DGX-1 | DATA SHEET | DEc16 computing for Infinite Opportunities NVIDIA DGX-1 Software Stack The NVIDIA DGX-1 is the first system built with DEEP LEARNING FRAMEWORKS NVIDIA Pascal™-powered Tesla® P100 accelerators.
    [Show full text]
  • Computing for the Most Demanding Users
    COMPUTING FOR THE MOST DEMANDING USERS NVIDIA Artificial intelligence, the dream of computer scientists for over half a century, is no longer science fiction. And in the next few years, it will transform every industry. Soon, self-driving cars will reduce congestion and improve road safety. AI travel agents will know your preferences and arrange every detail of your family vacation. And medical instruments will read and understand patient DNA to detect and treat early signs of cancer. Where engines made us stronger and powered the first industrial revolution, AI will make us smarter and power the next. What will make this intelligent industrial revolution possible? A new computing model — GPU deep learning — that enables computers to learn from data and write software that is too complex for people to code. NVIDIA — INVENTOR OF THE GPU The GPU has proven to be unbelievably effective at solving some of the most complex problems in computer science. It started out as an engine for simulating human imagination, conjuring up the amazing virtual worlds of video games and Hollywood films. Today, NVIDIA’s GPU simulates human intelligence, running deep learning algorithms and acting as the brain of computers, robots, and self-driving cars that can perceive and understand the world. This is our life’s work — to amplify human imagination and intelligence. THE NVIDIA GPU DEFINES MODERN COMPUTER GRAPHICS Our invention of the GPU in 1999 made possible real-time programmable shading, which gives artists an infinite palette for expression. We’ve led the field of visual computing since. SIMULATING HUMAN IMAGINATION Digital artists, industrial designers, filmmakers, and broadcasters rely on NVIDIA Quadro® pro graphics to bring their imaginations to life.
    [Show full text]
  • Nvidia Autonomous Driving Platform
    NVIDIA AUTONOMOUS DRIVING PLATFORM Apr, 2017 Sr. Solution Architect , Marcus Oh Who is NVIDIA Deep Learning in Autonomous Driving Training Infra & Machine / DIGIT Contents DRIVE PX2 DRIVEWORKS USECASE Example Next Generation AD Platform 2 NVIDIA CONFIDENTIAL — DRIVE PX2 DEVELOPMENT PLATFORM NVIDIA Founded in 1993 | CEO & Co-founder: Jen-Hsun Huang | FY16 revenue: $5.01B | 9,500 employees | 7,300 patents | HQ in Santa Clara, CA | 3 NVIDIA — “THE AI COMPUTING COMPANY” GPU Computing Computer Graphics Artificial Intelligence 4 DEEP LEARNING IN AUTONOMOUS DRIVING 5 WHAT IS DEEP LEARNING? Input Result 6 Deep Learning Framework Forward Propagation Repeat “turtle” Tree Training Backward Propagation Cat Compute weight update to nudge Dog from “turtle” towards “dog” Trained Neural Net Model Inference “cat” 7 REINFORCEMENT LEARNING How’s it work? F A reinforcement learning agent includes: state (environment) actions (controls) reward (feedback) A value function predicts the future reward of performing actions in the current state Given the recent state, action with the maximum estimated future reward is chosen for execution For agents with complex state spaces, deep networks are used as Q-value approximator Numerical solver (gradient descent) optimizes github.com/dusty-nv/jetson-reinforcement the network on-the-fly based on reward inputs SELF-DRIVING CARS ARE AN AI CHALLENGE PERCEPTION AI PERCEPTION AI LOCALIZATION DRIVING AI DEEP LEARNING 9 NVIDIA AI SYSTEM FOR AUTONOMOUS DRIVING MAPPING KALDI LOCALIZATION DRIVENET Training on Driving with NVIDIA DGX-1 NVIDIA DRIVE PX 2 DGX-1 DriveWorks 10 TRAINING INFRA & MACHINE / DIGIT 11 170X SPEED-UP OVER COTS SERVER MICROSOFT COGNITIVE TOOLKIT SUPERCHARGED ON NVIDIA DGX-1 170x Faster (AlexNet images/sec) 13,000 78 8x Tesla P100 | 170TF FP16 | NVLink hybrid cube mesh CPU Server DGX-1 AlexNet training batch size 128, Dual Socket E5-2699v4, 44 cores CNTK 2.0b2 for CPU.
    [Show full text]
  • Investigations of Various HPC Benchmarks to Determine Supercomputer Performance Efficiency and Balance
    Investigations of Various HPC Benchmarks to Determine Supercomputer Performance Efficiency and Balance Wilson Lisan August 24, 2018 MSc in High Performance Computing The University of Edinburgh Year of Presentation: 2018 Abstract This dissertation project is based on participation in the Student Cluster Competition (SCC) at the International Supercomputing Conference (ISC) 2018 in Frankfurt, Germany as part of a four-member Team EPCC from The University of Edinburgh. There are two main projects which are the team-based project and a personal project. The team-based project focuses on the optimisations and tweaks of the HPL, HPCG, and HPCC benchmarks to meet the competition requirements. At the competition, Team EPCC suffered with hardware issues that shaped the cluster into an asymmetrical system with mixed hardware. Unthinkable and extreme methods were carried out to tune the performance and successfully drove the cluster back to its ideal performance. The personal project focuses on testing the SCC benchmarks to evaluate the performance efficiency and system balance at several HPC systems. HPCG fraction of peak over HPL ratio was used to determine the system performance efficiency from its peak and actual performance. It was analysed through HPCC benchmark that the fraction of peak ratio could determine the memory and network balance over the processor or GPU raw performance as well as the possibility of the memory or network bottleneck part. Contents Chapter 1 Introduction ..............................................................................................
    [Show full text]
  • Fabric Manager for NVIDIA Nvswitch Systems
    Fabric Manager for NVIDIA NVSwitch Systems User Guide / Virtualization / High Availability Modes DU-09883-001_v0.7 | January 2021 Document History DU-09883-001_v0.7 Version Date Authors Description of Change 0.1 Oct 25, 2019 SB Initial Beta Release 0.2 Mar 23, 2020 SB Updated error handling and bare metal mode 0.3 May 11, 2020 YL Updated Shared NVSwitch APIs section with new API information 0.4 July 7, 2020 SB Updated MIG interoperability and high availability details. 0.5 July 17, 2020 SB Updated running as non-root instructions 0.6 Aug 03, 2020 SB Updated installation instructions based on CUDA repo and updated SXid error details 0.7 Jan 26, 2021 GT, CC Updated with vGPU multitenancy virtualization mode Fabric Ma nager fo r NVI DIA NVSwitch Sy stems DU-09883-001_v0.7 | ii Table of Contents Chapter 1. Overview ...................................................................................................... 1 1.1 Introduction .............................................................................................................1 1.2 Terminology ............................................................................................................1 1.3 NVSwitch Core Software Stack .................................................................................2 1.4 What is Fabric Manager?..........................................................................................3 Chapter 2. Getting Started With Fabric Manager ...................................................... 5 2.1 Basic Components...................................................................................................5
    [Show full text]
  • NVIDIA DGX-1 System Architecture White Paper
    White Paper NVIDIA DGX-1 System Architecture The Fastest Platform for Deep Learning TABLE OF CONTENTS 1.0 Introduction ........................................................................................................ 2 2.0 NVIDIA DGX-1 System Architecture .................................................................... 3 2.1 DGX-1 System Technologies ........................................................................... 5 3.0 Multi-GPU and Multi-System Scaling with NVLink and InfiniBand ..................... 6 3.1 DGX-1 NVLink Network Topology for Efficient Application Scaling ................ 7 3.2 Scaling Deep Learning Training on NVLink ................................................... 10 3.3 InfiniBand for Multi-System Scaling of DGX-1 Systems ................................ 13 4.0 DGX-1 Software................................................................................................. 16 4.1 NVIDIA CUDA Toolkit.................................................................................... 17 4.2 NVIDIA Docker.............................................................................................. 18 4.3 NVIDIA Deep Learning SDK .......................................................................... 19 4.4 NCCL............................................................................................................. 20 5.0 Deep Learning Frameworks for DGX-1.............................................................. 22 5.1 NVIDIA Caffe................................................................................................
    [Show full text]
  • NVIDIA A100 Tensor Core GPU Architecture UNPRECEDENTED ACCELERATION at EVERY SCALE
    NVIDIA A100 Tensor Core GPU Architecture UNPRECEDENTED ACCELERATION AT EVERY SCALE V1.0 Table of Contents Introduction 7 Introducing NVIDIA A100 Tensor Core GPU - our 8th Generation Data Center GPU for the Age of Elastic Computing 9 NVIDIA A100 Tensor Core GPU Overview 11 Next-generation Data Center and Cloud GPU 11 Industry-leading Performance for AI, HPC, and Data Analytics 12 A100 GPU Key Features Summary 14 A100 GPU Streaming Multiprocessor (SM) 15 40 GB HBM2 and 40 MB L2 Cache 16 Multi-Instance GPU (MIG) 16 Third-Generation NVLink 16 Support for NVIDIA Magnum IO™ and Mellanox Interconnect Solutions 17 PCIe Gen 4 with SR-IOV 17 Improved Error and Fault Detection, Isolation, and Containment 17 Asynchronous Copy 17 Asynchronous Barrier 17 Task Graph Acceleration 18 NVIDIA A100 Tensor Core GPU Architecture In-Depth 19 A100 SM Architecture 20 Third-Generation NVIDIA Tensor Core 23 A100 Tensor Cores Boost Throughput 24 A100 Tensor Cores Support All DL Data Types 26 A100 Tensor Cores Accelerate HPC 28 Mixed Precision Tensor Cores for HPC 28 A100 Introduces Fine-Grained Structured Sparsity 31 Sparse Matrix Definition 31 Sparse Matrix Multiply-Accumulate (MMA) Operations 32 Combined L1 Data Cache and Shared Memory 33 Simultaneous Execution of FP32 and INT32 Operations 34 A100 HBM2 and L2 Cache Memory Architectures 34 ii NVIDIA A100 Tensor Core GPU Architecture A100 HBM2 DRAM Subsystem 34 ECC Memory Resiliency 35 A100 L2 Cache 35 Maximizing Tensor Core Performance and Efficiency for Deep Learning Applications 37 Strong Scaling Deep Learning
    [Show full text]
  • NVIDIA GPU COMPUTING: a JOURNEY from PC GAMING to DEEP LEARNING Stuart Oberman | October 2017 GAMING PROENTERPRISE VISUALIZATION DATA CENTER AUTO
    NVIDIA GPU COMPUTING: A JOURNEY FROM PC GAMING TO DEEP LEARNING Stuart Oberman | October 2017 GAMING PROENTERPRISE VISUALIZATION DATA CENTER AUTO NVIDIA ACCELERATED COMPUTING 2 GEFORCE: PC Gaming 200M GeForce gamers worldwide Most advanced technology Gaming ecosystem: More than just chips Amazing experiences & imagery 3 NINTENDO SWITCH: POWERED BY NVIDIA TEGRA 4 GEFORCE NOW: AMAZING GAMES ANYWHERE AAA titles delivered at 1080p 60fps Streamed to SHIELD family of devices Streaming to Mac (beta) https://www.nvidia.com/en- us/geforce/products/geforce- now/mac-pc/ 5 GPU COMPUTING Drug Design Seismic Imaging Automotive Design Medical Imaging Molecular Dynamics Reverse Time Migration Computational Fluid Dynamics Computed Tomography 15x speed up 14x speed up 30-100x speed up Astrophysics Options Pricing Product Development Weather Forecasting n-body Monte Carlo Finite Difference Time Domain Atmospheric Physics 20x speed up 6 GPU: 2017 7 2017: TESLA VOLTA V100 21B transistors 815 mm2 80 SM 5120 CUDA Cores 640 Tensor Cores 16 GB HBM2 900 GB/s HBM2 300 GB/s NVLink 8 *full GV100 chip contains 84 SMs V100 SPECIFICATIONS 9 HOW DID WE GET HERE? 10 NVIDIA GPUS: 1999 TO NOW https://youtu.be/I25dLTIPREA 11 SOUL OF THE GRAPHICS PROCESSING UNIT GPU: Changes Everything • Accelerate computationally-intensive applications • NVIDIA introduced GPU in 1999 • A single chip processor to accelerate PC gaming and 3D graphics • Goal: approach the image quality of movie studio offline rendering farms, but in real-time • Instead of hours per frame, > 60 frames per second
    [Show full text]
  • Nvidia Dgx Os 5.0
    NVIDIA DGX OS 5.0 User Guide DU-10211-001 _v5.0.0 | September 2021 Table of Contents Chapter 1. Introduction to the NVIDIA DGX OS 5 User Guide..............................................1 1.1. Additional Documentation........................................................................................................ 2 1.2. Customer Support.....................................................................................................................2 Chapter 2. Preparing for Operation..................................................................................... 3 2.1. Software Installation and Setup...............................................................................................3 2.2. Connecting to the DGX System................................................................................................4 Chapter 3. Installing the DGX OS (Reimaging the System)................................................. 5 3.1. Obtaining the DGX OS ISO........................................................................................................5 3.2. Installing the DGX OS Image Remotely through the BMC......................................................6 3.3. Installing the DGX OS Image from a USB Flash Drive or DVD-ROM......................................6 3.3.1. Creating a Bootable USB Flash Drive by Using the dd Command.................................. 7 3.3.2. Creating a Bootable USB Flash Drive by Using Akeo Rufus............................................8 3.4. Installation Options..................................................................................................................
    [Show full text]
  • NVIDIA Topology-Aware GPU Selection 0.1.0 (Early Access)
    NVIDIA Topology-Aware GPU Selection 0.1.0 (Early Access) User Guide DU-09998-001_v0.1.0 (Early Access) | July 2020 Table of Contents Chapter 1. Introduction........................................................................................................ 1 Chapter 2. Getting Started................................................................................................... 4 2.1. Prerequisites............................................................................................................................. 4 2.2. Installing NVTAGS..................................................................................................................... 4 Chapter 3. Using NVTAGS.................................................................................................... 6 3.1. NVTAGS Tune Mode..................................................................................................................6 3.1.1. Tune with profiling............................................................................................................. 6 3.1.2. Run NVTAGS in Tune with Profiling Mode........................................................................7 3.2. Tune NVTAGS without Profiling Mode..................................................................................... 7 3.2.1. Run NVTAGS in Tune without Profiling Mode...................................................................7 3.3. NVTAGS Run Mode..................................................................................................................
    [Show full text]