Intel PerfMon Performance Monitoring Hardware

Size: px
Start display at page:

Download "Intel PerfMon Performance Monitoring Hardware"

Transcription

1 Intel PerfMon Performance Monitoring Hardware Overview

2 PerfMon Basics PerfMon is hardware throughout the silicon available through registers to tools to facilitate several system/application usages: compiler analysis workload characterization performance tuning and debug Two counting paradigms used Global/absolute count Sampling on overflow Previous incompatibility among processor families has limited its value First introduced on the Pentium processor Model-specific changes added to P6, Pentium 4, and Xeon processors Intel Core Solo processors were the first to support Architectural PerfMon Arch PerfMon ensures all base analysis capabilities across all Intel processors

3 Performance Tuning Methodology Top Down Iterative Approach is used at every level Top Down System Level Process/Memory Utilization Network Disk & IO Context Switches/Paging/System Calls Application Level Locks Heaps Parallelism / Execution Threads APIs Microarchitecture Level (PerfMon) Processor Stalls Branch Prediction Data and code alignment Glass Jaws PerfMon is hardware behind all microarchitecture level tuning/analysis vmstat APImon *Many customer & open source tools MS PerfMon Quantify xif NetMon VTune PTU

4 Intel Tools PerfMon based analysis tools methodology: prototype methodologies are released in free analysis tools followed by full production support in releases of Intel Vtune Analyzer! Prototype tools whatif.intel.com Available today PTU (Performance Tuning Utility) Much of the All New VTune Analyzer is based on PTU. xif (platform x Issue Finder microarchitecture focus) Beta is due out next week. Production is due early July internally. Production externally is due in September.

5 x Issue Finder (xif) Analyzer for Microarchitecture Tuning xif breaks down code into streams Each stream is analyzed against best case performance using Intel preset platform Issue List to prioritize tuning efforts to find: Locks & Waits Where is my program waiting, over using system calls? Front-End Issues Find the compiler opportunities Cache analysis & false sharing Memory/Data Stalling Branching issues More Code/Data Layout, 5

6 Market Leading Software Tools Optimize Multicore Performance Focus tool utilizing PerfMon Hardware

7 Intel s Piersol HE Profiler All New VTune Analyzer New User Interface Next Generation Collection Technology Integrated Threading Timeline Product Features Supported Environments Availability Intel s HE Studio Static Security Analysis, Dynamic Memory and Thread Analysis C/C++, Fortran and.net Windows, Linux, Microsoft Visual Studio 2005, 2008, 2010 Q4/2010

8 Intel s Piersol HE Profiler Performance Analysis System Windows* & Linux* GUI, Command line, Visual Studio integration No special compilers or recompile Setup Presets Simplify Setup Collect Multiple Data Collectors Analyze Multiple Views Simplify Analysis

9 Intel s Piersol HE Profiler Preset Experiments Simplify Setup Basic Presets Run these first Hotspot Where is my app spending time? Concurrency Where is my concurrency poor? Locks & Waits Where is my program waiting? Advanced Presets Get more detail Tuning Decision Tree Find the opportunities Cache analysis & false sharing Branching issues More Structural hazards, Custom Full Control All events Detailed micro-architectural analysis All parameters

10 Intel s Piersol HE Profiler Multiple Views Simplify Analysis Grid View Sort Tabular Data Display call tree and event data Color coded CPU utilization Timeline View Thread Transitions & CPU Utilization Source/Asm View See Data on Source Cross Selection & Filters Quickly find the answer you need See transitions See utilization Visualize Frames Line by line data ASM & source side by side Basic blocks Double click in grid to open source / asm Select in timeline to highlight functions in grid Select in source to highlight asm basic blocks Filter by module / process / function / frame

11 Intel s Piersol HE Profiler All New VTune Performance Analyzer What s New Presets for performance experiments Statistical call tree Threading timeline Cross-select and filter results Attach to a running process on Windows Better source/asm view w/ heat map Frame based analysis Event multiplexing Uncore support Linux* no EntireX*, no Eclipse* required Drivers not required unless using EBS Smart support for TBB & OpenMP* Much easier setup So What? Faster startup and faster run Visualize thread transitions, PMU data, Find the data you need faster Profile your app without restarting Easier navigation, skid compensation Games & graphics find the slow frame Transactions find slow transaction More data with fewer runs Processor wide metrics (e.g., bandwidth) Fewer conflicts. Lighter footprint. Root only required for driver install Display user names / source constructs

12 Compiler Professional Ed Preview Support for new and emerging OSes: Red Hat* EL 6 Ubuntu* 10 Support for new IDE versions, e.g. Microsoft Visual Studio* 2010 Eclipse* CDT 6.0 (C++ only) Support for new processors, e.g. Sandy Bridge (enhanced AVX support) Timeline Beta targeted for late May or June 2010 Product release targeted for Q Request beta access from ronald.w.green@intel.com Product names, features, and target dates subject to change

13 Intel s C++ and Fortran Compilers Performance Compilers Co Array Fortran What s New Fortran 2003 and 2008 support C++ 0x and C99 new features Latest processor support ( string instructions for SSE4.2 and AVX support) Cilk New array syntax for C/C++ Vectorization and auto parallelization improvements Loop profile Statement specific inlining pragmas Improved compile time Matrix multiply call to MKL So What? Data decomposition in Fortran syntax Support of the latest Fortran and C++ standards continues Get the best performance on the latest processors Simple keywords for task parallelism More readable/optimizable array operations Compiler can vectorize and parallelize more often giving increased performance Profile at the loop (not just function level) More control of inlining Lower cost of development Faster matrix multiplies without code change

14 Compiler Pro 12.0 New Fortran Features Support for Co-Array Fortran Shared memory support in Compiler Professional Edition Distributed & shared memory support in Cluster Tool suite Uses Intel MPI technology Can t mix with OpenMP or explicit MPI calls Other Fortran 2008 features DO CONCURRENT CONTIGUOUS I/O enhancements New constants in ISO_FORTRAN_ENV New intrinsic functions Fortran 2003 Support Complete type-bound procedures (GENERIC, OPERATOR,..) FINALization Product names, features, and target dates subject to change

