HPC Wales Skills Academy Course Catalogue 2015
|
|
|
- Candice Moore
- 10 years ago
- Views:
Transcription
1 HPC Wales Skills Academy Course Catalogue 2015
2 Overview The HPC Wales Skills Academy provides a variety of courses and workshops aimed at building skills in High Performance Computing (HPC). Our courses are appropriate for academic, professional or organisational development, and our training programmes can be tailored to your needs to ensure you get the most benefit out of them. The courses are typically delivered as half day, full day or as 2 day courses, across many locations in Wales at the moment. The following catalogue provides a summary of the courses available. We continue to develop additional courses to support the use of supercomputing in industry and academia, so if you have any additional requirements then please contact us to discuss your training needs.
3 Introduction to High Performance Computing This course provides an overview of High Performance Computing and focuses on presenting you with examples of how HPC can be of benefit to businesses and academics. You will learn about the collaborative venture that is HPC Wales, how the teams and systems are distributed across Wales, the industry sectors we work with, and give you an overview of the Skills Academy which outlines the training opportunities available to business and academics in order to harness HPC. IT Literate Attendees will be made aware of various aspects of the field of High Performance Computing and how it is being used within industry and academia They will be able to make an assessment on the value of High Performance Computing and if it is of relevance to their business or research Understand HPC Wales services including further training and contributory bursaries options, for graduates and businesses ½ day
4 Using HPC Wales via the Command Line This course provides an overview of the Linux operating system with a number of practical examples of using the command line and introduces the nano, emacs, and vi text editors discussing their relative merits. The course includes access to the HPC Wales system where you will be able to experience how to prepare, compile and run a range of small applications, to introduce you to the process and commands for running jobs on the system. IT Literate A knowledge of programming languages would be beneficial Understand the Linux command line language with the associated commands and parameters Be able to access and use the HPC Wales services to run HPC jobs using the Linux command-line interface including how to compile and run a range of serial and parallel application codes ½ day
5 Introduction to Computer Architecture This course provides an overview about how a computer is built from a conceptual level (CPU, memory, network, storage) and expand to include HPC (i.e. multiple machines, interconnects, etc). It will cover the design differences between desktop PC and HPC systems to enable people to make decisions on the types of HPC services they need. IT Literate Provide a fundamental understanding and be able to identify and evaluate how a High Performance Computer is configured, the components, architecture, the advantages and disadvantages of multi-node computing services, in a typical HPC Infrastructure Demonstrate familiarity with the different hardware architectures on which HPC can be delivered and understand the benefits of HPC as a service vs. own system development Understand the difference between the two main types of HPC system i.e. those with a shared global memory (ideally suited to OpenMP codes) and those with a partitioned global memory (ideally suited to MPI codes) ½ day
6 Sector-Specific Uses of HPC This course provides a showcase of existing HPC application software on the HPC Wales system within a selection of scientific disciplines and industry sectors. It will demonstrate the potential use of HPC, how these applications work and what they are capable of (compared to stand-alone serial variants). The application examples provided in this course will be varied depending on the audience and will focus on specific sector/applications or multiple sectors using a few application examples for the practical exercises. Pre Requisite: IT literate : Understand how HPC services benefit priority sectors and scientific disciplines and how these principles can be used in industry for computational simulation, data mining, rendering and visualization Provides an overview of the different applications used by industry and researchers in the sectors, which are available on the HPC Wales service Be able to utilise these application services and run examples for a specific industry / research sector ½ day
7 Software Engineering in a Cluster Environment This course teaches how to use three important tools to assist the development of software in a number of programming languages. The first tool is make which is an open source dependency-tracking build system. Make allows you to automate the complicated process of compiling large programs spread across multiple source files. The second tool is subversion (or svn) which is an open source software versioning and revision control system. Subversion allows you to keep track of changes made to source code so that you can recover older versions of your code, or examine the history of changes made to the source code over time. The third aspect introduces how to report bugs effectively and provides an understanding of how software developers manage bugs though their lifecycle, to resolution.. Knowledge of programming languages such as; C / C++ or Fortran Attended Using HPC Wales via the Command Line, or experienced Linux user Attendees will be able to understand and use a software versioning and revision control system, a dependency-tracking build system, and submit a bug report, as important tools and techniques used in the development of software within a number of programming languages 1 day
8 Scripting Languages This course teaches how to use three important scripting languages to assist the development of complex workflows. The first scripting language is Bash which is the preferred shell on the HPC Wales systems; we will cover basic data types such as numbers and characters followed by basic calculation and comparison operations, branching, looping, arrays, subshells, and file input / output. The second scripting language is Perl which is ideally suited to text manipulation; we will cover basic data types such as numbers and characters followed by basic calculation and comparison operations, branching, looping, arrays, subroutines, regular expressions, and file input / output. The third scripting language is Python which has a number of add on functions for a range of scientific disciplines; we will cover basic data types such as numbers and characters, lists, dictionaries, and tuples followed by basic calculation and comparison operations, branching, looping, arrays, functions, modules, and file input / output. All three scripting languages will be supported by a range of practical examples. Knowledge of programming languages such as; C / C++ or Fortran Attended Using HPC Wales via the Command Line, or experienced Linux user Attendees will be able to understand the use of scripting languages and be able to develop simple, Bash Perl and Python scripts. 1 day
9 Debugging, Profiling and Optimising Serial Codes in a Cluster Environment This course teaches how to use a number of tools to assist in the debugging, profiling, and optimising of serial codes in a cluster environment. A range of typical bugs will be explored with practical examples on how to locate and eliminate them using both the Gnu command line debugger (GDB), and a graphical debugger (Allinea DDT). The course includes profiling a number of serial codes in order to discover hot spots using the Gnu command line profiler (GPROF) and explores a range of optimisation strategies to improve the performance of a number of serial codes including code restructuring and compiler optimisations using the Intel compilers. Knowledge of programming in C / C++ or Fortran Working knowledge of the Linux Command Line Attended the following courses or can demonstrate competency in these topics Using HPC Wales via the Command Line Introduction to Computer Architecture and HPC Attendees will be able to debug, profile, and optimise serial codes in a cluster environment using a number of command line and graphical programs available on the HPC Wales systems Make informed decisions on how to improve the efficiency and write more efficient serial codes 2 days
10 Thinking in Parallel This course provides an overview on how to parallelise problems in a languageagnostic way, to set the scene for using OpenMP and MPI. It also acquaints the participant with the terminology on how to develop parallel applications/codes, informs them about the issues involved when developing parallel applications/codes and enables them to decide on an approach for developing a parallel version of their own application/code. Knowledge of programming in C / C++ or Fortran Working knowledge of the Linux Command Line Has attended the following courses, or can demonstrate competency in these topics Using HPC Wales via the Command Line Introduction to Computer Architecture and HPC Software Engineering in a Cluster Environment To be able to develop simple parallel applications and critically appraise issues related to parallel application development Develop parallel algorithms from sequential analogues Analyse the appropriate parallel programming language to use in HPC Apply and utilise appropriate software tools and methods 1 day
11 Parallel Programming using OpenMP OpenMP is a standard for writing parallel codes to run on a shared memory computer, node or multi-core chip, also referred to as multi-threading. This course introduces the OpenMP compiler directives and library routines that can be added to an existing serial code and introduces the concepts and essential syntax of OpenMP, including functionality introduced at version 3.0. The course combines both theory and practical exercises and provides an overview of performance issues. Ability to programming in C / C++ or Fortran and working knowledge of the Linux Command Line Has attended the following courses, or can demonstrate competency in these topics Using HPC Wales via the Command Line Introduction to Computer Architecture and HPC Introduction to Debugging, Methodologies and Parallelism Attendees will be able to understand how OpenMP is used to parallelise codes Develop parallelised versions of existing serial code using OpenMP Write a parallel code from scratch using OpenMP 2 days
12 Parallel Programming using MPI MPI (Message Passing Interface) is the de facto standard for parallel programming, defining how concurrent processes can communicate and hence work together to complete a given task in a shorter time. The course provides a detailed introduction to programming using MPI. It includes an in-depth look at point-to-point and collective communication, as well as introducing the useful topics of MPI derived data types, groups and communicators. It gives an overview of available message passing libraries. The course combines both theory and practical exercises. Ability to programming in C / C++ or Fortran and working knowledge of the Linux Command Line Has attended the following courses, or can demonstrate competency in these topics Using HPC Wales via the Command Line Introduction to Computer Architecture and HPC Introduction to Debugging, Methodologies and Parallelism Attendees will be able to understand how MPI is used to parallelise codes Parallelise an existing serial code using MPI Write a parallel code from scratch using MPI 2 days
13 Advanced Parallel Programming using OpenMP This element of the module follows on from the Introduction to OpenMP Course by completing the OpenMP 3.1 syntax. In particular the course covers detail at synchronisation and tasks, as well as considering nested parallelism. Attendees are encouraged to bring their own serial code to work on in the practical sessions. Knowledge of the Linux Command Line is required Ability to program in C / C++ or Fortran is required Attended Introduction to OpenMP, or can demonstrate competency in this topic To be able to utilise advanced features of OpenMP to develop complex parallel applications using OpenMP 1 day
14 Advanced Parallel Programming using MPI MPI (Message Passing Interface) is the de facto standard for parallel programming, defining how concurrent processes can communicate and hence work together to complete a given task in a shorter time. This course follows the Introduction to MPI and will cover some of the more advanced features of MPI, such as Cartesian topologies, as well as returning to the topics of MPI derived data types, before looking at the topic of MPI-IO, which allows multiple processors to read and write files in parallel. The course combines both theory and practical exercises. Knowledge of the Linux Command Line is required Ability to program in C / C++ or Fortran is required Attended Introduction to MPI, or can demonstrate competency in this topic To be able to utilise advanced features of MPI to develop complex parallel applications using MPI 1 day
15 Hybrid Programming This course demonstrates how combining the two paradigms of OpenMP and MPI can be beneficial, and how best to achieve more efficient codes. The course combines both theory and practical exercises. Knowledge of the Linux Command Line is required Ability to program in C / C++ or Fortran is required Attended Advanced programming in OpenMP and MPI, or can demonstrate competency in these topics To be able to develop complex parallel applications using OpenMP and MPI and critically appraise issues related to choosing the most appropriate parallelisation strategy for a given computational problem. 1 day
16 Debugging and Profiling Parallel Codes in a Cluster Environment This course follows on from the Introduction to Debugging, Profiling, and Optimising Serial Codes element utilising a number of tools to assist in the debugging and profiling of parallel codes in a cluster environment. A range of typical bugs will be explored with practical examples on how to locate and eliminate them using the graphical debugger, Allinea DDT. The participant will learn how to profile a number of parallel codes in order to discover hot spots and communication patterns using the graphical profiler Scalasca, and explore a range of optimisation strategies to improve the performance of a number of parallel codes including code restructuring and compiler optimisations using the Intel compilers. Knowledge of programming in C / C++ or Fortran Has attended the following courses, or can demonstrate competency in these topics Introduction to Computer Architecture and HPC Debugging, Profiling and Optimising Serial codes in a cluster environment Attendees will be able to debug and profile parallel codes using a number of command line and graphical programs available on the HPC Wales systems Make informed decisions on how to improve the efficiency and write more efficient parallel codes 1 day
17 Libraries This course demonstrates to participants how to use a range of numerical and statistical analysis features available in the NAG C/C++ and Fortran numerical libraries. Knowledge of programming in C / C++ or Fortran Introduction to Computer Architecture and HPC Attended the following courses or can demonstrate competency in this topic Introduction to HPC, Tools, and Scripting Introduction to Debugging, Methodologies and Parallelism Attendees will be able to understand how to use numerical libraries in developing parallel codes 1 day
18 Visualization This course provides a range of visualization techniques used with scientific codes, showing how existing source code can be amended to make it produce output suitable for visualization. Appropriate visualization tools will be introduced including ParaView and VisIt and participants will be instructed in their operation. Knowledge of HPC systems or scientific codes Attendees will be to select appropriate visualization techniques to understand and interpret their data Use an appropriate turnkey visualization application to interactively explore their data 1 day
19 Introduction to CUDA This 2 day course provides an introduction to programming NVIDIA GPUs using CUDA. It is aimed at people who want to learn to write their own CUDA code. Noting that it is typically not necessary to learn CUDA in order to use GPU accelerated packages. This course is targeted at individuals who are reasonably competent programmers Knowledge of the Linux Command Line is required Familiarity with programming in C / C++. Attendees should be comfortable working with pointers This course does not assume knowledge about parallel programming or OpenMP Attendees will know the hardware and software aspects of CUDA programming, and Write programs which utilises the CUDA API to enhance code performance 2 days
20 Introduction to Fortran Fortran is one of the key programming languages used in supercomputing. This beginner-level course teaches you how to write serial applications using the Fortran programming language. On day one we begin by explaining how computer systems work and how basic data types such as numbers and characters are manipulated. We then cover basic calculation and comparison operations, branching (if, else, case), looping (the iterative, repeat until, and while variants of the do loop), derived data types, and arrays using a number of example applications. On day two we begin with an overview of format descriptors, then move on to more complex example applications that make use of functions and subroutines (ways to improve the structure of the code). We then discuss reading and writing data to and from files using weather data freely available from the MET office, and introduce some of the built-in math functions. This course is targeted at individuals who are beginner level programmers Knowledge of the Linux Command Line is required Attendees will be able to write and compile Fortran code 2 days
21 Introduction to C/C++ C/C++ is one of the key programming languages used in supercomputing. This beginner-level course teaches you how to write serial applications using the C/C++ programming language. On day one we begin by explaining how computer systems work and how basic data types such as numbers and characters are manipulated. We then cover basic calculation and comparison operations, branching (if, else, case), looping (for, do, while), derived data types, and arrays using a number of example applications. On day two we begin with an overview of manipulators, then move on to more complex example applications that make use of functions and libraries (ways to improve the structure of the code). We then discuss reading and writing data to and from files using weather data freely available from the MET office, and introduce some of the built-in math functions. This course is targeted at individuals who are beginner level programmers Knowledge of the Linux Command Line is required Attendees will be able to write and compile C/C++ code 2 days
22 Locations We vary the venues for training delivery throughout Wales and these typically include the following locations. Aberystwyth Bangor Cardiff Pembroke Swansea Treforest Wrexham When requested, we are also able to run courses at business locations where the facilities on site provide a connection to the HPC Wales supercomputing services. Booking To book a place on a Skills Academy course please contact [email protected] Further information Details about the HPC Wales Skills Academy and course dates can be found on the HPC Wales Web site, or contact us via the address below. [email protected]
GPU System Architecture. Alan Gray EPCC The University of Edinburgh
GPU System Architecture EPCC The University of Edinburgh Outline Why do we want/need accelerators such as GPUs? GPU-CPU comparison Architectural reasons for GPU performance advantages GPU accelerated systems
The Fastest Way to Parallel Programming for Multicore, Clusters, Supercomputers and the Cloud.
White Paper 021313-3 Page 1 : A Software Framework for Parallel Programming* The Fastest Way to Parallel Programming for Multicore, Clusters, Supercomputers and the Cloud. ABSTRACT Programming for Multicore,
Using WestGrid. Patrick Mann, Manager, Technical Operations Jan.15, 2014
Using WestGrid Patrick Mann, Manager, Technical Operations Jan.15, 2014 Winter 2014 Seminar Series Date Speaker Topic 5 February Gino DiLabio Molecular Modelling Using HPC and Gaussian 26 February Jonathan
Part I Courses Syllabus
Part I Courses Syllabus This document provides detailed information about the basic courses of the MHPC first part activities. The list of courses is the following 1.1 Scientific Programming Environment
Introduction to Linux and Cluster Basics for the CCR General Computing Cluster
Introduction to Linux and Cluster Basics for the CCR General Computing Cluster Cynthia Cornelius Center for Computational Research University at Buffalo, SUNY 701 Ellicott St Buffalo, NY 14203 Phone: 716-881-8959
Applications to Computational Financial and GPU Computing. May 16th. Dr. Daniel Egloff +41 44 520 01 17 +41 79 430 03 61
F# Applications to Computational Financial and GPU Computing May 16th Dr. Daniel Egloff +41 44 520 01 17 +41 79 430 03 61 Today! Why care about F#? Just another fashion?! Three success stories! How Alea.cuBase
Overview of HPC Resources at Vanderbilt
Overview of HPC Resources at Vanderbilt Will French Senior Application Developer and Research Computing Liaison Advanced Computing Center for Research and Education June 10, 2015 2 Computing Resources
Introducing PgOpenCL A New PostgreSQL Procedural Language Unlocking the Power of the GPU! By Tim Child
Introducing A New PostgreSQL Procedural Language Unlocking the Power of the GPU! By Tim Child Bio Tim Child 35 years experience of software development Formerly VP Oracle Corporation VP BEA Systems Inc.
Introduction to Running Computations on the High Performance Clusters at the Center for Computational Research
! Introduction to Running Computations on the High Performance Clusters at the Center for Computational Research! Cynthia Cornelius! Center for Computational Research University at Buffalo, SUNY! cdc at
BLM 413E - Parallel Programming Lecture 3
BLM 413E - Parallel Programming Lecture 3 FSMVU Bilgisayar Mühendisliği Öğr. Gör. Musa AYDIN 14.10.2015 2015-2016 M.A. 1 Parallel Programming Models Parallel Programming Models Overview There are several
The Top Six Advantages of CUDA-Ready Clusters. Ian Lumb Bright Evangelist
The Top Six Advantages of CUDA-Ready Clusters Ian Lumb Bright Evangelist GTC Express Webinar January 21, 2015 We scientists are time-constrained, said Dr. Yamanaka. Our priority is our research, not managing
BIG CPU, BIG DATA. Solving the World s Toughest Computational Problems with Parallel Computing. Alan Kaminsky
Solving the World s Toughest Computational Problems with Parallel Computing Alan Kaminsky Solving the World s Toughest Computational Problems with Parallel Computing Alan Kaminsky Department of Computer
Matlab on a Supercomputer
Matlab on a Supercomputer Shelley L. Knuth Research Computing April 9, 2015 Outline Description of Matlab and supercomputing Interactive Matlab jobs Non-interactive Matlab jobs Parallel Computing Slides
The Asterope compute cluster
The Asterope compute cluster ÅA has a small cluster named asterope.abo.fi with 8 compute nodes Each node has 2 Intel Xeon X5650 processors (6-core) with a total of 24 GB RAM 2 NVIDIA Tesla M2050 GPGPU
Cluster, Grid, Cloud Concepts
Cluster, Grid, Cloud Concepts Kalaiselvan.K Contents Section 1: Cluster Section 2: Grid Section 3: Cloud Cluster An Overview Need for a Cluster Cluster categorizations A computer cluster is a group of
Performance Evaluation of NAS Parallel Benchmarks on Intel Xeon Phi
Performance Evaluation of NAS Parallel Benchmarks on Intel Xeon Phi ICPP 6 th International Workshop on Parallel Programming Models and Systems Software for High-End Computing October 1, 2013 Lyon, France
Debugging in Heterogeneous Environments with TotalView. ECMWF HPC Workshop 30 th October 2014
Debugging in Heterogeneous Environments with TotalView ECMWF HPC Workshop 30 th October 2014 Agenda Introduction Challenges TotalView overview Advanced features Current work and future plans 2014 Rogue
Cluster Computing at HRI
Cluster Computing at HRI J.S.Bagla Harish-Chandra Research Institute, Chhatnag Road, Jhunsi, Allahabad 211019. E-mail: [email protected] 1 Introduction and some local history High performance computing
Introduction to ACENET Accelerating Discovery with Computational Research May, 2015
Introduction to ACENET Accelerating Discovery with Computational Research May, 2015 What is ACENET? What is ACENET? Shared regional resource for... high-performance computing (HPC) remote collaboration
Overview of HPC systems and software available within
Overview of HPC systems and software available within Overview Available HPC Systems Ba Cy-Tera Available Visualization Facilities Software Environments HPC System at Bibliotheca Alexandrina SUN cluster
Advanced MPI. Hybrid programming, profiling and debugging of MPI applications. Hristo Iliev RZ. Rechen- und Kommunikationszentrum (RZ)
Advanced MPI Hybrid programming, profiling and debugging of MPI applications Hristo Iliev RZ Rechen- und Kommunikationszentrum (RZ) Agenda Halos (ghost cells) Hybrid programming Profiling of MPI applications
22S:295 Seminar in Applied Statistics High Performance Computing in Statistics
22S:295 Seminar in Applied Statistics High Performance Computing in Statistics Luke Tierney Department of Statistics & Actuarial Science University of Iowa August 30, 2007 Luke Tierney (U. of Iowa) HPC
Introduction to GPU Programming Languages
CSC 391/691: GPU Programming Fall 2011 Introduction to GPU Programming Languages Copyright 2011 Samuel S. Cho http://www.umiacs.umd.edu/ research/gpu/facilities.html Maryland CPU/GPU Cluster Infrastructure
Parallel Computing: Strategies and Implications. Dori Exterman CTO IncrediBuild.
Parallel Computing: Strategies and Implications Dori Exterman CTO IncrediBuild. In this session we will discuss Multi-threaded vs. Multi-Process Choosing between Multi-Core or Multi- Threaded development
AQA GCSE in Computer Science Computer Science Microsoft IT Academy Mapping
AQA GCSE in Computer Science Computer Science Microsoft IT Academy Mapping 3.1.1 Constants, variables and data types Understand what is mean by terms data and information Be able to describe the difference
Introduction to GPU hardware and to CUDA
Introduction to GPU hardware and to CUDA Philip Blakely Laboratory for Scientific Computing, University of Cambridge Philip Blakely (LSC) GPU introduction 1 / 37 Course outline Introduction to GPU hardware
ANDROID DEVELOPER TOOLS TRAINING GTC 2014. Sébastien Dominé, NVIDIA
ANDROID DEVELOPER TOOLS TRAINING GTC 2014 Sébastien Dominé, NVIDIA AGENDA NVIDIA Developer Tools Introduction Multi-core CPU tools Graphics Developer Tools Compute Developer Tools NVIDIA Developer Tools
CS 3530 Operating Systems. L02 OS Intro Part 1 Dr. Ken Hoganson
CS 3530 Operating Systems L02 OS Intro Part 1 Dr. Ken Hoganson Chapter 1 Basic Concepts of Operating Systems Computer Systems A computer system consists of two basic types of components: Hardware components,
High Performance. CAEA elearning Series. Jonathan G. Dudley, Ph.D. 06/09/2015. 2015 CAE Associates
High Performance Computing (HPC) CAEA elearning Series Jonathan G. Dudley, Ph.D. 06/09/2015 2015 CAE Associates Agenda Introduction HPC Background Why HPC SMP vs. DMP Licensing HPC Terminology Types of
Evaluation of CUDA Fortran for the CFD code Strukti
Evaluation of CUDA Fortran for the CFD code Strukti Practical term report from Stephan Soller High performance computing center Stuttgart 1 Stuttgart Media University 2 High performance computing center
High Productivity Computing With Windows
High Productivity Computing With Windows Windows HPC Server 2008 Justin Alderson 16-April-2009 Agenda The purpose of computing is... The purpose of computing is insight not numbers. Richard Hamming Why
:Introducing Star-P. The Open Platform for Parallel Application Development. Yoel Jacobsen E&M Computing LTD [email protected]
:Introducing Star-P The Open Platform for Parallel Application Development Yoel Jacobsen E&M Computing LTD [email protected] The case for VHLLs Functional / applicative / very high-level languages allow
Overview. Lecture 1: an introduction to CUDA. Hardware view. Hardware view. hardware view software view CUDA programming
Overview Lecture 1: an introduction to CUDA Mike Giles [email protected] hardware view software view Oxford University Mathematical Institute Oxford e-research Centre Lecture 1 p. 1 Lecture 1 p.
What is a programming language?
Overview Introduction Motivation Why study programming languages? Some key concepts What is a programming language? Artificial language" Computers" Programs" Syntax" Semantics" What is a programming language?...there
Case Study on Productivity and Performance of GPGPUs
Case Study on Productivity and Performance of GPGPUs Sandra Wienke [email protected] ZKI Arbeitskreis Supercomputing April 2012 Rechen- und Kommunikationszentrum (RZ) RWTH GPU-Cluster 56 Nvidia
GPU for Scientific Computing. -Ali Saleh
1 GPU for Scientific Computing -Ali Saleh Contents Introduction What is GPU GPU for Scientific Computing K-Means Clustering K-nearest Neighbours When to use GPU and when not Commercial Programming GPU
GPU Hardware and Programming Models. Jeremy Appleyard, September 2015
GPU Hardware and Programming Models Jeremy Appleyard, September 2015 A brief history of GPUs In this talk Hardware Overview Programming Models Ask questions at any point! 2 A Brief History of GPUs 3 Once
Scalability and Classifications
Scalability and Classifications 1 Types of Parallel Computers MIMD and SIMD classifications shared and distributed memory multicomputers distributed shared memory computers 2 Network Topologies static
Turbomachinery CFD on many-core platforms experiences and strategies
Turbomachinery CFD on many-core platforms experiences and strategies Graham Pullan Whittle Laboratory, Department of Engineering, University of Cambridge MUSAF Colloquium, CERFACS, Toulouse September 27-29
ST810 Advanced Computing
ST810 Advanced Computing Lecture 17: Parallel computing part I Eric B. Laber Hua Zhou Department of Statistics North Carolina State University Mar 13, 2013 Outline computing Hardware computing overview
SLURM Workload Manager
SLURM Workload Manager What is SLURM? SLURM (Simple Linux Utility for Resource Management) is the native scheduler software that runs on ASTI's HPC cluster. Free and open-source job scheduler for the Linux
Programming models for heterogeneous computing. Manuel Ujaldón Nvidia CUDA Fellow and A/Prof. Computer Architecture Department University of Malaga
Programming models for heterogeneous computing Manuel Ujaldón Nvidia CUDA Fellow and A/Prof. Computer Architecture Department University of Malaga Talk outline [30 slides] 1. Introduction [5 slides] 2.
Introduction to Cloud Computing
Introduction to Cloud Computing Parallel Processing I 15 319, spring 2010 7 th Lecture, Feb 2 nd Majd F. Sakr Lecture Motivation Concurrency and why? Different flavors of parallel computing Get the basic
Matrox Imaging White Paper
Vision library or vision specific IDE: Which is right for you? Abstract Commercial machine vision software is currently classified along two lines: the conventional vision library and the vision specific
How To Develop Software
Software Development Basics Dr. Axel Kohlmeyer Associate Dean for Scientific Computing College of Science and Technology Temple University, Philadelphia http://sites.google.com/site/akohlmey/ [email protected]
BIG CPU, BIG DATA. Solving the World s Toughest Computational Problems with Parallel Computing. Alan Kaminsky
Solving the World s Toughest Computational Problems with Parallel Computing Solving the World s Toughest Computational Problems with Parallel Computing Department of Computer Science B. Thomas Golisano
Developing Parallel Applications with the Eclipse Parallel Tools Platform
Developing Parallel Applications with the Eclipse Parallel Tools Platform Greg Watson IBM STG [email protected] Parallel Tools Platform Enabling Parallel Application Development Best practice tools for experienced
1 Bull, 2011 Bull Extreme Computing
1 Bull, 2011 Bull Extreme Computing Table of Contents HPC Overview. Cluster Overview. FLOPS. 2 Bull, 2011 Bull Extreme Computing HPC Overview Ares, Gerardo, HPC Team HPC concepts HPC: High Performance
CUDA programming on NVIDIA GPUs
p. 1/21 on NVIDIA GPUs Mike Giles [email protected] Oxford University Mathematical Institute Oxford-Man Institute for Quantitative Finance Oxford eresearch Centre p. 2/21 Overview hardware view
Parallel Computing using MATLAB Distributed Compute Server ZORRO HPC
Parallel Computing using MATLAB Distributed Compute Server ZORRO HPC Goals of the session Overview of parallel MATLAB Why parallel MATLAB? Multiprocessing in MATLAB Parallel MATLAB using the Parallel Computing
David Rioja Redondo Telecommunication Engineer Englobe Technologies and Systems
David Rioja Redondo Telecommunication Engineer Englobe Technologies and Systems About me David Rioja Redondo Telecommunication Engineer - Universidad de Alcalá >2 years building and managing clusters UPM
Parallel Debugging with DDT
Parallel Debugging with DDT Nate Woody 3/10/2009 www.cac.cornell.edu 1 Debugging Debugging is a methodical process of finding and reducing the number of bugs, or defects, in a computer program or a piece
Course Development of Programming for General-Purpose Multicore Processors
Course Development of Programming for General-Purpose Multicore Processors Wei Zhang Department of Electrical and Computer Engineering Virginia Commonwealth University Richmond, VA 23284 [email protected]
Working with HPC and HTC Apps. Abhinav Thota Research Technologies Indiana University
Working with HPC and HTC Apps Abhinav Thota Research Technologies Indiana University Outline What are HPC apps? Working with typical HPC apps Compilers - Optimizations and libraries Installation Modules
GPUs for Scientific Computing
GPUs for Scientific Computing p. 1/16 GPUs for Scientific Computing Mike Giles [email protected] Oxford-Man Institute of Quantitative Finance Oxford University Mathematical Institute Oxford e-research
Spring 2011 Prof. Hyesoon Kim
Spring 2011 Prof. Hyesoon Kim Today, we will study typical patterns of parallel programming This is just one of the ways. Materials are based on a book by Timothy. Decompose Into tasks Original Problem
An Introduction to Parallel Computing/ Programming
An Introduction to Parallel Computing/ Programming Vicky Papadopoulou Lesta Astrophysics and High Performance Computing Research Group (http://ahpc.euc.ac.cy) Dep. of Computer Science and Engineering European
MPI / ClusterTools Update and Plans
HPC Technical Training Seminar July 7, 2008 October 26, 2007 2 nd HLRS Parallel Tools Workshop Sun HPC ClusterTools 7+: A Binary Distribution of Open MPI MPI / ClusterTools Update and Plans Len Wisniewski
Data Analysis with MATLAB. 2013 The MathWorks, Inc. 1
Data Analysis with MATLAB 2013 The MathWorks, Inc. 1 Agenda Introduction Data analysis with MATLAB and Excel Break Developing applications with MATLAB Solving larger problems Summary 2 Modeling the Solar
HPC Software Requirements to Support an HPC Cluster Supercomputer
HPC Software Requirements to Support an HPC Cluster Supercomputer Susan Kraus, Cray Cluster Solutions Software Product Manager Maria McLaughlin, Cray Cluster Solutions Product Marketing Cray Inc. WP-CCS-Software01-0417
Introduction to grid technologies, parallel and cloud computing. Alaa Osama Allam Saida Saad Mohamed Mohamed Ibrahim Gaber
Introduction to grid technologies, parallel and cloud computing Alaa Osama Allam Saida Saad Mohamed Mohamed Ibrahim Gaber OUTLINES Grid Computing Parallel programming technologies (MPI- Open MP-Cuda )
NVIDIA CUDA GETTING STARTED GUIDE FOR MAC OS X
NVIDIA CUDA GETTING STARTED GUIDE FOR MAC OS X DU-05348-001_v6.5 August 2014 Installation and Verification on Mac OS X TABLE OF CONTENTS Chapter 1. Introduction...1 1.1. System Requirements... 1 1.2. About
Multicore Parallel Computing with OpenMP
Multicore Parallel Computing with OpenMP Tan Chee Chiang (SVU/Academic Computing, Computer Centre) 1. OpenMP Programming The death of OpenMP was anticipated when cluster systems rapidly replaced large
Introduction to HPC Workshop. Center for e-research ([email protected])
Center for e-research ([email protected]) Outline 1 About Us About CER and NeSI The CS Team Our Facilities 2 Key Concepts What is a Cluster Parallel Programming Shared Memory Distributed Memory 3 Using
Trends in High-Performance Computing for Power Grid Applications
Trends in High-Performance Computing for Power Grid Applications Franz Franchetti ECE, Carnegie Mellon University www.spiral.net Co-Founder, SpiralGen www.spiralgen.com This talk presents my personal views
A GPU COMPUTING PLATFORM (SAGA) AND A CFD CODE ON GPU FOR AEROSPACE APPLICATIONS
A GPU COMPUTING PLATFORM (SAGA) AND A CFD CODE ON GPU FOR AEROSPACE APPLICATIONS SUDHAKARAN.G APCF, AERO, VSSC, ISRO 914712564742 [email protected] THOMAS.C.BABU APCF, AERO, VSSC, ISRO 914712565833
Parallel Computing with MATLAB
Parallel Computing with MATLAB Scott Benway Senior Account Manager Jiro Doke, Ph.D. Senior Application Engineer 2013 The MathWorks, Inc. 1 Acceleration Strategies Applied in MATLAB Approach Options Best
Parallel Processing using the LOTUS cluster
Parallel Processing using the LOTUS cluster Alison Pamment / Cristina del Cano Novales JASMIN/CEMS Workshop February 2015 Overview Parallelising data analysis LOTUS HPC Cluster Job submission on LOTUS
Parallel Ray Tracing using MPI: A Dynamic Load-balancing Approach
Parallel Ray Tracing using MPI: A Dynamic Load-balancing Approach S. M. Ashraful Kadir 1 and Tazrian Khan 2 1 Scientific Computing, Royal Institute of Technology (KTH), Stockholm, Sweden [email protected],
Compute Cluster Server Lab 3: Debugging the parallel MPI programs in Microsoft Visual Studio 2005
Compute Cluster Server Lab 3: Debugging the parallel MPI programs in Microsoft Visual Studio 2005 Compute Cluster Server Lab 3: Debugging the parallel MPI programs in Microsoft Visual Studio 2005... 1
Eddy Integrated Development Environment, LemonIDE for Embedded Software System Development
Introduction to -based solution for embedded software development Section 1 Eddy Real-Time, Lemonix Section 2 Eddy Integrated Development Environment, LemonIDE Section 3 Eddy Utility Programs Eddy Integrated
NVIDIA CUDA GETTING STARTED GUIDE FOR MAC OS X
NVIDIA CUDA GETTING STARTED GUIDE FOR MAC OS X DU-05348-001_v5.5 July 2013 Installation and Verification on Mac OS X TABLE OF CONTENTS Chapter 1. Introduction...1 1.1. System Requirements... 1 1.2. About
5x in 5 hours Porting SEISMIC_CPML using the PGI Accelerator Model
5x in 5 hours Porting SEISMIC_CPML using the PGI Accelerator Model C99, C++, F2003 Compilers Optimizing Vectorizing Parallelizing Graphical parallel tools PGDBG debugger PGPROF profiler Intel, AMD, NVIDIA
An Introduction to High Performance Computing in the Department
An Introduction to High Performance Computing in the Department Ashley Ford & Chris Jewell Department of Statistics University of Warwick October 30, 2012 1 Some Background 2 How is Buster used? 3 Software
Appendix M INFORMATION TECHNOLOGY (IT) YOUTH APPRENTICESHIP
Appendix M INFORMATION TECHNOLOGY (IT) YOUTH APPRENTICESHIP PROGRAMMING & SOFTWARE DEVELOPMENT AND INFORMATION SUPPORT & SERVICES PATHWAY SOFTWARE UNIT UNIT 5 Programming & and Support & s: (Unit 5) PAGE
GeoImaging Accelerator Pansharp Test Results
GeoImaging Accelerator Pansharp Test Results Executive Summary After demonstrating the exceptional performance improvement in the orthorectification module (approximately fourteen-fold see GXL Ortho Performance
Performance Analysis of a Hybrid MPI/OpenMP Application on Multi-core Clusters
Performance Analysis of a Hybrid MPI/OpenMP Application on Multi-core Clusters Martin J. Chorley a, David W. Walker a a School of Computer Science and Informatics, Cardiff University, Cardiff, UK Abstract
Parallel Large-Scale Visualization
Parallel Large-Scale Visualization Aaron Birkland Cornell Center for Advanced Computing Data Analysis on Ranger January 2012 Parallel Visualization Why? Performance Processing may be too slow on one CPU
The GPU Accelerated Data Center. Marc Hamilton, August 27, 2015
The GPU Accelerated Data Center Marc Hamilton, August 27, 2015 THE GPU-ACCELERATED DATA CENTER HPC DEEP LEARNING PC VIRTUALIZATION CLOUD GAMING RENDERING 2 Product design FROM ADVANCED RENDERING TO VIRTUAL
Sourcery Overview & Virtual Machine Installation
Sourcery Overview & Virtual Machine Installation Damian Rouson, Ph.D., P.E. Sourcery, Inc. www.sourceryinstitute.org Sourcery, Inc. About Us Sourcery, Inc., is a software consultancy founded by and for
10 STEPS TO YOUR FIRST QNX PROGRAM. QUICKSTART GUIDE Second Edition
10 STEPS TO YOUR FIRST QNX PROGRAM QUICKSTART GUIDE Second Edition QNX QUICKSTART GUIDE A guide to help you install and configure the QNX Momentics tools and the QNX Neutrino operating system, so you can
CE 504 Computational Hydrology Computational Environments and Tools Fritz R. Fiedler
CE 504 Computational Hydrology Computational Environments and Tools Fritz R. Fiedler 1) Operating systems a) Windows b) Unix and Linux c) Macintosh 2) Data manipulation tools a) Text Editors b) Spreadsheets
Using NeSI HPC Resources. NeSI Computational Science Team ([email protected])
NeSI Computational Science Team ([email protected]) Outline 1 About Us About NeSI Our Facilities 2 Using the Cluster Suitable Work What to expect Parallel speedup Data Getting to the Login Node 3 Submitting
High Performance Computing. Course Notes 2007-2008. HPC Fundamentals
High Performance Computing Course Notes 2007-2008 2008 HPC Fundamentals Introduction What is High Performance Computing (HPC)? Difficult to define - it s a moving target. Later 1980s, a supercomputer performs
Parallel Computing for Data Science
Parallel Computing for Data Science With Examples in R, C++ and CUDA Norman Matloff University of California, Davis USA (g) CRC Press Taylor & Francis Group Boca Raton London New York CRC Press is an imprint
Experiences with Tools at NERSC
Experiences with Tools at NERSC Richard Gerber NERSC User Services Programming weather, climate, and earth- system models on heterogeneous mul>- core pla?orms September 7, 2011 at the Na>onal Center for
Multi-core Programming System Overview
Multi-core Programming System Overview Based on slides from Intel Software College and Multi-Core Programming increasing performance through software multi-threading by Shameem Akhter and Jason Roberts,
