Parallel Tools Platform Parallel Debugger Greg Watson Project Leader Greg Watson Project Leader.

Slides:



Advertisements
Similar presentations
Extending Eclipse CDT for Remote Target Debugging Thomas Fletcher Director, Automotive Engineering Services QNX Software Systems.
Advertisements

Multimedia Synchronization Brian P. Bailey Spring 2006.
Programming Languages and Paradigms
Chapter FourModern Programming Languages1 Language Systems.
Goals Give you a feeling of what Eclipse is.
The Path to Multi-core Tools Paul Petersen. Multi-coreToolsThePathTo 2 Outline Motivation Where are we now What is easy to do next What is missing.
State Machines Timing Computer Bus Computer Performance Instruction Set Architectures RISC / CISC Machines.
V1.00 © 2009 Research In Motion Limited Introduction to Mobile Device Web Development Trainer name Date.
VB in Context Michael B. Spring Department of Information Science and Telecommunications University of Pittsburgh Pittsburgh, Pa 15260
1 I/O Management in Representative Operating Systems.
Functional Simulation Overview1 OpenTV PC Simulator.
Principles of Procedural Programming
The shift from sequential to parallel and distributed computing is of fundamental importance for the advancement of computing practices. Unfortunately,
© 2006 by IBM 1 How to use Eclipse to Build Rich Internet Applications With PHP and AJAX Phil Berkland IBM Software Group Emerging.
Overview of Eclipse Parallel Tools Platform Adam Leko UPC Group HCS Research Laboratory University of Florida Color encoding key: Blue: Information Red:
DSpace XML UI Project Texas A&M University Digital Initiatives, Research and Technology Scott Phillips, Cody Green, Alexey Maslov, Adam Mikeal, Brian Surratt,
Lecture 29 Fall 2006 Lecture 29: Parallel Programming Overview.
Lecture 4: Parallel Programming Models. Parallel Programming Models Parallel Programming Models: Data parallelism / Task parallelism Explicit parallelism.
Concept demo System dashboard. Overview Dashboard use case General implementation ideas Use of MULE integration platform Collection Aggregation/Factorization.
@2011 Mihail L. Sichitiu1 Android Introduction Platform Overview.
Expressions creating information. topics  operators: precedence, associativity, parentheses, overloading  operands: side-effects, coercion  arithmetic,
ICOM 5995: Performance Instrumentation and Visualization for High Performance Computer Systems Lecture 7 October 16, 2002 Nayda G. Santiago.
Parallel Programming Models Jihad El-Sana These slides are based on the book: Introduction to Parallel Computing, Blaise Barney, Lawrence Livermore National.
C Programming language
9 Chapter Nine Compiled Web Server Programs. 9 Chapter Objectives Learn about Common Gateway Interface (CGI) Create CGI programs that generate dynamic.
CSE 260 – Parallel Processing UCSD Fall 2006 A Performance Characterization of UPC Presented by – Anup Tapadia Fallon Chen.
Support for Debugging Automatically Parallelized Programs Robert Hood Gabriele Jost CSC/MRJ Technology Solutions NASA.
BLU-ICE and the Distributed Control System Constraints for Software Development Strategies Timothy M. McPhillips Stanford Synchrotron Radiation Laboratory.
INDUSTRIAL PROJECT (234313) ULTRASOUND SCANNER EMBEDDED ONLINE PROFILER Students: Liat Peterfreund, Hagay Myr Supervisor: Mr. Tomer Gal (GE Healthcare)
Understanding Xamarin Development Matt
1 Parallel Programming Aaron Bloomfield CS 415 Fall 2005.
© 2002 IBM Corporation Confidential | Date | Other Information, if necessary © Wind River Systems, released under EPL 1.0. All logos are TM of their respective.
CS333 Intro to Operating Systems Jonathan Walpole.
ITC Research Computing Support Using Matlab Effectively By: Ed Hall Research Computing Support Center Phone: Φ Fax:
Nucleus BridgePoint Roadmap Bill Tanner Engineering Manager.
© 2009 IBM Corporation Parallel Programming with X10/APGAS IBM UPC and X10 teams  Through languages –Asynchronous Co-Array Fortran –extension of CAF with.
SOFTWARE DESIGN AND ARCHITECTURE LECTURE 13. Review Shared Data Software Architectures – Black board Style architecture.
Core Java Introduction Byju Veedu Ness Technologies httpdownload.oracle.com/javase/tutorial/getStarted/intro/definition.html.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Concurrency & Dynamic Programming.
HPD -- A High Performance Debugger Implementation A Parallel Tools Consortium project
SAP DEVELOPMENT BASICS Bohuslav Tesar. TRAINING OVERVIEW Amazing life of ABAP developer ;) SAP introduction ABAP basics ABAP Reporting.
San Jose, California September 2002 What is ICU? Roadmap and Myths Helena Shih Chapman ICU Development Manager IBM Globalization Center of Competency.
Chapter – 8 Software Tools.
Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9 th Edition Chapter 4: Threads.
Eclipse Debug Views Update Policy. 2 Copyright (c) 2005 IBM Corporation and others. All rights reserved. This program and the accompanying materials are.
1 HPJAVA I.K.UJJWAL 07M11A1217 Dept. of Information Technology B.S.I.T.
© 2002 IBM Corporation Confidential | Date | Other Information, if necessary Copyright © 2009 Ericsson, Made available under the Eclipse Public License.
Introduction Ken Ryall – Nokia Warren Paul – Nokia Daymon Rogers – Freescale John Cortell - Freescale.
1 Asstt. Prof Navjot Kaur Computer Dept PRESENTED BY.
CS 5991 Presentation Ptolemy: A Framework For Simulating and Prototyping Heterogeneous Systems.
CIS 595 MATLAB First Impressions. MATLAB This introduction will give Some basic ideas Main advantages and drawbacks compared to other languages.
Visual Programming Borland Delphi. Developing Applications Borland Delphi is an object-oriented, visual programming environment to develop 32-bit applications.
Some of the utilities associated with the development of programs. These program development tools allow users to write and construct programs that the.
Reference Implementation of the High Performance Debugging (HPD) Standard Kevin London ( ) Shirley Browne ( ) Robert.
Chapter 4: Threads.
Goals Give you a feeling of what Eclipse is.
Building Custom Workflows
Chapter 2: System Structures
Operating System (013022) Dr. H. Iwidat
NGS computation services: APIs and Parallel Jobs
MPI-Message Passing Interface
Chapter 4: Threads & Concurrency
Chapter 2: Operating-System Structures
How to take advantage of the new Eclipse Debug Platform features
Chap 1. Getting Started Objectives
Chap 4. Programming Fundamentals
Review of Java Fundamentals
Presentation transcript:

Parallel Tools Platform Parallel Debugger Greg Watson Project Leader Greg Watson Project Leader

Design Considerations  Parallel applications range from 2 to 128K processes  Combined mult-process and threaded model is possible  Some debug operations are performed on  All or a subset of processes  Individual processes  Processes are typically dependent on each other  Mixed language (e.g. C and Fortran) typical  Parallel applications range from 2 to 128K processes  Combined mult-process and threaded model is possible  Some debug operations are performed on  All or a subset of processes  Individual processes  Processes are typically dependent on each other  Mixed language (e.g. C and Fortran) typical

Programming Models  Message passing model  Distinct processes exchange data using messages  Explicit send/receive and collective operations  Shared memory model  Data structures are shared  Locking or atomic operations required  Currently targeting message passing, shared memory later  Message passing model  Distinct processes exchange data using messages  Explicit send/receive and collective operations  Shared memory model  Data structures are shared  Locking or atomic operations required  Currently targeting message passing, shared memory later

Debugging Methodology  Breakpoint across all processes to synchronize  In master/worker, breakpoint only workers  Step all processes until error  Stepping one process typically not possible due to dependencies  Examine snapshot of data across all (or subset) of processes  Compare data from one process to another  Breakpoint across all processes to synchronize  In master/worker, breakpoint only workers  Step all processes until error  Stepping one process typically not possible due to dependencies  Examine snapshot of data across all (or subset) of processes  Compare data from one process to another

Architecture Overview  Eclipse UI front end  Reuse Debug and CDI where possible  High level parallel debug API  Process sets used for efficiency  Asynchronous command/event model  Extension point to allow alternate backends  Backend (SDM)  Startup  Command broadcast  Event aggregation  MI only used for low level debug actions  Eclipse UI front end  Reuse Debug and CDI where possible  High level parallel debug API  Process sets used for efficiency  Asynchronous command/event model  Extension point to allow alternate backends  Backend (SDM)  Startup  Command broadcast  Event aggregation  MI only used for low level debug actions

UI Architecture ICDI IPCDI Platform Debug UI CDT Debug UI PTP Debug UI IPDebugger EventsCommands IPDebugEvent

Debug API public interface IPDebugger { public void stepOver(BitList set, int count) throws PCDIException;... } public interface IPDebugEvent { public BitList getSet();... } public interface IPDebugger { public void stepOver(BitList set, int count) throws PCDIException;... } public interface IPDebugEvent { public BitList getSet();... }

SDM Architecture 0 ParallelDebugger Command Broadcast

SDM Architecture 0 ParallelDebugger Event Aggregation

AIF  Architecture Independent Format for data  Independent of endianness, word size, character size  Fully represents data type and value  Can be used to represent complex data structures, such as linked lists  Supports all C, C++ and Fortran types  C and Java (partial) implementations  Library operations:  Conversion to/from native format  Logical and arithmetic  Formatting and display  Architecture Independent Format for data  Independent of endianness, word size, character size  Fully represents data type and value  Can be used to represent complex data structures, such as linked lists  Supports all C, C++ and Fortran types  C and Java (partial) implementations  Library operations:  Conversion to/from native format  Logical and arithmetic  Formatting and display

User Interface  Parallel Debug View  Global view of processes and process sets  Tooltips for fast variable access  Regiser/unregister process to display in Debug View  Parallel Breakpoint  Global - applies to all processes regardless of job or job size  Set-based - applies to a set of processes for a particular job  Color used to distinguish current set  Current line markers  Multiple markers allowed  Different markers for registered/unregistered processes  Text highlighting colors  Parallel Debug View  Global view of processes and process sets  Tooltips for fast variable access  Regiser/unregister process to display in Debug View  Parallel Breakpoint  Global - applies to all processes regardless of job or job size  Set-based - applies to a set of processes for a particular job  Color used to distinguish current set  Current line markers  Multiple markers allowed  Different markers for registered/unregistered processes  Text highlighting colors

User Interface (cont…)  Variable View  Supports AIF data  Only fetches complex data types when variables are expanded  Array View  Prototype using custom widget  Allows 2-D view (slice) of multi-dimensional arrays  Likely to move to memory view  Variable View  Supports AIF data  Only fetches complex data types when variables are expanded  Array View  Prototype using custom widget  Allows 2-D view (slice) of multi-dimensional arrays  Likely to move to memory view

Demo