15 Compiler Pro 12.0 New C++ Features More C++0x and C99 features E.g. rvalue references reduce temporary copies Maintain Microsoft Visual Studio* compatibility Optimized string intrinsics Using SSE4.2 instructions New array syntax for C/C++ More readable; Helps the compiler vectorize and parallelize Somewhat similar to Fortran90 concept <array base> [ <lower bound> : <length> [ : <stride>] ] E.g. a[0:s] += b[2:s:2] Incorporation of Cilk technology Simple keywords, especially for task parallelism Hyperobjects to facilitate thread-safe access Provide thread safe reduction operations Product names, features, and target dates subject to change 15

16 Compiler Pro Cilk Integration Feature Example Semantics Spawning a function call Synchronization statement Parallel for loop Hyperobjects x = cilk_spawn func(y); cilk_sync; cilk_for for (int i = 0; i < N; i++) { statement; } Product names, features, and target dates subject to change func executes asynchronously Wait for all children spawned inside the current function Loop iterations execute in parallel. Allow parallelization of reduction operation with minimal source changes Cilk semantics are simple and powerful * Disclaimer: Keyword spelling not finalized. 16

17 Compiler Pro 12.0 New Optimization Features Vectorization improvements, e.g. Loops with mixed data types Enhanced AVX support Vectorize or fail pragmas (pragma SIMD) Improved auto-parallelization Enhanced privatization analysis Declare functions whose calls can safely be parallelized Guided Auto-Parallelization (Advice for vectorization, parallelization and data transformation) Matrix multiply intrinsics may call into MKL More loop multi-versioning auto-parallelization memcpy generation Product names, features, and target dates subject to change 17

18 Compiler Pro 12.0 New Optimization Features Loop profile option Loop level profile data In addition to function level profile data already available profile-loop-report=2 Statement-specific inlining pragmas #pragma forceinline #pragma inline #pragma noinline 18

19 Compiler Pro 12.0 Other Features Security enhancements (Correctness HE plus compiler) Improved source checking, static memory checker Integrated with runtime checker and GUI in HE Studio (required) Math library enhancements Optional library for fast math functions, but at lower accuracy Optional library for consistent results on different processors Debugger enhancements STL object visualization AVX disassembly and register display Improved compile time 19

20 Compiler Pro 12.0 Other Features Debugger enhancements STL object visualization (including TBB debug support) AVX disassembly and register display Standardized new directory structure A generic, default fixed path to current compiler and libraries Example, Linux*: /opt/intel/compilerpro/bin No need to modify makefiles or build scripts with new versions Specific versions still installed side-by-side Generic paths use symbolic links to specific version Default is the last compiler installed (assumes versions are installed in order of release) Version-specific paths still available for explicit control of version Performance libraries follow similar scheme: Example, Linux*: /opt/intel/mkl/lib/intel64 20

21 Intel MKL Domains and Parallelism Where s the Parallelism? Domain SIMD Open MP MPI BLAS 1, 2, 3 X X FFTs X X LAPACK X X (dense LA solvers) PARDISO (sparse solver) (relies on BLAS 3) X VML/VSL X X ScaLAPACK X (cluster dense LA solvers) (hybrid) Cluster FFT Summary Statistics X X X X 21

22 Major New Features for Intel MKL in 2010 Extended AVX/Sandy Bridge support Many optimized kernels More C/C++ support CLAPACK with row major matrices Dynamic accuracy control for VML Added C-style 0-based index arrays in PARDISO New symmetric matrix-vector product BLAS routine in blocked storage Added Split Complex (real ) support for 2D/3D FFTs See Product names, features, and target dates subject to change 22

23 Major New Features for Intel MKL in 2010 cont. New SFMT19937 Random Number Generator with >=2x gain over current implementation (MT19937) Added ability for users to build custom dynamic libraries from MKL dynamic libraries Summary Statistics Library threaded analysis of multi-dimensional data sets Quantiles, moments, correlations 23

24 New Features for Intel IPP in 2010 Optimized for new processors Westmere and new AES instructions Sandy Bridge and AVX DMIP infrastructure and DMIP sample for 2D image processing CPU and multi-core JPEG-XR CODEC JPEG Sample Productization enhanced tests, testing infrastructure 24

25 New Features for Intel IPP in 2010 Windows Imaging Component (WIC) API wrapper for Image Codecs Data Compression Library support (bzip2, zlib, gzip) C String library (limited scope) DMIP DSL for Tighter Visual Studio integration Reduced IPP package size Deprecated obsolete CPU optimizations; Smart dispatcher Improved documentation 25

26 Intel Correctness and Performance Tools Beta

27 Correctness and Performance Tools Intel Cantua HE Checker Dynamic and static checking for memory and threading errors Intel Piersol HE Profiler Next generation performance analyzer Serial and parallel profilers Major changes to infrastructure of our analysis products GUI improvements Activity selection more in line with workflow More intuitive information displays Improved technology PIN replaces bistro Friendlier environment for network installs and execution Improved filtering/sorting utilities

28 Software Development Challenges Problem Statement Size and complexity of applications are greater, organizations facing higher application defects, vulnerabilities and costs Need: *CERT: U.S. Computer Emergency Readiness Team, and Carnegie Melon CyLab *NIST: National Institute of Standards & Technology : Square Project Results Reduce time, effort, and costs required to find and repair coding defects and vulnerabilities, prior to deploying software Increase developer productivity, reduce maintenance, and improve software quality Effective analysis tools to maximize code quality, reliability, and security, while minimizing cost and time Cost Factors Square Project Analysis: Reworking defects 40%-50% of total project effort* Using Software Automated Quality tools in development cycle, increases ROI by 12%-21%*

29 Solution Enterprise-class software analysis tools that can effectively find crucial code defects during the development phase Pinpoints critical memory and threading errors Enhances efficiencies, code reliability, quality, and security Improves developer productivity during the development and quality assurance phases, Reduced maintenance time, and increased ROI

30 Intel s Cantua HE Checker Standalone Correctness Tool Introducing Intel s Cantua HE Checker Memory and Thread Analysis Solution Ensures Code Quality and Reliability Enterprise-class solution Dynamic Memory Analysis Dynamic Thread Analysis Productivity Tools Beta starts week of April 5, 2010 Value At-A-Glance Built-in Dynamic tools for Serial and Parallel code Detects Memory Leaks and Memory corruption Invalid Memory Accesses Invalid Partial Memory Accesses Mismatched Memory Allocation/Deallocation Missing Allocations Uninitialized Memory Accesses & Partial Memory Accesses Detects Deadlocks and Data Races Intuitive GUI and CLI interface for a wide range of functions Dynamic Instrumentation Detailed error data analysis Time line visualization

