Microsoft Windows Compute Cluster Server 2003 Evaluation
|
|
|
- Rodger Sherman
- 9 years ago
- Views:
Transcription
1 Microsoft Windows Compute Cluster Server 2003 Evaluation Georg Hager,, Johannes Habich (RRZE) Stefan Donath (Lehrstuhl für Systemsimulation) Universität Erlangen-Nürnberg rnberg ZKI AK Supercomputing 25./ , GWDG
2 Outline Administrative issues Installing the Head Node Cluster Network Topology RIS-Unattended Installation Domain integration User Environment Benchmarks for Intel MPI PingPong Current user projects Evaluating Excel integration LINPACK sample Homebrew VBA macros for simple Jacobi benchmark NUMA and affinity issues Conclusions 2
3 Opteron Test Platform 7 quad Opteron nodes (Dual Core Dual Socket) 4 GB per node 8GB on head node Windows 2003 Enterprise + Compute Cluster Pack Visual Studio 2005, Intel compilers, MKL, ACML Star-CD Gbit Ethernet Access via RDP or ssh (sshd from Cygwin) GUI tool for job control: Cluster Job Manager CLI: job.cmd script 3
4 Cluster Layout RRZE ccsmaster ccsfront Plan: ccsfront as VMWare virtual machine on master node Only machine accessible to users Easily movable However: Serious problems with Visual Studio and Intel compilers inside VM Same procedures work on ccsmaster Being investigated For now, people work on ccsmaster Switch ccs002 ccs003 ccs004 ccs005 ccs006 ccs007 ccs008 4
5 Installing the Head Node Preinstalled headnode and cluster nodes from transtec with evaluation version of WinCCS2003 Preliminary network connection bandwidth evaluation with Intel IMB benchmarks No SUA support Clean installation of Win2003 Enterprise R2 x64 Installation of Intel Fortran and C compiler with Visual Studio 2005 integration Intel C++ Compiler 9.1 and 10.0 Intel Fortran Compiler 9.1 Intel MKL 9.0 5
6 Cluster Network Topology Separate private and public 1GE networks available DHCP Server could not separate the two scopes to two physical network adapters DHCP Server is reconfigured without warning for Remote Installation Services (RIS) to install nodes unattended only private network was used, with NAT translation for outside communication 6
7 RIS Unattended Installation Creating the RIS (Remote Installation Server) Image from Win2003 installation CD By-hand inlining of R2 necessary packets and settings from Win2003 installation CD 2 Adjustment of wrong paths inside the configuration files First attempt to install RIS caused a complete DHCP breakdown, as RIS changes complete DHCP configuration and launches without proper rights for standard scope x After that, RIS installed compute nodes flawlessly 7
8 RIS Unattended Installation Domain Administrator rights are necessary for creating automatically new computer accounts inside domain RIS deploy wizard warns user that password is visible in plain text during deployment huge security risk during each setup! Suggestions: No plain text passwords Easy wizard creation of standard Win2003 images DHCP Server with multiple instances for each network interface Failure messages should be more elaborate 8
9 Domain Integration Headnode and cluster nodes were integrated into UNI-Erlangen ADS Problem of supplying a working directory which is both available as a network share via Windows Explorer and available to the jobs running on the cluster User works on mounted network share Job works on complete UNC path leading to same network share One common path for both, but UNC for users is not a preferred choice Automatic mapping of this location at job start and user login Problems of some Windows software to work with UNC (CMD.exe, partly Visual Studio 2005) 9
10 Intel MPI Ping Pong benchmark Compiling inside SUA and Visual Studio 2005 Issuing jobs with standard MPIEXEC causes 4 threads to run on each node internode communication measured Hence: Fun and interesting ways to run MPI Jobs on CCS from Now: pernode.bat script hacks %CCP_NODES% system variable and only one task is executed per compute node Measuring real internode connection bandwidth and latency Desirable: flexible specification for processors per node at job submission and runtime 11
11 Intel MPI Ping Pong benchmark PingPong INTEL MPI Benchmark on CCS (small packets / latency test) Latency [µsec] Message length [bytes] MS: Variations due to interrupt coalescing in GE driver No option to switch off in our driver 12
12 Projects on the WinCCS Cluster Crack propagation (FAU, Materials Science) F90/OpenMP, C++ (OpenMP to come) VirtualFluids (TU Braunschweig) C++/MPI Star-CD (FAU, Fluid Mechanics) walberla (FAU, System Simulation) C++/MPI 13
13 walberla Widely applicable lattice Boltzmann from Erlangen CFD project based on lattice Boltzmann method Modular software concept Supports various applications, currently planned: Blood flow in aneurysms Moving particles and agglomerates Free surfaces to simulate foams, fuel cells, a.m.m. Charged colloids Arbitrary combinations of above Integration in efficient massive-parallel environment Standardized input and output routines User-friendly interface Platform independency with CMAKE 14
14 walberla Widely applicable lattice Boltzmann from Erlangen Porting issues concerning CMake: CMake has to be configured to find MPI Not possible to specify Cluster Debugger Configurations via CMake (overwrites settings when project is built) Visual Studio & Queues Not possible to automatically submit and debug parallel job via Visual Studio Debugging issues MPI Cluster Debugger: Configuration pain to run jobs on remote sites Remote Debugger not able to connect to queued jobs 15
15 Goals WCCS as a development environment Visual Studio Parallel debugging Different compilers Some issues (Intel project system, parallel debugging), but ok in general Coupling of CCS cluster to MS Excel by use of VBA Job construct, submit Result retrieval Visualization Behaviour of Windows on a ccnuma architecture Locality & affinity issues Buffer cache 18
16 Excel-CCS coupling CCS API available for C++ and VBA Documentation issues for VBA, but many examples online: scripts/ccs/job/default.mspx?mfr=true API is part of Office Professional only Example Excel Sheet and VBA macros for LINPACK parameter scans provided Toy project: Make Excel sheet for simple heat equation solver with graphical output of performance numbers 19
17 Evaluating Excel Integration (LINPACK Eample) Taking precompiled binaries offered by MS with ACML Tuning LINPACK parameters as suggested in: Hands-On Lab Building HPC LINPACK Tool Issuing jobs directly to Job Manager Querying jobs Results are instantly plotted in Excel Gflops Matrix Blocksize 20
18 Excel-CCS coupling Principles of operation Provide Excel worksheet with necessary parameters Binary name, working dir Number of CPUs, walltime limit Input parameters for application Position active elements (buttons, ) linked to VBA macros VBA communicates with CCS using XML First time generation of XML structure from XML Schema template file (saved from Job Manager app.) scratch Link entries to worksheet cells Use VBA-CCS API to construct and submit jobs Many options possible Collect and parse output data and fill cells Simple visualization possible using Excel graphs 21
19 job.xml template <?xml version="1.0" encoding="utf-8" standalone="yes"?> <Job xmlns:ns1=" Name="job1" MaximumNumberOfProcessors="4" MinimumNumberOfProcessors="4" Owner="unrz55" Priority="Normal" Project="Jacobi" Runtime="Infinite"> <ns1:tasks> <ns1:task Name="task1" CommandLine="echo heat_ccs.exe" MaximumNumberOfProcessors="4" MinimumNumberOfProcessors="4" Runtime="Infinite" WorkDirectory="\\Ccsmaster\ccsshare\unrz55\xlstest\" Stderr=" err.out" Stdout=" heat.out /> </ns1:tasks> </Job> 22
20 Excel-CCS coupling 23
21 Submitting a Job with VBA in Excel connect to cluster, defined by xls cell Cluster Set objcluster = CreateObject("Microsoft.ComputeCluster.Cluster") objcluster.connect (Range("Cluster").Value) Job object from XML description Set Job = objcluster.createjobfromxml(strxml) obtain user credentials Set WshNetwork = CreateObject("WScript.Network") UserName = WshNetwork.UserDomain & "\" & WshNetwork.UserName submit job to queue ID = objcluster.queuejob((job), UserName, "", False, 0) Many other CCS-API and general VBA functions available Status query, job cancel etc. VBA: Regexp package 24
22 Result retrieval e.g. by VBScript Regexp Package 25
23 Windows on ccnuma Locality and congestion problems on ccnuma First touch policy for memory pages ensures local placement Watch OpenMP init loops P P Even if placement is correct, make sure it stays that way pin threads/processes to initial sockets Issue with OpenMP and MPI To make matters worse, FS buffer cache can fill LDs so that apps must use nonlocal memory Use memory sweeper before production How does all this work on Windows? C C MI C C Memory LD0 data data BC P P C C C C MI Memory LD1 data BC 26
24 NUMA Placement and Pinning with Heat Conduction Solver (Relaxation) placement+pinning placement only no placement MLUPs/s Pinning benefit is only due to better NUMA locality! additional pinning: +30% MB L2 limit NUMA placement: +60% N
25 Buffer Cache and Page Placement No file write MLUPs/s How to limit FS buffer cache in Windows? 1GB file write in LD0 before benchmark 2GB working set limit N 28
26 Future plans Test of Ansys CFX 11 Test of StarCD Test of Allinea DDTLite for Visual Studio WalbErla (CFD) development and evaluation of Windows Performance (see Projects) Customized Excel sheets for standard production applications (see above) 29
27 Conclusions Well-known development environment with HPC add-ons Batch system/scheduler is not enterprise-class Ease of use (develop/compile/debug/job submit) Room for improvement with parallel debugging Similar ccnuma issues as with Linux, same remedies Process/thread pinning absolutely essential CCS VBA API is extremely fun to play with May be attractive to production-only users Still lacks some coherent documentation Only available with Office Professional 30
Windows HPC 2008 Cluster Launch
Windows HPC 2008 Cluster Launch Regionales Rechenzentrum Erlangen (RRZE) Johannes Habich [email protected] Launch overview Small presentation and basic introduction Questions and answers Hands-On
Using the Windows Cluster
Using the Windows Cluster Christian Terboven [email protected] aachen.de Center for Computing and Communication RWTH Aachen University Windows HPC 2008 (II) September 17, RWTH Aachen Agenda o Windows Cluster
Microsoft Compute Clusters in High Performance Technical Computing. Björn Tromsdorf, HPC Product Manager, Microsoft Corporation
Microsoft Compute Clusters in High Performance Technical Computing Björn Tromsdorf, HPC Product Manager, Microsoft Corporation Flexible and efficient job scheduling via Windows CCS has allowed more of
walberla: A software framework for CFD applications on 300.000 Compute Cores
walberla: A software framework for CFD applications on 300.000 Compute Cores J. Götz (LSS Erlangen, [email protected]), K. Iglberger, S. Donath, C. Feichtinger, U. Rüde Lehrstuhl für Informatik 10 (Systemsimulation)
walberla: A software framework for CFD applications
walberla: A software framework for CFD applications U. Rüde, S. Donath, C. Feichtinger, K. Iglberger, F. Deserno, M. Stürmer, C. Mihoubi, T. Preclic, D. Haspel (all LSS Erlangen), N. Thürey (LSS Erlangen/
Microsoft Windows Compute Cluster Server 2003 Getting Started Guide
Microsoft Windows Compute Cluster Server 2003 Getting Started Guide Part Number 434709-003 March 2007 (Third Edition) Copyright 2006, 2007 Hewlett-Packard Development Company, L.P. The information contained
Technical Overview of Windows HPC Server 2008
Technical Overview of Windows HPC Server 2008 Published: June, 2008, Revised September 2008 Abstract Windows HPC Server 2008 brings the power, performance, and scale of high performance computing (HPC)
Interoperability between Sun Grid Engine and the Windows Compute Cluster
Interoperability between Sun Grid Engine and the Windows Compute Cluster Steven Newhouse Program Manager, Windows HPC Team [email protected] 1 Computer Cluster Roadmap Mainstream HPC Mainstream
How to Run Parallel Jobs Efficiently
How to Run Parallel Jobs Efficiently Shao-Ching Huang High Performance Computing Group UCLA Institute for Digital Research and Education May 9, 2013 1 The big picture: running parallel jobs on Hoffman2
System Requirements Table of contents
Table of contents 1 Introduction... 2 2 Knoa Agent... 2 2.1 System Requirements...2 2.2 Environment Requirements...4 3 Knoa Server Architecture...4 3.1 Knoa Server Components... 4 3.2 Server Hardware Setup...5
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
Configuring and Launching ANSYS FLUENT 16.0 - Distributed using IBM Platform MPI or Intel MPI
Configuring and Launching ANSYS FLUENT 16.0 - Distributed using IBM Platform MPI or Intel MPI Table of Contents BEFORE YOU PROCEED... 1 Launching FLUENT Using Shared Memory... 2 Configuring FLUENT to run
High Performance Computing in Aachen
High Performance Computing in Aachen Samuel Sarholz [email protected] aachen.de Center for Computing and Communication RWTH Aachen University HPC unter Linux Sep 15, RWTH Aachen Agenda o Hardware o Development
virtualization.info Review Center SWsoft Virtuozzo 3.5.1 (for Windows) // 02.26.06
virtualization.info Review Center SWsoft Virtuozzo 3.5.1 (for Windows) // 02.26.06 SWsoft Virtuozzo 3.5.1 (for Windows) Review 2 Summary 0. Introduction 1. Installation 2. VPSs creation and modification
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
Pcounter Web Report 3.x Installation Guide - v2014-11-30. Pcounter Web Report Installation Guide Version 3.4
Pcounter Web Report 3.x Installation Guide - v2014-11-30 Pcounter Web Report Installation Guide Version 3.4 Table of Contents Table of Contents... 2 Installation Overview... 3 Installation Prerequisites
Cluster Scalability of ANSYS FLUENT 12 for a Large Aerodynamics Case on the Darwin Supercomputer
Cluster Scalability of ANSYS FLUENT 12 for a Large Aerodynamics Case on the Darwin Supercomputer Stan Posey, MSc and Bill Loewe, PhD Panasas Inc., Fremont, CA, USA Paul Calleja, PhD University of Cambridge,
Running applications on the Cray XC30 4/12/2015
Running applications on the Cray XC30 4/12/2015 1 Running on compute nodes By default, users do not log in and run applications on the compute nodes directly. Instead they launch jobs on compute nodes
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
Experiences with HPC on Windows
Experiences with on Christian Terboven [email protected] aachen.de Center for Computing and Communication RWTH Aachen University Server Computing Summit 2008 April 7 11, HPI/Potsdam Experiences with on
Assignment # 1 (Cloud Computing Security)
Assignment # 1 (Cloud Computing Security) Group Members: Abdullah Abid Zeeshan Qaiser M. Umar Hayat Table of Contents Windows Azure Introduction... 4 Windows Azure Services... 4 1. Compute... 4 a) Virtual
Interconnect Efficiency of Tyan PSC T-630 with Microsoft Compute Cluster Server 2003
Interconnect Efficiency of Tyan PSC T-630 with Microsoft Compute Cluster Server 2003 Josef Pelikán Charles University in Prague, KSVI Department, [email protected] Abstract 1 Interconnect quality
Asta Powerproject Enterprise
Asta Powerproject Enterprise Overview and System Requirements Guide Asta Development plc Kingston House Goodsons Mews Wellington Street Thame Oxfordshire OX9 3BX United Kingdom Tel: +44 (0)1844 261700
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
HPC at IU Overview. Abhinav Thota Research Technologies Indiana University
HPC at IU Overview Abhinav Thota Research Technologies Indiana University What is HPC/cyberinfrastructure? Why should you care? Data sizes are growing Need to get to the solution faster Compute power is
Virtualization Guide. McAfee Vulnerability Manager Virtualization
Virtualization Guide McAfee Vulnerability Manager Virtualization COPYRIGHT Copyright 2012 McAfee, Inc. Do not copy without permission. TRADEMARKS McAfee, the McAfee logo, McAfee Active Protection, McAfee
Debugging with TotalView
Tim Cramer 17.03.2015 IT Center der RWTH Aachen University Why to use a Debugger? If your program goes haywire, you may... ( wand (... buy a magic... read the source code again and again and...... enrich
Acronis Backup & Recovery 10 Advanced Server Virtual Edition. Quick Start Guide
Acronis Backup & Recovery 10 Advanced Server Virtual Edition Quick Start Guide Table of contents 1 Main components...3 2 License server...3 3 Supported operating systems...3 3.1 Agents... 3 3.2 License
HPC Cluster Decisions and ANSYS Configuration Best Practices. Diana Collier Lead Systems Support Specialist Houston UGM May 2014
HPC Cluster Decisions and ANSYS Configuration Best Practices Diana Collier Lead Systems Support Specialist Houston UGM May 2014 1 Agenda Introduction Lead Systems Support Specialist Cluster Decisions Job
7.x Upgrade Instructions. 2015 Software Pursuits, Inc.
7.x Upgrade Instructions 2015 Table of Contents INTRODUCTION...2 SYSTEM REQUIREMENTS FOR SURESYNC 7...2 CONSIDERATIONS BEFORE UPGRADING...3 TERMINOLOGY CHANGES... 4 Relation Renamed to Job... 4 SPIAgent
WebSphere Business Monitor V7.0 Configuring a remote CEI server
Copyright IBM Corporation 2010 All rights reserved WebSphere Business Monitor V7.0 What this exercise is about... 2 Lab requirements... 2 What you should be able to do... 2 Introduction... 3 Part 1: Install
Freshservice Discovery Probe User Guide
Freshservice Discovery Probe User Guide 1. What is Freshservice Discovery Probe? 1.1 What details does Probe fetch? 1.2 How does Probe fetch the information? 2. What are the minimum system requirements
Debugging and Profiling Lab. Carlos Rosales, Kent Milfeld and Yaakoub Y. El Kharma [email protected]
Debugging and Profiling Lab Carlos Rosales, Kent Milfeld and Yaakoub Y. El Kharma [email protected] Setup Login to Ranger: - ssh -X [email protected] Make sure you can export graphics
ANSYS Remote Solve Manager User's Guide
ANSYS Remote Solve Manager User's Guide ANSYS, Inc. Southpointe 275 Technology Drive Canonsburg, PA 15317 [email protected] http://www.ansys.com (T) 724-746-3304 (F) 724-514-9494 ANSYS Release 15.0 November
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
INTEL PARALLEL STUDIO XE EVALUATION GUIDE
Introduction This guide will illustrate how you use Intel Parallel Studio XE to find the hotspots (areas that are taking a lot of time) in your application and then recompiling those parts to improve overall
DIABLO VALLEY COLLEGE CATALOG 2014-2015
COMPUTER SCIENCE COMSC The computer science department offers courses in three general areas, each targeted to serve students with specific needs: 1. General education students seeking a computer literacy
High Performance Computing in CST STUDIO SUITE
High Performance Computing in CST STUDIO SUITE Felix Wolfheimer GPU Computing Performance Speedup 18 16 14 12 10 8 6 4 2 0 Promo offer for EUC participants: 25% discount for K40 cards Speedup of Solver
Log Analyzer Reference
IceWarp Unified Communications Log Analyzer Reference Version 10.4 Printed on 27 February, 2012 Contents Log Analyzer 1 Quick Start... 2 Required Steps... 2 Optional Steps... 3 Advanced Configuration...
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
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
Microsoft HPC. V 1.0 José M. Cámara ([email protected])
Microsoft HPC V 1.0 José M. Cámara ([email protected]) Introduction Microsoft High Performance Computing Package addresses computing power from a rather different approach. It is mainly focused on commodity
Multi-Threading Performance on Commodity Multi-Core Processors
Multi-Threading Performance on Commodity Multi-Core Processors Jie Chen and William Watson III Scientific Computing Group Jefferson Lab 12000 Jefferson Ave. Newport News, VA 23606 Organization Introduction
XenClient Enterprise Synchronizer Installation Guide
XenClient Enterprise Synchronizer Installation Guide Version 5.1.0 March 26, 2014 Table of Contents About this Guide...3 Hardware, Software and Browser Requirements...3 BIOS Settings...4 Adding Hyper-V
Toward a practical HPC Cloud : Performance tuning of a virtualized HPC cluster
Toward a practical HPC Cloud : Performance tuning of a virtualized HPC cluster Ryousei Takano Information Technology Research Institute, National Institute of Advanced Industrial Science and Technology
Quick Start Guide for VMware and Windows 7
PROPALMS VDI Version 2.1 Quick Start Guide for VMware and Windows 7 Rev. 1.1 Published: JULY-2011 1999-2011 Propalms Ltd. All rights reserved. The information contained in this document represents the
PHD Virtual Backup for Hyper-V
PHD Virtual Backup for Hyper-V version 7.0 Installation & Getting Started Guide Document Release Date: December 18, 2013 www.phdvirtual.com PHDVB v7 for Hyper-V Legal Notices PHD Virtual Backup for Hyper-V
INSTALLATION GUIDE ENTERPRISE DYNAMICS 9.0
INSTALLATION GUIDE ENTERPRISE DYNAMICS 9.0 PLEASE NOTE PRIOR TO INSTALLING On Windows 8, Windows 7 and Windows Vista you must have Administrator rights to install the software. Installing Enterprise Dynamics
- An Essential Building Block for Stable and Reliable Compute Clusters
Ferdinand Geier ParTec Cluster Competence Center GmbH, V. 1.4, March 2005 Cluster Middleware - An Essential Building Block for Stable and Reliable Compute Clusters Contents: Compute Clusters a Real Alternative
Synchronizer Installation
Synchronizer Installation Synchronizer Installation Synchronizer Installation This document provides instructions for installing Synchronizer. Synchronizer performs all the administrative tasks for XenClient
Setup Cisco Call Manager on VMware
created by: Rainer Bemsel Version 1.0 Dated: July/09/2011 The purpose of this document is to provide the necessary steps to setup a Cisco Call Manager to run on VMware. I ve been researching for a while
Request Manager Installation and Configuration Guide
Request Manager Installation and Configuration Guide vcloud Request Manager 1.0.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced
StarWind Virtual SAN Hyper-Converged Platform Quick Start Guide
Hardware-less VM Storage StarWind Virtual SAN Hyper-Converged Platform Quick Start Guide DATE: MAY 2015 TECHNICAL PAPER Trademarks StarWind, StarWind Software and the StarWind and the StarWind Software
Kaseya Server Instal ation User Guide June 6, 2008
Kaseya Server Installation User Guide June 6, 2008 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations. Kaseya's
Pedraforca: ARM + GPU prototype
www.bsc.es Pedraforca: ARM + GPU prototype Filippo Mantovani Workshop on exascale and PRACE prototypes Barcelona, 20 May 2014 Overview Goals: Test the performance, scalability, and energy efficiency of
October 2011. Gluster Virtual Storage Appliance - 3.2 User Guide
October 2011 Gluster Virtual Storage Appliance - 3.2 User Guide Table of Contents 1. About the Guide... 4 1.1. Disclaimer... 4 1.2. Audience for this Guide... 4 1.3. User Prerequisites... 4 1.4. Documentation
Virtual Desktop Infrastructure (VDI) made Easy
Virtual Desktop Infrastructure (VDI) made Easy HOW-TO Preface: Desktop virtualization can increase the effectiveness of information technology (IT) teams by simplifying how they configure and deploy endpoint
RA MPI Compilers Debuggers Profiling. March 25, 2009
RA MPI Compilers Debuggers Profiling March 25, 2009 Examples and Slides To download examples on RA 1. mkdir class 2. cd class 3. wget http://geco.mines.edu/workshop/class2/examples/examples.tgz 4. tar
Introduction to the NI Real-Time Hypervisor
Introduction to the NI Real-Time Hypervisor 1 Agenda 1) NI Real-Time Hypervisor overview 2) Basics of virtualization technology 3) Configuring and using Real-Time Hypervisor systems 4) Performance and
Table of Contents. Introduction...9. Installation...17. Program Tour...31. The Program Components...10 Main Program Features...11
2011 AdRem Software, Inc. This document is written by AdRem Software and represents the views and opinions of AdRem Software regarding its content, as of the date the document was issued. The information
Streamline Computing Linux Cluster User Training. ( Nottingham University)
1 Streamline Computing Linux Cluster User Training ( Nottingham University) 3 User Training Agenda System Overview System Access Description of Cluster Environment Code Development Job Schedulers Running
Installation and Configuration Guide for Windows and Linux
Installation and Configuration Guide for Windows and Linux vcenter Operations Manager 5.0.3 This document supports the version of each product listed and supports all subsequent versions until the document
Windows Clients and GoPrint Print Queues
Windows Clients and GoPrint Print Queues Overview The following tasks demonstrate how to configure shared network printers on Windows client machines in a Windows Active Directory Domain and Workgroup
Site Configuration SETUP GUIDE. Windows Hosts Single Workstation Installation. May08. May 08
Site Configuration SETUP GUIDE Windows Hosts Single Workstation Installation May08 May 08 Copyright 2008 Wind River Systems, Inc. All rights reserved. No part of this publication may be reproduced or transmitted
Performance Evaluation of VMXNET3 Virtual Network Device VMware vsphere 4 build 164009
Performance Study Performance Evaluation of VMXNET3 Virtual Network Device VMware vsphere 4 build 164009 Introduction With more and more mission critical networking intensive workloads being virtualized
e-business Suite Server Install Guide
e-business Suite Server Install Guide Version 1.0 April 2011 Avelo FS Holdings Limited 2011 *These accreditations belong to Avelo FS Limited **This accreditation belongs to Avelo FS Limited and Avelo Portal
Clusters: Mainstream Technology for CAE
Clusters: Mainstream Technology for CAE Alanna Dwyer HPC Division, HP Linux and Clusters Sparked a Revolution in High Performance Computing! Supercomputing performance now affordable and accessible Linux
IceWarp Server. Log Analyzer. Version 10
IceWarp Server Log Analyzer Version 10 Printed on 23 June, 2009 i Contents Log Analyzer 1 Quick Start... 2 Required Steps... 2 Optional Steps... 2 Advanced Configuration... 5 Log Importer... 6 General...
MSSQL quick start guide
C u s t o m e r S u p p o r t MSSQL quick start guide This guide will help you: Add a MS SQL database to your account. Find your database. Add additional users. Set your user permissions Upload your database
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
Requirements & Install. Module 2 Single Engine Installation
Requirements & Install Module 2 Single Engine Installation Requirements Requirement Minimum Optimum Processor Intel Core 2 @ 2GHz Dual Processor Xeon 3.0 GHz Memory 2 GB RAM 8 GB RAM Disk Space 2 GB 5GB
Microsoft Visual Basic Scripting Edition and Microsoft Windows Script Host Essentials
Microsoft Visual Basic Scripting Edition and Microsoft Windows Script Host Essentials 2433: Microsoft Visual Basic Scripting Edition and Microsoft Windows Script Host Essentials (3 Days) About this Course
Agenda. HPC Software Stack. HPC Post-Processing Visualization. Case Study National Scientific Center. European HPC Benchmark Center Montpellier PSSC
HPC Architecture End to End Alexandre Chauvin Agenda HPC Software Stack Visualization National Scientific Center 2 Agenda HPC Software Stack Alexandre Chauvin Typical HPC Software Stack Externes LAN Typical
Deploying Microsoft Operations Manager with the BIG-IP system and icontrol
Deployment Guide Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Welcome to the BIG-IP LTM system -
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
TANDBERG MANAGEMENT SUITE 10.0
TANDBERG MANAGEMENT SUITE 10.0 Installation Manual Getting Started D12786 Rev.16 This document is not to be reproduced in whole or in part without permission in writing from: Contents INTRODUCTION 3 REQUIREMENTS
Installation and Configuration Guide for Windows and Linux
Installation and Configuration Guide for Windows and Linux vcenter Operations Manager 5.7 This document supports the version of each product listed and supports all subsequent versions until the document
Oracle Database Scalability in VMware ESX VMware ESX 3.5
Performance Study Oracle Database Scalability in VMware ESX VMware ESX 3.5 Database applications running on individual physical servers represent a large consolidation opportunity. However enterprises
Quick Start - NetApp File Archiver
Quick Start - NetApp File Archiver TABLE OF CONTENTS OVERVIEW SYSTEM REQUIREMENTS GETTING STARTED Upgrade Configuration Archive Recover Page 1 of 14 Overview - NetApp File Archiver Agent TABLE OF CONTENTS
Numerical Calculation of Laminar Flame Propagation with Parallelism Assignment ZERO, CS 267, UC Berkeley, Spring 2015
Numerical Calculation of Laminar Flame Propagation with Parallelism Assignment ZERO, CS 267, UC Berkeley, Spring 2015 Xian Shi 1 bio I am a second-year Ph.D. student from Combustion Analysis/Modeling Lab,
Deploying Windows Streaming Media Servers NLB Cluster and metasan
Deploying Windows Streaming Media Servers NLB Cluster and metasan Introduction...................................................... 2 Objectives.......................................................
UltraBac Documentation. UBDR Gold. Administrator Guide UBDR Gold v8.0
UltraBac Documentation UBDR Gold Bare Metal Disaster Recovery Administrator Guide UBDR Gold v8.0 UBDR Administrator Guide UBDR Gold v8.0 The software described in this guide is furnished under a license
13.1 Backup virtual machines running on VMware ESXi / ESX Server
13 Backup / Restore VMware Virtual Machines Tomahawk Pro This chapter describes how to backup and restore virtual machines running on VMware ESX, ESXi Server or VMware Server 2.0. 13.1 Backup virtual machines
HPC Wales Skills Academy Course Catalogue 2015
HPC Wales Skills Academy Course Catalogue 2015 Overview The HPC Wales Skills Academy provides a variety of courses and workshops aimed at building skills in High Performance Computing (HPC). Our courses
VMware vrealize Operations for Horizon Administration
VMware vrealize Operations for Horizon Administration vrealize Operations for Horizon 6.1 This document supports the version of each product listed and supports all subsequent versions until the document
INSTALL AND CONFIGURATION GUIDE. Atlas 5.1 for Microsoft Dynamics AX
INSTALL AND CONFIGURATION GUIDE Atlas 5.1 for Microsoft Dynamics AX COPYRIGHT NOTICE Copyright 2012, Globe Software Pty Ltd, All rights reserved. Trademarks Dynamics AX, IntelliMorph, and X++ have been
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
