HETEROGENEOUS SYSTEM ARCHITECTURE: FROM THE HPC USAGE PERSPECTIVE

Size: px
Start display at page:

Download "HETEROGENEOUS SYSTEM ARCHITECTURE: FROM THE HPC USAGE PERSPECTIVE"

Transcription

1 HETEROGENEOUS SYSTEM ARCHITECTURE: FROM THE HPC USAGE PERSPECTIVE Haibo Xie, Ph.D. Chief HSA Evangelist AMD China

2 AGENDA: GPGPU in HPC, what are the challenges Introducing Heterogeneous System Architecture (HSA) How HSA benefits GPGPU in HPC usage Taking HSA to the Industry

3 GPU IN HPC WHAT ARE THE CHALLENGES? Massively Parallel Processing? Finding Parallelism? SIMDs/Vector-Arrays? Bringing Data to Computation? Refine the algorithm? 3 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

4 --

5 THE PROBLEM WHY IS IT DIFFICULT? Algo., programming Hardware, tool-chain Not every HPC domain-science programmer could use GPUs Efforts on tailoring algo. Even the size of the problem Code reuse remains an issues Data transfer cost Distributed memory space between CPU and GPU embarrassed (legacy) programming models High software runtime overhead Special purpose devices that lacks the necessary tools 5 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

6 BUT Several efforts still targeted at utilizing GPUs in HPC Hybrid computing became a common term, heterogeneity is now becoming a norm Getting performance is still a problem in general purpose HPC US Department of Energy's 20 MW expectation ExaScale system is probably going to end up being a optimization problem to solve 6 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

7 RE-THINKING CPU+dGPU 7 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

8 CHANGING THE THINKING 8 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

9 INTRODUCING HETEROGENEOUS SYSTEM ARCHITECTURE Brings All the Processors in a System into Unified Coherent Memory 9 HPC China 2012 HSA: from the HPC usage perspective Oct, 30, 2012

10 INTRODUCING HETEROGENEOUS SYSTEM ARCHITECTURE Brings All the Processors in a System into Unified Coherent Memory POWER EFFICIENT INDUSTRY SUPPORT EASY TO PROGRAM OPEN STANDARD FUTURE LOOKING ESTABLISHED TECHNOLOGY FOUNDATION 10 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

11 HSA APU FEATURE ROADMAP Physical Integration Optimized Platforms Architectural Integration System Integration Integrate CPU & GPU in silicon GPU Compute C++ support Unified Address Space for CPU and GPU GPU compute context switch Unified Memory Controller User mode scheduling GPU uses pageable system memory via CPU pointers GPU graphics pre-emption Quality of Service Common Manufacturing Technology Bi-Directional Power Mgmt between CPU and GPU Fully coherent memory between CPU & GPU Extend to Discrete GPU 11 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

12 HSA COMPLIANT FEATURES Optimized Platforms GPU Compute C++ support Support OpenCL C++ directions and Microsoft s upcoming C++ AMP language. This eases programming of both CPU and GPU working together to process parallel workloads. User mode scheduling Drastically reduces the time to dispatch work, requiring no OS kernel transitions or services, minimizing software driver overhead Bi-Directional Power Mgmt between CPU and GPU Enables power sloshing where CPU and GPU are able to dynamically lower or raise their power and performance, depending on the activity and which one is more suited to the task at hand. 12 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

13 HSA COMPLIANT FEATURES Architectural Integration Unified Address Space for CPU and GPU GPU uses pageable system memory via CPU pointers Fully coherent memory between CPU & GPU The unified address space provides ease of programming for developers to create applications. For HSA platforms, a pointer is really a pointer and does not require separate memory pointers for CPU and GPU. The GPU can take advantage of the CPU virtual address space. With pageable system memory, the GPU can reference the data directly in the CPU domain. In prior architectures, data had to be copied between the two spaces or page-locked prior to use. And, NO GPU memory size limitation! Allows for data to be cached by both the CPU and the GPU, and referenced by either. In all previous generations, GPU caches had to be flushed at command buffer boundaries prior to CPU access. And unlike discrete GPUs, the CPU and GPU in an APU share a high speed coherent bus. 13 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

14 FULL HSA FEATURES System Integration GPU compute context switch GPU tasks can be context switched, making the GPU a multi-tasker. Context switching means faster application, graphics and compute interoperation. Users get a snappier, more interactive experience. GPU graphics preemption As more applications enjoy the performance and features of the GPU, it is important that interactivity of the system is good. This means low latency access to the GPU from any process. Quality of service With context switching and pre-emption, time criticality is added to the tasks assigned to the processors. Direct access to the hardware for multi-users or multiple applications are either prioritized or equalized. 14 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

15 HSA SOLUTION STACK System components: Compliant heterogeneous computing hardware A software compilation stack A user - space runtime system Kernel - space system components Application SW Application Domain Specific Libs (Bolt, OpenCV, many others) Overall Vision: Make GPU easily accessible Support mainstream languages, expandable to domain specific languages Complete GPU tool-chain, Programming & debugging & profiling like CPU does Make compute offload efficient Direct path to GPU (avoid Graphics overhead) Eliminate memory copy, Low-latency dispatch Make it ubiquitous Drive HSA as a standard through HSA Foundation Differentiated HW CPU(s) GPU(s) Open Source key components HSA Software Drivers HSA Runtime HSAIL HSA Finalizer GPU ISA OpenCL Runtime DirectX Runtime Legacy Drivers Other Runtime Other Accelerators 15 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

16 Driver Stack HSA Software Stack Apps Apps Apps Apps Apps Apps Apps Apps Apps Apps Apps Apps Domain Libraries HSA Domain Libraries OpenCL 1.x, DX Runtimes, User Mode Drivers Graphics Kernel Mode Driver HSA JIT Task Queuing Libraries HSA Runtime HSA Kernel Mode Driver Hardware - APUs, CPUs, GPUs AMD user mode component AMD kernel mode component All others contributed by third parties or AMD 16 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