31 Introducing Intel s HE Studio Minimizes risk, Maximizes Value Ensures Code Security, Reliability, Quality, Lowers TCO Intel s HE Studio Correctness Tool Enterprise-class Code analysis solution Dynamic Memory Analysis Dynamic Thread Analysis Static Security Analysis Detects wide range (>250) of errors and software security vulnerabilities Productivity Tools Value At A Glance Built-in Static and Dynamic tools for Serial and Parallel code Detects Memory Leaks and Memory corruption Invalid Memory Accesses Invalid Partial Memory Accesses Mismatched Memory Allocation/Deallocation Missing Allocations Uninitialized Memory Accesses & Partial Memory Accesses Detects Deadlocks and Data Races Buffer overruns Uninitialized variables and Bad pointers Unsafe library usage Arithmetic overflow OpenMP* errors, unchecked input, heap corruption, error prone usage Intuitive GUI and CLI interface for a wide range of functions Dynamic Instrumentation Detailed error data analysis and Time line visualization

32 Intel Correctness Tools Product Family Positioning Intel Thread Checker Enterprise/HPC Intel Parallel Inspector Mainstream Intel s Cantua HE Checker Enterprise/HPC Intel s HE Studio Enterprise/HPC Data race and deadlock detection C/C++ & Fortran Microsoft Visual Studio 2003, 2005, 2008 Windows XP, Vista Linux Memory Analysis - leaks and corruption Thread Analysis - data races, and deadlocks C/C++ Microsoft Visual Studio 2005, 2008, (next major release 2010) Memory analysis - leaks and corruption Thread analysis - data races, and deadlocks C/C++, Fortran and.net Windows, Linux, Microsoft Visual Studio 2005, 2008, 2010 Standalone package Static Security analysis Memory analysis - leaks and corruption Thread analysis - data races, and deadlocks C/C++, Fortran and.net Windows, Linux, Microsoft Visual Studio 2005, 2008, 2010

33 Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED AS IS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO ANY INTELLECTUAL PROPERTY RIGHTS IS GRANTED BY THIS DOCUMENT. INTEL ASSUMES NO LIABILITY WHATSOEVER AND INTEL DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY, RELATING TO THIS INFORMATION INCLUDING LIABILITY OR WARRANTIES RELATING TO FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR INFRINGEMENT OF ANY PATENT, COPYRIGHT OR OTHER INTELLECTUAL PROPERTY RIGHT. Performance tests and ratings are measured using specific computer systems and/or components and reflect the approximate performance of Intel products as measured by those tests. Any difference in system hardware or software design or configuration may affect actual performance. Buyers should consult other sources of information to evaluate the performance of systems or components they are considering purchasing. For more information on performance tests and on the performance of Intel products, reference Intel and the Intel logo are trademarks of Intel Corporation in the U.S. and other countries. *Other names and brands may be claimed as the property of others. Copyright Intel Corporation. 33

34

Using Intel VTune Amplifier XE and Inspector XE in.net environment

Using Intel VTune Amplifier XE and Inspector XE in.net environment Using Intel VTune Amplifier XE and Inspector XE in.net environment Levent Akyil Technical Computing, Analyzers and Runtime Software and Services group 1 Refresher - Intel VTune Amplifier XE Intel Inspector

More information

From Serial to Parallel Intel Software Products for HPC

From Serial to Parallel Intel Software Products for HPC From Serial to Parallel Intel Software Products for HPC Hubert Haberstock Technical Consulting Engineer *Other brands and names are the property of their respective owners. 1 Agenda 09:15 Saluto di benvenuto

More information

Memory & Thread Debugger

Memory & Thread Debugger Memory & Thread Debugger Here is What Will Be Covered Overview Memory/Thread analysis New Features Deep dive into debugger integrations Demo Call to action Intel Confidential 2 Analysis Tools for Diagnosis

More information

Using Intel VTune Amplifier XE for High Performance Computing

Using Intel VTune Amplifier XE for High Performance Computing Using Intel VTune Amplifier XE for High Performance Computing Vladimir Tsymbal Performance, Analysis and Threading Lab 1 The Majority of all HPC-Systems are Clusters Interconnect I/O I/O... I/O I/O Message

More information

Jackson Marusarz Software Technical Consulting Engineer

Jackson Marusarz Software Technical Consulting Engineer Jackson Marusarz Software Technical Consulting Engineer What Will Be Covered Overview Memory/Thread analysis New Features Deep dive into debugger integrations Demo Call to action 2 Analysis Tools for Diagnosis

More information

Eliminate Threading Errors to Improve Program Stability

Eliminate Threading Errors to Improve Program Stability Introduction This guide will illustrate how the thread checking capabilities in Intel Parallel Studio XE can be used to find crucial threading defects early in the development cycle. It provides detailed

More information

Overview of Intel Parallel Studio XE

Overview of Intel Parallel Studio XE Overview of Intel Parallel Studio XE Stephen Blair-Chappell 1 30-second pitch Intel Parallel Studio XE 2011 Advanced Application Performance What Is It? Suite of tools to develop high performing, robust

More information

A Simple Path to Parallelism with Intel Cilk Plus

A Simple Path to Parallelism with Intel Cilk Plus Introduction This introductory tutorial describes how to use Intel Cilk Plus to simplify making taking advantage of vectorization and threading parallelism in your code. It provides a brief description

More information

Eliminate Threading Errors to Improve Program Stability

Eliminate Threading Errors to Improve Program Stability Eliminate Threading Errors to Improve Program Stability This guide will illustrate how the thread checking capabilities in Parallel Studio can be used to find crucial threading defects early in the development

More information

Intel VTune Amplifier XE

Intel VTune Amplifier XE Intel VTune Amplifier XE Vladimir Tsymbal Performance, Analysis and Threading Lab 1 Agenda Intel VTune Amplifier XE Overview Features Data collectors Analysis types Key Concepts Collecting performance

More information

Graphics Performance Analyzer for Android

Graphics Performance Analyzer for Android Graphics Performance Analyzer for Android 1 What you will learn from this slide deck Detailed optimization workflow of Graphics Performance Analyzer Android* System Analysis Only Please see subsequent

More information

Eliminate Memory Errors to Improve Program Stability

Eliminate Memory Errors to Improve Program Stability Introduction INTEL PARALLEL STUDIO XE EVALUATION GUIDE This guide will illustrate how Intel Parallel Studio XE memory checking capabilities can find crucial memory defects early in the development cycle.

More information

Intel C++ Compiler Professional Edition 11.1 for Linux* In-Depth

Intel C++ Compiler Professional Edition 11.1 for Linux* In-Depth Intel C++ Compiler Professional Edition 11.1 for Linux* In-Depth Contents Intel C++ Compiler Professional Edition 11.1 for Linux*.... 3 Intel C++ Compiler Professional Edition Components:......... 3 s...3

More information

Intel Software Development Products Licensing & Programs Channel EMEA

Intel Software Development Products Licensing & Programs Channel EMEA Intel Software Development Products Licensing & Programs Channel EMEA Intel Software Development Products Advanced Performance Distributed Performance Intel Software Development Products Foundation of

More information

This guide will show you how to use Intel Inspector XE to identify and fix resource leak errors in your programs before they start causing problems.

This guide will show you how to use Intel Inspector XE to identify and fix resource leak errors in your programs before they start causing problems. Introduction A resource leak refers to a type of resource consumption in which the program cannot release resources it has acquired. Typically the result of a bug, common resource issues, such as memory

More information

Intel C++ Compiler Professional Edition 11.0 for Linux* In-Depth

Intel C++ Compiler Professional Edition 11.0 for Linux* In-Depth Intel C++ Compiler Professional Edition 11.0 for Linux* In-Depth Contents Intel C++ Compiler Professional Edition for Linux*...3 Intel C++ Compiler Professional Edition Components:...3 Features...3 New

More information

Intel C++ Compiler Professional Edition 11.1 for Mac OS* X. In-Depth

Intel C++ Compiler Professional Edition 11.1 for Mac OS* X. In-Depth Intel C++ Compiler Professional Edition 11.1 for Mac OS* X In-Depth Contents Intel C++ Compiler Professional Edition 11.1 for Mac OS* X. 3 Intel C++ Compiler Professional Edition 11.1 Components:...3 Features...3

More information

Installation Guide and Release Notes

Installation Guide and Release Notes Intel C++ Studio XE 2013 for Windows* Installation Guide and Release Notes Document number: 323805-003US 26 June 2013 Table of Contents 1 Introduction... 1 1.1 What s New... 2 1.1.1 Changes since Intel

More information

Intel Advisor XE Future Release Threading Design & Prototyping Vectorization Assistant

Intel Advisor XE Future Release Threading Design & Prototyping Vectorization Assistant Intel Advisor XE Future Release Threading Design & Prototyping Vectorization Assistant Parallel is the Path Forward Intel Xeon and Intel Xeon Phi Product Families are both going parallel Intel Xeon processor

More information

Intel Xeon Phi Coprocessor Performance Analysis

Intel Xeon Phi Coprocessor Performance Analysis Intel Xeon Phi Coprocessor Performance Analysis Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO

More information

What s New August 2015

What s New August 2015 What s New August 2015 Significant New Features New Directory Structure OpenMP* 4.1 Extensions C11 Standard Support More C++14 Standard Support Fortran 2008 Submodules and IMPURE ELEMENTAL Further C Interoperability

More information

Intel C++ Compiler Professional Edition 11.0 for Windows* In-Depth

Intel C++ Compiler Professional Edition 11.0 for Windows* In-Depth Intel C++ Compiler Professional Edition 11.0 for Windows* In-Depth Contents Intel C++ Compiler Professional Edition for Windows*..... 3 Intel C++ Compiler Professional Edition At A Glance...3 Intel C++

More information

Microarchitectural Analysis with Intel VTune Amplifier XE

Microarchitectural Analysis with Intel VTune Amplifier XE Microarchitectural Analysis with Intel VTune Amplifier XE Michael Klemm Software & Services Group Developer Relations Division 1 Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION

More information

Using Intel Inspector XE 2011 with Fortran Applications

Using Intel Inspector XE 2011 with Fortran Applications Using Intel Inspector XE 2011 with Fortran Applications Jackson Marusarz Intel Corporation Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

Installation Guide and Release Notes

Installation Guide and Release Notes Intel Parallel Studio XE 2013 for Linux* Installation Guide and Release Notes Document number: 323804-003US 10 March 2013 Table of Contents 1 Introduction... 1 1.1 What s New... 1 1.1.1 Changes since Intel

More information

Intel Math Kernel Library 10.3

Intel Math Kernel Library 10.3 Intel Math Kernel Library 10.3 Product Brief Intel Math Kernel Library 10.3 The Flagship High Performance Computing Math Library for Windows*, Linux*, and Mac OS* X Intel Math Kernel Library (Intel MKL)

More information

Intel Parallel Studio XE 2015 Composer Edition for Linux* Installation Guide and Release Notes

Intel Parallel Studio XE 2015 Composer Edition for Linux* Installation Guide and Release Notes Intel Parallel Studio XE 2015 Composer Edition for Linux* Installation Guide and Release Notes 23 October 2014 Table of Contents 1 Introduction... 1 1.1 Product Contents... 2 1.2 Intel Debugger (IDB) is

More information

Efficiently Introduce Threading using Intel TBB

Efficiently Introduce Threading using Intel TBB Introduction This guide will illustrate how to efficiently introduce threading using Intel Threading Building Blocks (Intel TBB), part of Intel Parallel Studio XE. It is a widely used, award-winning C++

More information

Intel Parallel Studio XE 2011 for Windows* Installation Guide and Release Notes

Intel Parallel Studio XE 2011 for Windows* Installation Guide and Release Notes Intel Parallel Studio XE 2011 for Windows* Installation Guide and Release Notes Document number: 323803-001US 4 May 2011 Table of Contents 1 Introduction... 1 1.1 What s New... 2 1.2 Product Contents...

More information

Eliminate Memory Errors to Improve Program Stability

Eliminate Memory Errors to Improve Program Stability Eliminate Memory Errors to Improve Program Stability This guide will illustrate how Parallel Studio memory checking capabilities can find crucial memory defects early in the development cycle. It provides

More information

Intel Software Development Products for High Performance Computing and Parallel Programming

Intel Software Development Products for High Performance Computing and Parallel Programming Intel Software Development Products for High Performance Computing and Parallel Programming Multicore development tools with extensions to many-core Notices INFORMATION IN THIS DOCUMENT IS PROVIDED IN