17 HETEROGENEOUS COMPUTE DISPATCH How compute dispatch operates today in the driver model How compute dispatch improves tomorrow under HSA 17 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

18 HSA COMMAND AND DISPATCH CPU <-> GPU Application / Runtime CPU1 CPU2 GPU 18 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

19 HSA INTERMEDIATE LAYER - HSAIL HSAIL is a virtual ISA for parallel programs Finalized to ISA by a JIT compiler or Finalizer Low level for fast JIT compilation Explicitly parallel Designed for data parallel programming Support for exceptions, virtual functions, and other high level language features Syscall methods GPU code can call directly to system services, IO, printf, etc Debugging support 19 HPC Advisory Council HSA: platform for the future Oct, 28, 2012

20 HSA TAKING PLATFORM TO PROGRAMMERS Balance between CPU and GPU for performance and power efficiency Make GPUs accessible to wider audience of programmers Programming models close to today s CPU programming models Enabling more advanced language features on GPU Shared virtual memory enables complex pointer-containing data structures (lists, trees, etc) and hence more applications on GPU Kernel can enqueue work to any other device in the system (e.g. GPU->GPU, GPU->CPU) Enabling task-graph style algorithms, Ray-Tracing, etc Complete tool-chain for programming, debugging and profiling HSA provides a compatible architecture across a wide range of programming models and HW implementations. 20 HPC China 2012 HSA: from the HPC usage perspective Oct, 30, 2012

21 HSA VALUES GPGPU EASIER TO PROGRAM Pointer is a pointer! Expressive runtime for rich high level programming language, C/C++, Java, Python, C# More programming models support, OpenCL, C++ AMP, OpenMP Cacheable and coherent memory, more data structure allowed to be freely shared Single Source for all processors on the SOC 21 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

22 HSA VALUES GPGPU PERFORMANCE AND POWER EFFICIENCY Pass pointer rather than moving data, support more problem with different dataset Reduced kernel launch time and efficient CPU/GPU communication Hardware managed queue and scheduling, allows for very low-latency comm. between devices. Good for performance and power effficiencypreemption and context switching, Support for Multiple Pre-emption Concurrent and context GPU switching, process, Preemptive Support for Multitasking Multiple Concurrent of CPU/GPU process, resources Preemptive Multitasking of CPU/GPU resources Bi-Directional Power Mgmt between CPU and GPU, Turbo Core technology for more power efficiency 22 HPC China 2012 HSA: from the HPC usage perspective Oct, 30, 2012

23 TAKING HSA TO THE INDUSTRY Copyright 2012 HSA Foundation. All Rights Reserved.

24 Copyright 2012 HSA Foundation. All Rights Reserved. 24 HSA FOUNDATION INITIAL FOUNDERS represented by, CVP, Heterogeneous Applications and Developer Solutions represented by, ARM Fellow and VP of Technology, Media Processing represented by Vice President, Marketing represented by, Senior Director, CTO Office represented by, Director, Linux Development Center

25 AMD S OPEN SOURCE COMMITMENT TO HSA We will open source our linux execution and compilation stack Jump start the ecosystem Allow a single shared implementation where appropriate Enable university research in all areas Component Name AMD Specific Rationale HSA Bolt Library No Enable understanding and debug OpenCL HSAIL Code Generator No Enable research LLVM Contributions No Industry and academic collaboration HSA Assembler No Enable understanding and debug HSA Runtime No Standardize on a single runtime HSA Finalizer Yes Enable research and debug HSA Kernel Driver Yes For inclusion in linux distros 25 HPC China 2012 HSA: from the HPC usage perspective Oct, 30, 2012

26 THE FUTURE OF HETEROGENEOUS COMPUTING The architectural path for the future is clear Programming patterns established on Symmetric Multi-Processor (SMP) systems migrate to the heterogeneous world An open architecture, with published specifications and an open source execution software stack Heterogeneous cores working together seamlessly in coherent memory Low latency dispatch No software fault lines APU server will unleash the GPGPU power in HPC domain 26 HPC China 2012 HSA: from the HPC usage perspective Oct, 30, 2012

27 WHERE ARE WE TAKING YOU? Switch the compute, don t move the data! Every processor now has serial and parallel cores All cores capable, with performance differences Simple and efficient program model Platform Design Goals Easy support of massive data sets Support for task based programming models Solutions for all platforms Open to all 27 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

28 THANK YOU! Access HSA: Haibo Xie:

29 DISCLAIMER & ATTRIBUTION The information presented in this document is for informational purposes only and may contain technical inaccuracies, omissions and typographical errors. The information contained herein is subject to change and may be rendered inaccurate for many reasons, including but not limited to product and roadmap changes, component and motherboard version changes, new model and/or product releases, product differences between differing manufacturers, software changes, BIOS flashes, firmware upgrades, or the like. There is no obligation to update or otherwise correct or revise this information. However, we reserve the right to revise this information and to make changes from time to time to the content hereof without obligation to notify any person of such revisions or changes. NO REPRESENTATIONS OR WARRANTIES ARE MADE WITH RESPECT TO THE CONTENTS HEREOF AND NO RESPONSIBILITY IS ASSUMED FOR ANY INACCURACIES, ERRORS OR OMISSIONS THAT MAY APPEAR IN THIS INFORMATION. ALL IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE ARE EXPRESSLY DISCLAIMED. IN NO EVENT WILL ANY LIABILITY TO ANY PERSON BE INCURRED FOR ANY DIRECT, INDIRECT, SPECIAL OR OTHER CONSEQUENTIAL DAMAGES ARISING FROM THE USE OF ANY INFORMATION CONTAINED HEREIN, EVEN IF EXPRESSLY ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. AMD, the AMD arrow logo, and combinations thereof are trademarks of Advanced Micro Devices, Inc. All other names used in this presentation are for informational purposes only and may be trademarks of their respective owners Advanced Micro Devices, Inc. 29 HPC China 2012 HSA: from the HPC usage perspective Oct. 30, 2012