More information

Intel Parallel Studio XE 2015

Intel Parallel Studio XE 2015 2015 Create faster code faster with this comprehensive parallel software development suite. Faster code: Boost applications performance that scales on today s and next-gen processors Create code faster:

More information

Intel Parallel Studio XE 2011 SP1 for Linux* Installation Guide and Release Notes

Intel Parallel Studio XE 2011 SP1 for Linux* Installation Guide and Release Notes Intel Parallel Studio XE 2011 SP1 for Linux* Installation Guide and Release Notes Document number: 323804-002US 21 June 2012 Table of Contents 1 Introduction... 1 1.1 What s New... 1 1.2 Product Contents...

More information

Performance Profiler. Klaus-Dieter Oertel Intel-SSG-DPD IT4I HPC Workshop, Ostrava,

Performance Profiler. Klaus-Dieter Oertel Intel-SSG-DPD IT4I HPC Workshop, Ostrava, Performance Profiler Klaus-Dieter Oertel Intel-SSG-DPD IT4I HPC Workshop, Ostrava, 08-09-2016 Faster, Scalable Code, Faster Intel VTune Amplifier Performance Profiler Get Faster Code Faster With Accurate

More information

Intel Parallel Studio 2011

Intel Parallel Studio 2011 THE ULTIMATE ALL-IN-ONE PERFORMANCE TOOLKIT Studio 2011 Product Brief Studio 2011 Accelerate Development of Reliable, High-Performance Serial and Threaded Applications for Multicore Studio 2011 is a comprehensive

More information

Intel Visual Fortran Compiler Professional Edition 11.0 for Windows* In-Depth

Intel Visual Fortran Compiler Professional Edition 11.0 for Windows* In-Depth Intel Visual Fortran Compiler Professional Edition 11.0 for Windows* In-Depth Contents Intel Visual Fortran Compiler Professional Edition for Windows*........................ 3 Features...3 New in This

More information

Intel VTune Performance Analyzer 9.1 for Windows* In-Depth

Intel VTune Performance Analyzer 9.1 for Windows* In-Depth Intel VTune Performance Analyzer 9.1 for Windows* In-Depth Contents Deliver Faster Code...................................... 3 Optimize Multicore Performance...3 Highlights...............................................

More information

Agenda. Optimization Notice Copyright 2017, Intel Corporation. All rights reserved. *Other names and brands may be claimed as the property of others.

Agenda. Optimization Notice Copyright 2017, Intel Corporation. All rights reserved. *Other names and brands may be claimed as the property of others. Agenda VTune Amplifier XE OpenMP* Analysis: answering on customers questions about performance in the same language a program was written in Concepts, metrics and technology inside VTune Amplifier XE OpenMP

More information

Intel Parallel Studio XE 2011 for Linux* Installation Guide and Release Notes

Intel Parallel Studio XE 2011 for Linux* Installation Guide and Release Notes Intel Parallel Studio XE 2011 for Linux* Installation Guide and Release Notes Document number: 323804-001US 8 October 2010 Table of Contents 1 Introduction... 1 1.1 Product Contents... 1 1.2 What s New...

More information

Intel Many Integrated Core (MIC) Architecture

Intel Many Integrated Core (MIC) Architecture Intel Many Integrated Core (MIC) Architecture Karl Solchenbach Director European Exascale Labs BMW2011, November 3, 2011 1 Notice and Disclaimers Notice: This document contains information on products

More information

Getting Started with Intel SDK for OpenCL Applications

Getting Started with Intel SDK for OpenCL Applications Getting Started with Intel SDK for OpenCL Applications Webinar #1 in the Three-part OpenCL Webinar Series July 11, 2012 Register Now for All Webinars in the Series Welcome to Getting Started with Intel

More information

Oracle Developer Studio 12.6

Oracle Developer Studio 12.6 Oracle Developer Studio 12.6 Oracle Developer Studio is the #1 development environment for building C, C++, Fortran and Java applications for Oracle Solaris and Linux operating systems running on premises

More information

Optimizing the operations with sparse matrices on Intel architecture

Optimizing the operations with sparse matrices on Intel architecture Optimizing the operations with sparse matrices on Intel architecture Gladkikh V. S. victor.s.gladkikh@intel.com Intel Xeon, Intel Itanium are trademarks of Intel Corporation in the U.S. and other countries.

More information

Getting Started Tutorial: Analyzing Memory Errors

Getting Started Tutorial: Analyzing Memory Errors Getting Started Tutorial: Analyzing Memory Errors Intel Inspector XE 2011 for Linux* OS Fortran Sample Application Code Document Number: 326596-001 World Wide Web: http://developer.intel.com Legal Information

More information

More performance options

More performance options More performance options OpenCL, streaming media, and native coding options with INDE April 8, 2014 2014, Intel Corporation. All rights reserved. Intel, the Intel logo, Intel Inside, Intel Xeon, and Intel

More information

Simplified and Effective Serial and Parallel Performance Optimization

Simplified and Effective Serial and Parallel Performance Optimization HPC Code Modernization Workshop at LRZ Simplified and Effective Serial and Parallel Performance Optimization Performance tuning Using Intel VTune Performance Profiler Performance Tuning Methodology Goal:

More information

Parallel Programming Features in the Fortran Standard. Steve Lionel 12/4/2012

Parallel Programming Features in the Fortran Standard. Steve Lionel 12/4/2012 Parallel Programming Features in the Fortran Standard Steve Lionel 12/4/2012 Agenda Overview of popular parallelism methodologies FORALL a look back DO CONCURRENT Coarrays Fortran 2015 Q+A 12/5/2012 2

More information

Intel Advisor XE. Vectorization Optimization. Optimization Notice

Intel Advisor XE. Vectorization Optimization. Optimization Notice Intel Advisor XE Vectorization Optimization 1 Performance is a Proven Game Changer It is driving disruptive change in multiple industries Protecting buildings from extreme events Sophisticated mechanics

More information

Intel Thread Checker 3.1 for Windows* Release Notes

Intel Thread Checker 3.1 for Windows* Release Notes Page 1 of 6 Intel Thread Checker 3.1 for Windows* Release Notes Contents Overview Product Contents What's New System Requirements Known Issues and Limitations Technical Support Related Products Overview

More information