POWER. OpenPOWER Foundation Overview. February Steve Fields IBM Distinguished Engineer Director of Power Systems Design

POWER. OpenPOWER Foundation Overview. February Steve Fields IBM Distinguished Engineer Director of Power Systems Design Open Foundation Overview February 2014 Steve Fields IBM Distinguished Engineer Director of Power Systems Design 1 Goal and Intent of Open Opening the architecture, providing ability to innovate across

More information

Mont-Blanc work Past, present & future

Mont-Blanc work Past, present & future montblanc-project.eu @MontBlanc_EU Mont-Blanc work Past, present & future Etienne WALTER, Project manager (Bull/Atos) Coordinator of Mont-Blanc phase 3 This project has received funding from the European

More information

AMD RYZEN TM CORPORATE BRAND GUIDELINES

AMD RYZEN TM CORPORATE BRAND GUIDELINES AMD RYZEN TM CORPORATE BRAND GUIDELINES VERSION 1 - NOVEMBER 2016 CONTACT Address Advanced Micro Devices, Inc 7171 Southwest Pkwy Austin, Texas 78735 United States Phone Phone: 1-512-602-1000 Online Email:

More information

Does ESL have a role in Verification? Nick Gatherer Engineering Manager Processor Division ARM

Does ESL have a role in Verification? Nick Gatherer Engineering Manager Processor Division ARM Does ESL have a role in Verification? Nick Gatherer Engineering Manager Processor Division ARM 1 Key Trends A typical verification challenge... big.little heterogeneous multicore APPS APPS Increasing complexity

More information

Advanced Support for Server Infrastructure Refresh

Advanced Support for Server Infrastructure Refresh Advanced Support for Server Infrastructure Refresh Transitioning to new server technology can deliver massive performance and availability improvements. However concerns about the migration process and

More information

PSA Peugeot Citroën PME PORTO

PSA Peugeot Citroën PME PORTO PSA Peugeot Citroën PME PORTO Set, 24 th 2008 Joao Batista jbatista@novell.com Agenda The PSA Linux Desktop Deal What is Linux Desktop? What did really matter? Project Phases and figures 2 The PSA Linux

More information

RODOD Performance Test on Exalogic and Exadata Engineered Systems

RODOD Performance Test on Exalogic and Exadata Engineered Systems An Oracle White Paper March 2014 RODOD Performance Test on Exalogic and Exadata Engineered Systems Introduction Oracle Communications Rapid Offer Design and Order Delivery (RODOD) is an innovative, fully

More information

Oracle Autonomous Data Warehouse Cloud

Oracle Autonomous Data Warehouse Cloud Oracle Autonomous Data Warehouse Cloud 1 Lower Cost, Increase Reliability and Performance to Extract More Value from Your Data With Oracle Autonomous Database Cloud Service for Data Warehouse Today s leading-edge

More information

ORACLE S PEOPLESOFT HRMS 9.1 FP2 SELF-SERVICE

ORACLE S PEOPLESOFT HRMS 9.1 FP2 SELF-SERVICE O RACLE E NTERPRISE B ENCHMARK R EV. 1.1 ORACLE S PEOPLESOFT HRMS 9.1 FP2 SELF-SERVICE USING ORACLE DB 11g FOR LINUX ON CISCO UCS B460 M4 AND B200 M3 Servers As a global leader in e-business applications,

More information

QuickSpecs. Why use Platform LSF?

QuickSpecs. Why use Platform LSF? Overview 8 is a job management scheduler from Platform Computing Inc. Why use? A powerful workload manager for demanding, distributed and mission-critical computing environments. Includes a comprehensive

More information

DEPEI QIAN. HPC Development in China: A Brief Review and Prospect

DEPEI QIAN. HPC Development in China: A Brief Review and Prospect DEPEI QIAN Qian Depei, Professor at Sun Yat-sen university and Beihang University, Dean of the School of Data and Computer Science of Sun Yat-sen University. Since 1996 he has been the member of the expert

More information

``Overview. ``The Impact of Software. ``What are Virtual Prototypes? ``Competitive Electronic Products Faster

``Overview. ``The Impact of Software. ``What are Virtual Prototypes? ``Competitive Electronic Products Faster Virtualizer ``Overview ``The Impact of ``What are Virtual Prototypes? ``Competitive Electronic Products Faster ``Use Virtual Prototyping from Specification to Deployment ``Virtualizer Technical Specification

More information

TLM-Driven Design and Verification Time For a Methodology Shift

TLM-Driven Design and Verification Time For a Methodology Shift TLM-Driven Design and Time For a Methodology Shift By Jack Erickson, Cadence Design Systems, Inc. Transaction level modeling (TLM) is gaining favor over register-transfer level () for design components

More information

Jack Weast. Principal Engineer, Chief Systems Engineer. Automated Driving Group, Intel

Jack Weast. Principal Engineer, Chief Systems Engineer. Automated Driving Group, Intel Jack Weast Principal Engineer, Chief Systems Engineer Automated Driving Group, Intel From the Intel Newsroom 2 Levels of Automated Driving Courtesy SAE International Ref: J3061 3 Simplified End-to-End

More information

Oracle Systems Optimization Support

Oracle Systems Optimization Support Oracle Systems Optimization Support Oracle Systems Optimization Support offerings provide customers with welldefined packaged services. Let Oracle Advanced Customer Support help you make the most of your

More information

An Oracle White Paper July Enterprise Operations Monitor: Real-Time Voice over IP Monitoring and Troubleshooting

An Oracle White Paper July Enterprise Operations Monitor: Real-Time Voice over IP Monitoring and Troubleshooting An Oracle White Paper July 2013 Enterprise Operations Monitor: Real-Time Voice over IP Monitoring and Troubleshooting Introduction... 1 Overview... 2 Key Functions and Features... 2 Proactive Monitoring...

More information

High Level Tools for Low-Power ASIC design

High Level Tools for Low-Power ASIC design High Level Tools for Low-Power ASIC design Arne Schulz OFFIS Research Institute, Germany 1 Overview introduction high level power estimation µprocessors ASICs tool overview µprocessors ASICs conclusion

More information

COMPUTE CLOUD SERVICE. Move to Your Private Data Center in the Cloud Zero CapEx. Predictable OpEx. Full Control.

COMPUTE CLOUD SERVICE. Move to Your Private Data Center in the Cloud Zero CapEx. Predictable OpEx. Full Control. COMPUTE CLOUD SERVICE Move to Your Private Data Center in the Cloud Zero CapEx. Predictable OpEx. Full Control. The problem. You run multiple data centers with hundreds of servers hosting diverse workloads.

More information

ANSYS FLUENT Performance Benchmark and Profiling. October 2009

ANSYS FLUENT Performance Benchmark and Profiling. October 2009 ANSYS FLUENT Performance Benchmark and Profiling October 2009 Note The following research was performed under the HPC Advisory Council activities Participating vendors: Intel, ANSYS, Dell, Mellanox Compute

More information

PORTFOLIO MANAGEMENT Thomas Zimmermann, Solutions Director, Software AG, May 03, 2017

PORTFOLIO MANAGEMENT Thomas Zimmermann, Solutions Director, Software AG, May 03, 2017 UNLEASH YOUR DIGITAL VISION #WITHOUTCOMPROMISE Innovation in Business & IT Transformation PORTFOLIO MANAGEMENT Thomas Zimmermann, Solutions Director, Software AG, May 03, 2017 2017 Software AG. All rights

More information

EBOOK NetApp Cloud Sync Service

EBOOK NetApp Cloud Sync Service EBOOK NetApp Cloud Sync Service Simplify data migration and synchronization between file systems and object stores, on-premises or in the cloud NetApp Cloud Sync Service Introducing Cloud Sync 3 Fast 5

More information

Why more and more SAP customers are migrating to Solaris

Why more and more SAP customers are migrating to Solaris Why more and more SAP customers are migrating to Solaris Your SAP environment is critical to business operations. Migrating your SAP systems to Oracle Solaris delivers the availability, performance, scalability,

More information

Application of Advanced Multi-Core Processor Technologies to Oceanographic Research

Application of Advanced Multi-Core Processor Technologies to Oceanographic Research DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. Application of Advanced Multi-Core Processor Technologies to Oceanographic Research Mark R. Abbott 104 CEOAS Administration

More information

Oracle Autonomous Data Warehouse Cloud

Oracle Autonomous Data Warehouse Cloud Oracle Autonomous Data Warehouse Cloud 1 Lower Cost, Increase Reliability and Performance to Extract More Value from Your Data With Oracle Autonomous Data Warehouse Cloud Today s leading-edge organizations

More information

Oracle Linux Management with Oracle Enterprise Manager 13c Cloud Control O R A C L E W H I T E P A P E R M A R C H

Oracle Linux Management with Oracle Enterprise Manager 13c Cloud Control O R A C L E W H I T E P A P E R M A R C H Oracle Linux Management with Oracle Enterprise Manager 13c Cloud Control O R A C L E W H I T E P A P E R M A R C H 2 0 1 7 Introduction 2 Oracle Enterprise Manager 13c overview 2 Managing Oracle Linux

More information

AN Contact reader ICs - TDA product support packages. Document information

AN Contact reader ICs - TDA product support packages. Document information Rev. 1.1 1 October 2014 Application note ument information Info Content Keywords Contact reader ICs, TDA8034, TDA8035, TDA8024, TDA8026, TDA8023, TDA8029, TDA8007B, TDA8037, Motherboard, Daughterboard,

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights ORACLE PRODUCT LOGO Virtualization and Cloud Deployments of Oracle E-Business Suite Ivo Dujmović, Director, Applications Development 2 Copyright

More information

Oracle Utilities Mobile Workforce Management Benchmark

Oracle Utilities Mobile Workforce Management Benchmark Oracle Utilities Mobile Workforce Management Benchmark Demonstrates Superior Scalability for Large Field Service Organizations O R A C L E W H I T E P A P E R F E B R U A R Y 2 0 1 6 Introduction Large

More information

ORACLE INFRASTRUCTURE AS A SERVICE PRIVATE CLOUD WITH CAPACITY ON DEMAND

ORACLE INFRASTRUCTURE AS A SERVICE PRIVATE CLOUD WITH CAPACITY ON DEMAND ORACLE INFRASTRUCTURE AS A SERVICE PRIVATE CLOUD WITH CAPACITY ON DEMAND FEATURES AND FACTS FEATURES Hardware and hardware support for a monthly fee Optionally acquire Exadata Storage Server Software and

More information

FPGA as a Service in the Cloud. Craig Davies Principal Hardware Architect

FPGA as a Service in the Cloud. Craig Davies Principal Hardware Architect FPGA as a Service in the Cloud Craig Davies Principal Hardware Architect craig.davies@huawei.com Huawei FPGA Accelerated Cloud Server (FACS) Inner Mongolia DC Ulanch ap North China DC Germany USA East

More information

ORACLE DATA INTEGRATOR ENTERPRISE EDITION

ORACLE DATA INTEGRATOR ENTERPRISE EDITION ORACLE DATA INTEGRATOR ENTERPRISE EDITION Oracle Data Integrator Enterprise Edition delivers high-performance data movement and transformation among enterprise platforms with its open and integrated E-LT

More information

StorageTek Virtual Storage Manager System 7

StorageTek Virtual Storage Manager System 7 StorageTek Virtual Storage Manager System 7 The way you manage your business-critical data affects your top-line growth and bottom-line efficiency. Your ability to manage and store data simply and reliably

More information

The IBM and Oracle alliance. Power architecture