LIBXSMM Library for small matrix multiplications. Intel High Performance and Throughput Computing (EMEA) Hans Pabst, March 12 th 2015

LIBXSMM Library for small matrix multiplications. Intel High Performance and Throughput Computing (EMEA) Hans Pabst, March 12 th 2015 LIBXSMM Library for small matrix multiplications. Intel High Performance and Throughput Computing (EMEA) Hans Pabst, March 12 th 2015 Abstract Library for small matrix-matrix multiplications targeting

More information

Getting Started Tutorial: Analyzing Threading Errors

Getting Started Tutorial: Analyzing Threading Errors Getting Started Tutorial: Analyzing Threading Errors Intel Inspector XE 2011 for Linux* OS Fortran Sample Application Code Document Number: 326600-001 World Wide Web: http://developer.intel.com Legal Information

More information

C Language Constructs for Parallel Programming

C Language Constructs for Parallel Programming C Language Constructs for Parallel Programming Robert Geva 5/17/13 1 Cilk Plus Parallel tasks Easy to learn: 3 keywords Tasks, not threads Load balancing Hyper Objects Array notations Elemental Functions

More information

Installation Guide and Release Notes

Installation Guide and Release Notes Installation Guide and Release Notes Document number: 321604-001US 19 October 2009 Table of Contents 1 Introduction... 1 1.1 Product Contents... 1 1.2 System Requirements... 2 1.3 Documentation... 3 1.4

More information

Achieving High Performance. Jim Cownie Principal Engineer SSG/DPD/TCAR Multicore Challenge 2013

Achieving High Performance. Jim Cownie Principal Engineer SSG/DPD/TCAR Multicore Challenge 2013 Achieving High Performance Jim Cownie Principal Engineer SSG/DPD/TCAR Multicore Challenge 2013 Does Instruction Set Matter? We find that ARM and x86 processors are simply engineering design points optimized

More information

Sergey Maidanov. Software Engineering Manager for Intel Distribution for Python*

Sergey Maidanov. Software Engineering Manager for Intel Distribution for Python* Sergey Maidanov Software Engineering Manager for Intel Distribution for Python* Introduction Python is among the most popular programming languages Especially for prototyping But very limited use in production

More information

Installation Guide and Release Notes

Installation Guide and Release Notes Installation Guide and Release Notes Document number: 321418-001US 12 October 2009 Table of Contents 1 Introduction... 2 1.1 Change History... 2 1.2 Product Contents... 3 1.3 System Requirements... 3 1.4

More information

Intel vpro Technology Virtual Seminar 2010

Intel vpro Technology Virtual Seminar 2010 Intel Software Network Connecting Developers. Building Community. Intel vpro Technology Virtual Seminar 2010 Getting to know Intel Active Management Technology 6.0 Fast and Free Software Assessment Tools

More information

Intel Xeon Phi Coprocessor. Technical Resources. Intel Xeon Phi Coprocessor Workshop Pawsey Centre & CSIRO, Aug Intel Xeon Phi Coprocessor

Intel Xeon Phi Coprocessor. Technical Resources. Intel Xeon Phi Coprocessor Workshop Pawsey Centre & CSIRO, Aug Intel Xeon Phi Coprocessor Technical Resources Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO ANY INTELLECTUAL PROPETY RIGHTS

More information

Intel Parallel Amplifier Sample Code Guide

Intel Parallel Amplifier Sample Code Guide The analyzes the performance of your application and provides information on the performance bottlenecks in your code. It enables you to focus your tuning efforts on the most critical sections of your

More information

Bitonic Sorting Intel OpenCL SDK Sample Documentation

Bitonic Sorting Intel OpenCL SDK Sample Documentation Intel OpenCL SDK Sample Documentation Document Number: 325262-002US Legal Information INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL

More information

Intel Math Kernel Library (Intel MKL) BLAS. Victor Kostin Intel MKL Dense Solvers team manager

Intel Math Kernel Library (Intel MKL) BLAS. Victor Kostin Intel MKL Dense Solvers team manager Intel Math Kernel Library (Intel MKL) BLAS Victor Kostin Intel MKL Dense Solvers team manager Intel MKL BLAS/Sparse BLAS Original ( dense ) BLAS available from www.netlib.org Additionally Intel MKL provides

More information

Kevin O Leary, Intel Technical Consulting Engineer

Kevin O Leary, Intel Technical Consulting Engineer Kevin O Leary, Intel Technical Consulting Engineer Moore s Law Is Going Strong Hardware performance continues to grow exponentially We think we can continue Moore's Law for at least another 10 years."

More information

Crosstalk between VMs. Alexander Komarov, Application Engineer Software and Services Group Developer Relations Division EMEA

Crosstalk between VMs. Alexander Komarov, Application Engineer Software and Services Group Developer Relations Division EMEA Crosstalk between VMs Alexander Komarov, Application Engineer Software and Services Group Developer Relations Division EMEA 2 September 2015 Legal Disclaimer & Optimization Notice INFORMATION IN THIS DOCUMENT

More information

PARDISO - PARallel DIrect SOlver to solve SLAE on shared memory architectures

PARDISO - PARallel DIrect SOlver to solve SLAE on shared memory architectures PARDISO - PARallel DIrect SOlver to solve SLAE on shared memory architectures Solovev S. A, Pudov S.G sergey.a.solovev@intel.com, sergey.g.pudov@intel.com Intel Xeon, Intel Core 2 Duo are trademarks of

More information

Intel Performance Libraries

Intel Performance Libraries Intel Performance Libraries Powerful Mathematical Library Intel Math Kernel Library (Intel MKL) Energy Science & Research Engineering Design Financial Analytics Signal Processing Digital Content Creation

More information

Intel VTune Amplifier XE. Dr. Michael Klemm Software and Services Group Developer Relations Division

Intel VTune Amplifier XE. Dr. Michael Klemm Software and Services Group Developer Relations Division Intel VTune Amplifier XE Dr. Michael Klemm Software and Services Group Developer Relations Division Legal Disclaimer & Optimization Notice INFORMATION IN THIS DOCUMENT IS PROVIDED AS IS. NO LICENSE, EXPRESS

More information

Intel Integrated Native Developer Experience 2015 Build Edition for OS X* Installation Guide and Release Notes

Intel Integrated Native Developer Experience 2015 Build Edition for OS X* Installation Guide and Release Notes Intel Integrated Native Developer Experience 2015 Build Edition for OS X* Installation Guide and Release Notes 22 January 2015 Table of Contents 1 Introduction... 2 1.1 Change History... 2 1.1.1 Changes