The IBM and Oracle alliance. Power architecture IBM Power Systems, IBM PowerVM and Oracle offerings: a winning combination The smart virtualization platform for IBM AIX, Linux and IBM i clients using Oracle solutions Fostering smart innovation through

More information

Oracle Big Data Cloud Service

Oracle Big Data Cloud Service Oracle Big Data Cloud Service Delivering Hadoop, Spark and Data Science with Oracle Security and Cloud Simplicity Oracle Big Data Cloud Service is an automated service that provides a highpowered environment

More information

Oracle Enterprise Manager 13c Cloud Control

Oracle Enterprise Manager 13c Cloud Control Oracle Enterprise Manager 13c Cloud Control Oracle SOA Management Pack Enterprise Edition MANAGEMENT FOR ORACLE SOA SUITE AND ORACLE SERVICE BUS APPLICATIONS Oracle Enterprise Manager is Oracle s integrated

More information

Sizing SAP Central Process Scheduling 8.0 by Redwood

Sizing SAP Central Process Scheduling 8.0 by Redwood Sizing SAP Central Process Scheduling 8.0 by Redwood Released for SAP Customers and Partners January 2012 Copyright 2012 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted

More information

An Oracle White Paper June, Integrated Application-to-Disk Management with Oracle Enterprise Manager Cloud Control 12c

An Oracle White Paper June, Integrated Application-to-Disk Management with Oracle Enterprise Manager Cloud Control 12c An Oracle White Paper June, 2014 Integrated Application-to-Disk Management with Oracle Enterprise Manager Cloud Control 12c Executive Overview... 2 Creating Business Value through Built-In Manageability...

More information

About Oracle Primavera P6 Enterprise Project Portfolio Management

About Oracle Primavera P6 Enterprise Project Portfolio Management P6 EPPM System Architecture Data Sheet for On-Premises Version 17 July 2017 Contents About Oracle Primavera P6 Enterprise Project Portfolio Management... 5 Working with the Oracle Primavera P6 EPPM Suite...

More information

Whitepaper Hardware Convergence & Functional Safety: Optimal Design Methods in Today s Automotive Digital Instrument Clusters

Whitepaper Hardware Convergence & Functional Safety: Optimal Design Methods in Today s Automotive Digital Instrument Clusters Whitepaper Hardware Convergence & Functional Safety: Optimal Design Methods in Today s Automotive Digital Instrument Clusters Version: 1.0 Released: 27-Jun-2016 Purpose: This whitepaper discusses the convergence

More information

Addressing the I/O bottleneck of HPC workloads. Professor Mark Parsons NEXTGenIO Project Chairman Director, EPCC

Addressing the I/O bottleneck of HPC workloads. Professor Mark Parsons NEXTGenIO Project Chairman Director, EPCC Addressing the I/O bottleneck of HPC workloads Professor Mark Parsons NEXTGenIO Project Chairman Director, EPCC I/O is key Exascale challenge Parallelism beyond 100 million threads demands a new approach

More information

SAVE MAINFRAME COSTS ZIIP YOUR NATURAL APPS

SAVE MAINFRAME COSTS ZIIP YOUR NATURAL APPS ADABAS & NATURAL SAVE MAINFRAME COSTS ZIIP YOUR NATURAL APPS Reduce your mainframe TCO with Natural Enabler TABLE OF CONTENTS 1 Can you afford not to? 2 Realize immediate benefits 2 Customers quickly achieve

More information

NSF {Program (NSF ) first announced on August 20, 2004} Program Officers: Frederica Darema Helen Gill Brett Fleisch

NSF {Program (NSF ) first announced on August 20, 2004} Program Officers: Frederica Darema Helen Gill Brett Fleisch NSF07-504 {Program (NSF04-609 ) first announced on August 20, 2004} Program Officers: Frederica Darema Helen Gill Brett Fleisch Computer Systems Research Program: Components and Thematic Areas Advanced

More information

Totally Integrated Automation Portal

Totally Integrated Automation Portal TIA Portal the new version Totally Integrated Automation Portal One integrated engineering framework for all automation tasks. siemens.com/tia-portal Answers for industry. What customers say USA Crawford

More information

AMR (Adaptive Mesh Refinement) Performance Benchmark and Profiling

AMR (Adaptive Mesh Refinement) Performance Benchmark and Profiling AMR (Adaptive Mesh Refinement) Performance Benchmark and Profiling July 2011 Acknowledgment: - The DoD High Performance Computing Modernization Program - John Bell from Lawrence Berkeley Laboratory Note

More information

Introduction to the IBM MessageSight appliance for Mobile Messaging and M2M

Introduction to the IBM MessageSight appliance for Mobile Messaging and M2M Introduction to the IBM MessageSight appliance for Mobile Messaging and M2M Arnaud Mathieu and Andrew Schofield IBM Software Group Session TSM-1986 2013 IBM Corporation Please Note IBM s statements regarding

More information

About Configuring BI Publisher for Primavera Unifier. Getting Started with BI Publisher Reports

About Configuring BI Publisher for Primavera Unifier. Getting Started with BI Publisher Reports Unifier BI Publisher Configuration Guide Version 17 July 2017 Contents About Configuring BI Publisher for Primavera Unifier... 5 Getting Started with BI Publisher Reports... 5 Downloading BI Publisher...

More information

Oracle Production Scheduling

Oracle Production Scheduling Oracle Production Scheduling Installation Guide Release 12.2 Part No. E48798-02 August 2014 Oracle Production Scheduling Installation Guide, Release 12.2 Part No. E48798-02 Copyright 2008, 2014, Oracle

More information

WebCenter Content. Complete and Versatile Content Management

WebCenter Content. Complete and Versatile Content Management WebCenter Complete and Versatile Management Enjoy a one-stop solution for content management. With Oracle WebCenter, you can manage all unstructured content, such as documents, images, and rich media files,

More information

Oracle Business Intelligence Suite Enterprise Edition 4,000 User Benchmark on an IBM System x3755 Server running Red Hat Enterprise Linux

Oracle Business Intelligence Suite Enterprise Edition 4,000 User Benchmark on an IBM System x3755 Server running Red Hat Enterprise Linux Oracle Business Intelligence Suite Enterprise Edition 4,000 User Benchmark on an IBM System x3755 Server running Red Hat Enterprise Linux An Oracle White Paper April 2008 Oracle Business Intelligence Suite

More information

Integrated Service Management

Integrated Service Management Integrated Service Management for Power servers As the world gets smarter, demands on the infrastructure will grow Smart traffic systems Smart Intelligent food oil field technologies systems Smart water

More information

ORACLE CLOUD MANAGEMENT PACK FOR MIDDLEWARE

ORACLE CLOUD MANAGEMENT PACK FOR MIDDLEWARE ORACLE CLOUD MANAGEMENT PACK FOR MIDDLEWARE Oracle Enterprise Manager is Oracle s strategic integrated enterprise IT management product line. It provides the industry s first complete cloud lifecycle management

More information

Job Scheduling Challenges of Different Size Organizations

Job Scheduling Challenges of Different Size Organizations Job Scheduling Challenges of Different Size Organizations NetworkComputer White Paper 2560 Mission College Blvd., Suite 130 Santa Clara, CA 95054 (408) 492-0940 Introduction Every semiconductor design

More information

Oracle CPQ Cloud and Salesforce.com Integration

Oracle CPQ Cloud and Salesforce.com Integration Oracle CPQ Cloud and Salesforce.com Integration Oracle CPQ Cloud provides on-demand configuration, pricing, and quoting capabilities that can easily integrate with Salesforce s customer relationship management

More information

Building a Multi-Tenant Infrastructure for Diverse Application Workloads

Building a Multi-Tenant Infrastructure for Diverse Application Workloads Building a Multi-Tenant Infrastructure for Diverse Application Workloads Rick Janowski Marketing Manager IBM Platform Computing 1 The Why and What of Multi-Tenancy 2 Parallelizable problems demand fresh

More information

IoT: The 4th Industrial Revolution Yau Wai Yeong, Product Marketing Manager, Intel Internet-of-Things Group

IoT: The 4th Industrial Revolution Yau Wai Yeong, Product Marketing Manager, Intel Internet-of-Things Group IoT: The 4th Industrial Revolution Yau Wai Yeong, Product Marketing Manager, Intel Internet-of-Things Group Analytics Innovation Forum 2017 15 November Kuala Lumpur Copyright SAS Institute Inc. All rights

More information

Achieving Agility and Flexibility in Big Data Analytics with the Urika -GX Agile Analytics Platform

Achieving Agility and Flexibility in Big Data Analytics with the Urika -GX Agile Analytics Platform Achieving Agility and Flexibility in Big Data Analytics with the Urika -GX Agile Analytics Platform Analytics R&D and Product Management Document Version 1 WP-Urika-GX-Big-Data-Analytics-0217 www.cray.com

More information

Oracle Big Data Discovery The Visual Face of Big Data

Oracle Big Data Discovery The Visual Face of Big Data Oracle Big Data Discovery The Visual Face of Big Data Today's Big Data challenge is not how to store it, but how to make sense of it. Oracle Big Data Discovery is a fundamentally new approach to making

More information

Building smart products: best practices for multicore software development

Building smart products: best practices for multicore software development IBM Software Rational Thought Leadership White Paper Building smart products: best practices for multicore software development 2 Building smart products: best practices for multicore software development

More information

IBM System Storage. Kim Mortensen Nordic Storage Product Manager 2011 IBM Corporation

IBM System Storage. Kim Mortensen Nordic Storage Product Manager 2011 IBM Corporation IBM System Storage Kim Mortensen Nordic Storage Product Manager kim@dk.ibm.com The Smarter Storage approach Integrated Solutions Virtual Storage Center IBM Smart Analytics Solutions (ISAS) Storage Management

More information

ORACLE UTILITIES CUSTOMER CARE AND BILLING 2.X FUNCTIONALITY FOR IMPLEMENTERS

ORACLE UTILITIES CUSTOMER CARE AND BILLING 2.X FUNCTIONALITY FOR IMPLEMENTERS ORACLE UTILITIES CUSTOMER CARE AND BILLING 2.X FUNCTIONALITY FOR IMPLEMENTERS The Oracle Utilities Customer Care and Billing Functionality for Implementers Boot Camp is an in-depth look at the core functionality

More information

Oracle In-Memory Cost Management Cloud. Release What s New

Oracle In-Memory Cost Management Cloud. Release What s New Oracle In-Memory Cost Management Cloud Release 17.3 What s New TABLE OF CONTENTS REVISION HISTORY... 3 OVERVIEW... 4 UPDATE TASKS... 5 RELEASE FEATURE SUMMARY... 6 ORACLE IN-MEMORY COST MANAGEMENT CLOUD

More information

Cognitive Solutions in the Context of IBM Systems Cognitive Analytics / Integration Scenarios / Use Cases

Cognitive Solutions in the Context of IBM Systems Cognitive Analytics / Integration Scenarios / Use Cases Cognitive Solutions in the Context of IBM Systems Cognitive Analytics / Integration Scenarios / Use Cases Mano Srinivasan Open Source Solutions Architect manojs@sg.ibm.com Topics and Questions to be addressed

More information

SAP CENTRAL PROCESS SCHEDULING BY REDWOOD: FREQUENTLY ASKED QUESTIONS

SAP CENTRAL PROCESS SCHEDULING BY REDWOOD: FREQUENTLY ASKED QUESTIONS SAP NetWeaver SAP CENTRAL PROCESS SCHEDULING BY REDWOOD: FREQUENTLY ASKED QUESTIONS Exploring the Central Process-Scheduling Software Developed by Redwood Software for SAP NetWeaver As IT landscapes become