More information

Intel Array Building Blocks

Intel Array Building Blocks Intel Array Building Blocks Productivity, Performance, and Portability with Intel Parallel Building Blocks Intel SW Products Workshop 2010 CERN openlab 11/29/2010 1 Agenda Legal Information Vision Call

More information

Revealing the performance aspects in your code

Revealing the performance aspects in your code Revealing the performance aspects in your code 1 Three corner stones of HPC The parallelism can be exploited at three levels: message passing, fork/join, SIMD Hyperthreading is not quite threading A popular

More information

Klaus-Dieter Oertel, May 28 th 2013 Software and Services Group Intel Corporation

Klaus-Dieter Oertel, May 28 th 2013 Software and Services Group Intel Corporation S c i c o m P 2 0 1 3 T u t o r i a l Intel Xeon Phi Product Family Programming Tools Klaus-Dieter Oertel, May 28 th 2013 Software and Services Group Intel Corporation Agenda Intel Parallel Studio XE 2013

More information

Intel Math Kernel Library (Intel MKL) Sparse Solvers. Alexander Kalinkin Intel MKL developer, Victor Kostin Intel MKL Dense Solvers team manager

Intel Math Kernel Library (Intel MKL) Sparse Solvers. Alexander Kalinkin Intel MKL developer, Victor Kostin Intel MKL Dense Solvers team manager Intel Math Kernel Library (Intel MKL) Sparse Solvers Alexander Kalinkin Intel MKL developer, Victor Kostin Intel MKL Dense Solvers team manager Copyright 3, Intel Corporation. All rights reserved. Sparse

More information

Intel Cluster Checker 3.0 webinar

Intel Cluster Checker 3.0 webinar Intel Cluster Checker 3.0 webinar June 3, 2015 Christopher Heller Technical Consulting Engineer Q2, 2015 1 Introduction Intel Cluster Checker 3.0 is a systems tool for Linux high performance compute clusters

More information

Munara Tolubaeva Technical Consulting Engineer. 3D XPoint is a trademark of Intel Corporation in the U.S. and/or other countries.

Munara Tolubaeva Technical Consulting Engineer. 3D XPoint is a trademark of Intel Corporation in the U.S. and/or other countries. Munara Tolubaeva Technical Consulting Engineer 3D XPoint is a trademark of Intel Corporation in the U.S. and/or other countries. notices and disclaimers Intel technologies features and benefits depend

More information

Intel tools for High Performance Python 데이터분석및기타기능을위한고성능 Python

Intel tools for High Performance Python 데이터분석및기타기능을위한고성능 Python Intel tools for High Performance Python 데이터분석및기타기능을위한고성능 Python Python Landscape Adoption of Python continues to grow among domain specialists and developers for its productivity benefits Challenge#1:

More information

Bitonic Sorting. Intel SDK for OpenCL* Applications Sample Documentation. Copyright Intel Corporation. All Rights Reserved

Bitonic Sorting. Intel SDK for OpenCL* Applications Sample Documentation. Copyright Intel Corporation. All Rights Reserved Intel SDK for OpenCL* Applications Sample Documentation Copyright 2010 2012 Intel Corporation All Rights Reserved Document Number: 325262-002US Revision: 1.3 World Wide Web: http://www.intel.com Document

More information

What s P. Thierry

What s P. Thierry What s new@intel P. Thierry Principal Engineer, Intel Corp philippe.thierry@intel.com CPU trend Memory update Software Characterization in 30 mn 10 000 feet view CPU : Range of few TF/s and

More information

OpenMP * 4 Support in Clang * / LLVM * Andrey Bokhanko, Intel

OpenMP * 4 Support in Clang * / LLVM * Andrey Bokhanko, Intel OpenMP * 4 Support in Clang * / LLVM * Andrey Bokhanko, Intel Clang * : An Excellent C++ Compiler LLVM * : Collection of modular and reusable compiler and toolchain technologies Created by Chris Lattner

More information

Installation Guide and Release Notes

Installation Guide and Release Notes Installation Guide and Release Notes Document number: 321604-002US 9 July 2010 Table of Contents 1 Introduction... 1 1.1 Product Contents... 2 1.2 What s New... 2 1.3 System Requirements... 2 1.4 Documentation...

More information

Intel Threading Tools

Intel Threading Tools Intel Threading Tools Paul Petersen, Intel -1- INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. EXCEPT AS PROVIDED IN INTEL'S TERMS AND CONDITIONS OF SALE FOR SUCH PRODUCTS,

More information

David R. Mackay, Ph.D. Libraries play an important role in threading software to run faster on Intel multi-core platforms.

David R. Mackay, Ph.D. Libraries play an important role in threading software to run faster on Intel multi-core platforms. Whitepaper Introduction A Library Based Approach to Threading for Performance David R. Mackay, Ph.D. Libraries play an important role in threading software to run faster on Intel multi-core platforms.

More information

Tutorial: Finding Hotspots with Intel VTune Amplifier - Linux* Intel VTune Amplifier Legal Information

Tutorial: Finding Hotspots with Intel VTune Amplifier - Linux* Intel VTune Amplifier Legal Information Tutorial: Finding Hotspots with Intel VTune Amplifier - Linux* Intel VTune Amplifier Legal Information Tutorial: Finding Hotspots with Intel VTune Amplifier - Linux* Contents Legal Information... 3 Chapter

More information

Maximize Performance and Scalability of RADIOSS* Structural Analysis Software on Intel Xeon Processor E7 v2 Family-Based Platforms

Maximize Performance and Scalability of RADIOSS* Structural Analysis Software on Intel Xeon Processor E7 v2 Family-Based Platforms Maximize Performance and Scalability of RADIOSS* Structural Analysis Software on Family-Based Platforms Executive Summary Complex simulations of structural and systems performance, such as car crash simulations,

More information

Intel Integrated Native Developer Experience 2015 Build Edition for OS X* Installation Guide and Release Notes

Intel Integrated Native Developer Experience 2015 Build Edition for OS X* Installation Guide and Release Notes Intel Integrated Native Developer Experience 2015 Build Edition for OS X* Installation Guide and Release Notes 24 July 2014 Table of Contents 1 Introduction... 2 1.1 Product Contents... 2 1.2 System Requirements...