More information

Oracle Manufacturing Cloud

Oracle Manufacturing Cloud Oracle Manufacturing Cloud The Oracle Manufacturing Cloud solution helps firms compete in today s global market by providing new and better tools to run their shop floor. With margins for products eroding

More information

Oracle WebCenter Interaction Statement of Direction. February 2009

Oracle WebCenter Interaction Statement of Direction. February 2009 Oracle WebCenter Interaction Statement of Direction February 2009 Oracle WebCenter Interaction Statement of Direction INTRODUCTION Oracle WebCenter Interaction, formerly BEA AquaLogic User Interaction

More information

Deployment Recommendations for SAP Fiori Front-End Server & SAP Fiori Cloud

Deployment Recommendations for SAP Fiori Front-End Server & SAP Fiori Cloud Deployment Recommendations for SAP Fiori Front-End & SAP Fiori Cloud December 2017, SAP SE Change Log Version February 2017 July 2017 October 2017 December 2017 Changes Smaller updates S/4HANA option added;

More information

Oracle s Platform for SAP Solutions

Oracle s Platform for SAP Solutions Oracle s Platform for SAP Solutions Providing a Secure and Scalable Infrastructure for Your SAP Software Investments IT leaders and SAP implementers must build and deploy high-performance, cost-effective

More information

THE NEW HYPER-CONNECTED ENTERPRISE. Improve collaboration. Enhance customer experiences. Streamline business processes.

THE NEW HYPER-CONNECTED ENTERPRISE. Improve collaboration. Enhance customer experiences. Streamline business processes. THE NEW HYPER-CONNECTED ENTERPRISE Improve collaboration. Enhance customer experiences. Streamline business processes. Oracle Communications portfolio of open enterprise-class communications solutions

More information

Simio Supplemental Product Information

Simio Supplemental Product Information Simio Supplemental Product Information Table of Contents Simio LLC Company Background... 3 Description of Licensing Activation Modes... 4 Node-locked Licensing (restricted to one computer)... 4 Server

More information

Benefits of Deploying Business Applications On Oracle Cloud At Customer O R A C L E W H I T E P A P E R D E C E M B E R

Benefits of Deploying Business Applications On Oracle Cloud At Customer O R A C L E W H I T E P A P E R D E C E M B E R Benefits of Deploying Business Applications On Oracle Cloud At Customer O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 7 Disclaimer The following is intended to outline our general product direction.

More information

IBM xseries 430. Versatile, scalable workload management. Provides unmatched flexibility with an Intel architecture and open systems foundation

IBM xseries 430. Versatile, scalable workload management. Provides unmatched flexibility with an Intel architecture and open systems foundation Versatile, scalable workload management IBM xseries 430 With Intel technology at its core and support for multiple applications across multiple operating systems, the xseries 430 enables customers to run

More information

Advanced Types Of Scheduling

Advanced Types Of Scheduling Advanced Types Of Scheduling In the previous article I discussed about some of the basic types of scheduling algorithms. In this article I will discuss about some other advanced scheduling algorithms.

More information

ORACLE BIG DATA APPLIANCE

ORACLE BIG DATA APPLIANCE ORACLE BIG DATA APPLIANCE BIG DATA FOR THE ENTERPRISE KEY FEATURES Massively scalable infrastructure to store and manage big data Big Data Connectors delivers unprecedented load rates between Big Data

More information

Infor LN Minimum hardware requirements. Sizing Documentation

Infor LN Minimum hardware requirements. Sizing Documentation Infor LN Minimum hardware requirements Sizing Documentation Copyright 2014 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains

More information

MOBILITY SOLUTIONS FOR AN ARRAY OF MOBILE APPLICATIONS AND BEYOND...

MOBILITY SOLUTIONS FOR AN ARRAY OF MOBILE APPLICATIONS AND BEYOND... Global IT Solutions MOBILITY SOLUTIONS FOR AN ARRAY OF MOBILE APPLICATIONS AND BEYOND... Today the virtual world has evolved and moved to a different league altogether. Our portable / handheld devices

More information

Using ClarityTM for Application Portfolio Management

Using ClarityTM for Application Portfolio Management WHITE PAPER: Application Portfolio Management February 2012 Using CA PPM ClarityTM for Application Portfolio Management David Werner CA Service & Portfolio Management agility made possible table of contents

More information

CS 5220: VMs, containers, and clouds. David Bindel

CS 5220: VMs, containers, and clouds. David Bindel CS 5220: VMs, containers, and clouds David Bindel 2017-10-12 1 Cloud vs HPC Is the cloud becoming a supercomputer? What does this even mean? Cloud resources for rent Compute cycles and raw bits, or something

More information

Challenges in Application Scaling In an Exascale Environment

Challenges in Application Scaling In an Exascale Environment Challenges in Application Scaling In an Exascale Environment 14 th Workshop on the Use of High Performance Computing In Meteorology November 2, 2010 Dr Don Grice IBM Page 1 Growth of the Largest Computers

More information

IBM Spectrum Scale. Transparent Cloud Tiering Deep Dive

IBM Spectrum Scale. Transparent Cloud Tiering Deep Dive IBM Spectrum Scale Transparent Cloud Deep Dive 2 Disclaimer IBM s statements regarding its plans, directions, and intent are subject to change or withdrawal without notice at IBM s sole discretion. Information

More information

Product Brief SysTrack VMP

Product Brief SysTrack VMP Product Brief SysTrack VMP Benefits Optimize desktop and server virtualization and terminal server projects Anticipate and handle problems in the planning stage instead of postimplementation Use iteratively

More information

RKT Live Expert Session

RKT Live Expert Session RKT Live Expert Session Federated PI and Deployment Options Alexander Bundschuh SAP Product Management SAP NetWeaver Process Integration December 2010 Disclaimer This presentation outlines our general

More information

Oracle Manufacturing Cloud R13

Oracle Manufacturing Cloud R13 ORACLE DATA SHEET Oracle Manufacturing Cloud R13 The Oracle Manufacturing Cloud solution helps firms compete in today s global market by providing new and better tools to run their shop floor. With margins

More information

Understanding the Business Value of Docker Enterprise Edition

Understanding the Business Value of Docker Enterprise Edition Understanding the Business Value of Docker Enterprise Edition JUNE 2017 www.docker.com/enterprise Table of Contents The Digital Transformation... 3 What the Digital Transformation Means... 3 We Still Need

More information

Infor LN UI Sizing Guide

Infor LN UI Sizing Guide Infor LN UI 11.2 Sizing Guide Copyright 2015 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential and proprietary

More information

Agile Mainframe Software Development

Agile Mainframe Software Development Agile Mainframe Software Development Can Agile Development Foster Agile Adoption? Maddalena Tosoni Advisor, Product Management CA Technologies Disclaimer Certain information in this presentation may outline

More information

CPU Scheduling. Disclaimer: some slides are adopted from book authors and Dr. Kulkarni s slides with permission

CPU Scheduling. Disclaimer: some slides are adopted from book authors and Dr. Kulkarni s slides with permission CPU Scheduling Disclaimer: some slides are adopted from book authors and Dr. Kulkarni s slides with permission 1 Recap Deadlock prevention Break any of four deadlock conditions Mutual exclusion, no preemption,

More information

Innovative solutions to simplify your business. IBM System i5 Family

Innovative solutions to simplify your business. IBM System i5 Family Innovative solutions to simplify your business IBM System i5 Family Highlights Provide faster, extremely reliable and highly secure ways to help simplify your IT environment, enabling savings to be invested

More information

The Benefits of Consolidating Oracle s PeopleSoft Applications with the Oracle Optimized Solution for PeopleSoft

The Benefits of Consolidating Oracle s PeopleSoft Applications with the Oracle Optimized Solution for PeopleSoft The Benefits of Consolidating Oracle s PeopleSoft Applications with the Oracle Optimized Solution for PeopleSoft Optimize Your Infrastructure by Consolidating Multiple PeopleSoft Applications on a Single,

More information

Infor LN UI 11.3 Sizing Guide

Infor LN UI 11.3 Sizing Guide Infor LN UI 11.3 Sizing Guide Copyright 2016 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential and proprietary

More information

Oracle Profitability and Cost Management Cloud. What s New in the April Update (17.04)

Oracle Profitability and Cost Management Cloud. What s New in the April Update (17.04) Oracle Profitability and Cost Management Cloud What s New in the April Update (17.04) March 2017 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE PROFITABILITY AND COST MANAGEMENT CLOUD, APRIL UPDATE...

More information

Session 2.9: Tivoli Process Managers

Session 2.9: Tivoli Process Managers Session 2.9: Tivoli Process Managers Marcus Boone Market Manager Agenda IT Challenge and IT Service (ITSM) Strategy ITSM Architecture and Design Process Managers Change Configuration Release IT Service

More information

Avaya Call Management System Capacities

Avaya Call Management System Capacities Avaya Call Management System Capacities Release 16.3 May 2012 2012 Avaya Inc. All Rights Reserved. Notice While reasonable efforts were made to ensure that the information in this document was complete

More information

Oracle Real-Time Scheduler Benchmark

Oracle Real-Time Scheduler Benchmark An Oracle White Paper November 2012 Oracle Real-Time Scheduler Benchmark Demonstrates Superior Scalability for Large Service Organizations Introduction Large service organizations with greater than 5,000

More information

Oracle Maintenance Cloud

Oracle Maintenance Cloud Oracle Maintenance Cloud Oracle Maintenance Cloud enables effective and efficient maintenance operations. With shrinking margins and declining capital spending, companies need to operate their assets with

More information

Principles of Operating Systems

Principles of Operating Systems Principles of Operating Systems Lecture 9-10 - CPU Scheduling Ardalan Amiri Sani (ardalan@uci.edu) [lecture slides contains some content adapted from previous slides by Prof. Nalini Venkatasubramanian,

More information

The Road to EMV on the Forecourt. May 7, 2015

The Road to EMV on the Forecourt. May 7, 2015 The Road to EMV on the Forecourt May 7, 2015 Agenda Presenters Housekeeping About Conexxus The Road to EMV on the Forecourt Q & A Presenters Carl Bayer Program Manager, Conexxus Sharon Scace I-Spec Technical

More information

Knauf builds high-speed business insight with SAP and IBM

Knauf builds high-speed business insight with SAP and IBM Knauf builds high-speed business insight with SAP and IBM Overview Knauf Group, headquartered in Iphofen, Germany, manufactures world-leading insulation materials, construction equipment and tools. With

More information

Introduction to IBM Technical Computing Clouds IBM Redbooks Solution Guide

Introduction to IBM Technical Computing Clouds IBM Redbooks Solution Guide Introduction to IBM Technical Computing Clouds IBM Redbooks Solution Guide The IT Industry has tried to maintain a balance between more demands from business to deliver services against cost considerations

More information

ADDITIONAL TERMS FOR INTEROUTE CLOUD HOSTED UNIFIED COMMUNICATIONS SCHEDULE 2U

ADDITIONAL TERMS FOR INTEROUTE CLOUD HOSTED UNIFIED COMMUNICATIONS SCHEDULE 2U ADDITIONAL TERMS FOR INTEROUTE CLOUD HOSTED UNIFIED COMMUNICATIONS SCHEDULE 2U CONTENTS 1 Service Description... 3 2 Definitions... 3 3 Service Terms... 3 3.1 Licensing and Service Provider License Agreements

More information

IBM Sterling B2B Integrator

IBM Sterling B2B Integrator Sylvain Fontaine - Sterling B2B Integrator Technical Support Engineer September 2015 IBM Sterling B2B Integrator Business Process Design from a Performance Perspective 2009 IBM Corporation IBM Presentation

More information