More information

Expressing and Analyzing Dependencies in your C++ Application

Expressing and Analyzing Dependencies in your C++ Application Expressing and Analyzing Dependencies in your C++ Application Pablo Reble, Software Engineer Developer Products Division Software and Services Group, Intel Agenda TBB and Flow Graph extensions Composable

More information

Code modernization and optimization for improved performance using the OpenMP* programming model for threading and SIMD parallelism.

Code modernization and optimization for improved performance using the OpenMP* programming model for threading and SIMD parallelism. Code modernization and optimization for improved performance using the OpenMP* programming model for threading and SIMD parallelism. Parallel + SIMD is the Path Forward Intel Xeon and Intel Xeon Phi Product

More information

Contributors: Surabhi Jain, Gengbin Zheng, Maria Garzaran, Jim Cownie, Taru Doodi, and Terry L. Wilmarth

Contributors: Surabhi Jain, Gengbin Zheng, Maria Garzaran, Jim Cownie, Taru Doodi, and Terry L. Wilmarth Presenter: Surabhi Jain Contributors: Surabhi Jain, Gengbin Zheng, Maria Garzaran, Jim Cownie, Taru Doodi, and Terry L. Wilmarth May 25, 2018 ROME workshop (in conjunction with IPDPS 2018), Vancouver,

More information

Intel C++ Compiler User's Guide With Support For The Streaming Simd Extensions 2

Intel C++ Compiler User's Guide With Support For The Streaming Simd Extensions 2 Intel C++ Compiler User's Guide With Support For The Streaming Simd Extensions 2 This release of the Intel C++ Compiler 16.0 product is a Pre-Release, and as such is 64 architecture processor supporting

More information

Alexei Katranov. IWOCL '16, April 21, 2016, Vienna, Austria

Alexei Katranov. IWOCL '16, April 21, 2016, Vienna, Austria Alexei Katranov IWOCL '16, April 21, 2016, Vienna, Austria Hardware: customization, integration, heterogeneity Intel Processor Graphics CPU CPU CPU CPU Multicore CPU + integrated units for graphics, media

More information

Cilk Plus GETTING STARTED

Cilk Plus GETTING STARTED Cilk Plus GETTING STARTED Overview Fundamentals of Cilk Plus Hyperobjects Compiler Support Case Study 3/17/2015 CHRIS SZALWINSKI 2 Fundamentals of Cilk Plus Terminology Execution Model Language Extensions

More information

Visualizing and Finding Optimization Opportunities with Intel Advisor Roofline feature. Intel Software Developer Conference London, 2017

Visualizing and Finding Optimization Opportunities with Intel Advisor Roofline feature. Intel Software Developer Conference London, 2017 Visualizing and Finding Optimization Opportunities with Intel Advisor Roofline feature Intel Software Developer Conference London, 2017 Agenda Vectorization is becoming more and more important What is

More information

Achieving Peak Performance on Intel Hardware. Intel Software Developer Conference London, 2017

Achieving Peak Performance on Intel Hardware. Intel Software Developer Conference London, 2017 Achieving Peak Performance on Intel Hardware Intel Software Developer Conference London, 2017 Welcome Aims for the day You understand some of the critical features of Intel processors and other hardware

More information

Getting Started Tutorial: Analyzing Threading Errors

Getting Started Tutorial: Analyzing Threading Errors Getting Started Tutorial: Analyzing Threading Errors Intel Inspector XE 2011 for Windows* OS C++ Sample Application Code Document Number: 326597-001 World Wide Web: http://developer.intel.com Legal Information

More information

Tutorial: Analyzing MPI Applications. Intel Trace Analyzer and Collector Intel VTune Amplifier XE

Tutorial: Analyzing MPI Applications. Intel Trace Analyzer and Collector Intel VTune Amplifier XE Tutorial: Analyzing MPI Applications Intel Trace Analyzer and Collector Intel VTune Amplifier XE Contents Legal Information... 3 1. Overview... 4 1.1. Prerequisites... 5 1.1.1. Required Software... 5 1.1.2.

More information

Bei Wang, Dmitry Prohorov and Carlos Rosales

Bei Wang, Dmitry Prohorov and Carlos Rosales Bei Wang, Dmitry Prohorov and Carlos Rosales Aspects of Application Performance What are the Aspects of Performance Intel Hardware Features Omni-Path Architecture MCDRAM 3D XPoint Many-core Xeon Phi AVX-512

More information

Jim Cownie, Johnny Peyton with help from Nitya Hariharan and Doug Jacobsen

Jim Cownie, Johnny Peyton with help from Nitya Hariharan and Doug Jacobsen Jim Cownie, Johnny Peyton with help from Nitya Hariharan and Doug Jacobsen Features We Discuss Synchronization (lock) hints The nonmonotonic:dynamic schedule Both Were new in OpenMP 4.5 May have slipped

More information

Vectorization Advisor: getting started

Vectorization Advisor: getting started Vectorization Advisor: getting started Before you analyze Run GUI or Command Line Set-up environment Linux: source /advixe-vars.sh Windows: \advixe-vars.bat Run GUI or Command

More information

Ready For Future Computing? Levent Akyil Software and Services Group

Ready For Future Computing? Levent Akyil Software and Services Group Ready For Future Computing? Levent Akyil Software and Services Group Intel s Vision This decade we will create and extend computing technology to connect and enrich the lives of every person on earth 2

More information

Intel Parallel Studio XE 2018

Intel Parallel Studio XE 2018 Intel Parallel Studio XE 2018 Installation Guide for Linux* OS 11 September 2017 Contents 1 Introduction...2 1.1 Licensing Information...2 2 Prerequisites...2 2.1 Notes for Cluster Installation...3 2.1.1

More information

MICHAL MROZEK ZBIGNIEW ZDANOWICZ

MICHAL MROZEK ZBIGNIEW ZDANOWICZ MICHAL MROZEK ZBIGNIEW ZDANOWICZ Legal Notices and Disclaimers INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO ANY

More information

Sample for OpenCL* and DirectX* Video Acceleration Surface Sharing

Sample for OpenCL* and DirectX* Video Acceleration Surface Sharing Sample for OpenCL* and DirectX* Video Acceleration Surface Sharing User s Guide Intel SDK for OpenCL* Applications Sample Documentation Copyright 2010 2013 Intel Corporation All Rights Reserved Document

More information