A Multi-layered Domain-specific Language for Stencil Computations
|
|
|
- Clinton Little
- 10 years ago
- Views:
Transcription
1 A Multi-layered Domain-specific Language for Stencil Computations Christian Schmitt, Frank Hannig, Jürgen Teich Hardware/Software Co-Design, University of Erlangen-Nuremberg Workshop ExaStencils 2014, Dresden, Germany; March 31, 2014
2 Challenges for Software Development in Computational Science and Engineering Current Situation Hardware: Modern HPC clusters are massively parallel Parallel intra-core, intra-node, and inter-node Increasing heterogeneity Applications: Become more complex with increasing computation power More complex (physical) models Code development in interdisciplinary teams Algorithm: Multigrid is a general idea Components and parameters depend on type of problem, grid,... Software development has to address all these issues! 1
3 Challenge: The 3 P s Performance Portable: high performance on different target hardware Competetive: performance comparable to hand-written code Portability Support different target architectures from the same algorithm description Support different target languages and technologies from the same algorithm description Productivity Algorithm description at a high level Hide low-level details from the user 2
4 Domain-Specific Language (DSL) Definitions Domain-Specific Languages: An Annotated Bibliography, Arie van Deursen, Paul Klint, und Joost Visser: A domain-specific language (DSL) is a programming language or executable specification language that offers, through appropriate notations and abstractions, expressive power focused on, and usually restricted to, a particular problem domain. Domain-Specific Languages, Martin Fowler: Domain-specific language: a computer programming language of limited expressiveness focused on particular domain. 3
5 Advantages of DSLs Productivity Yield average programmers from the difficulties of parallel programming Priority is given to the development of algorithms and applications, i. e., focus is not on details of a low-level implementation Performance Exploitation of generic parallel execution patterns in a domain at high abstraction level Reduced (restricted) expressiveness Full extraction of available parallelism Make use of knowledge (domain, architecture) for static and dynamic optimizations Portability and Scalability DSL and run-time system should be easily extendable in order to adapt to new architectures Applications (DSL codes) should remain the same Allows hardware engineers to introduce innovations without worrying about portability 4
6 Goals of a DSL Domain-specific: provide only expressions relevant to the topic Orthogonal: one single way of specifying something Expressive and compact: describe relevant constructs with few statements Abstract: work on a high-level point of view Adaptable: support complex things Adoptable: employ terms and concepts of the domain Regular: all terms should follow the same syntax and ideas Well-defined: non-ambiguous and easy to understand Talk about what should be computed, not how. (declarative vs. imperative) 5
7 Two Approaches to Creating DSLs Internal / embedded DSLs Utilize a general-purpose programming language (host language) Extension or restriction of the host language (or both at the same time) Extensions possible in form of libraries (e. g., data types, objects, methods), annotations, macros, etc. Same syntax as host language and usually the same compiler or interpreter External DSLs Completely new defined programming language More flexible and expressive than internal DSLs Syntax and semantics defined freely, but often related to existing languages Higher design effort, but supporting tools exist Potential to create a powerful semantic model as intermediate representation (IR) 6
8 Outline Motivation & Introduction to DSLs Language Design Guidelines The ExaStencils DSL 7
9 Language Design Guidelines
10 Language Design Guidelines It s all about simplicity! Randall Munroe. xkcd: Manuals URL: 8
11 Language Design Guidelines Identify users Language purpose Identify uses Appropriate representation Enable modularity Align abstract & concrete syntax Stay consistent Abstract syntax Concrete syntax Design Guidelines Be descriptive Language realization Language content Re-use existing languages Use domain concepts Focus on essentials Avoid redundancy based on Gabor Karsai et al. Design Guidelines for Domain Specific Languages. In: Proceedings of the 9th OOPSLA Workshop on Domain-Specific Modeling. 2009, pp
12 The ExaStencils DSL
13 Goals of the ExaStencils DSL Three different types of users with individual expectations: Natural scientists Care about effectivity of solving the problem Little knowledge of underlying methods No requirements to override compiler-chosen decisions Mathematicians Care about applicability and convergence of mathematical models Little interest in implementation specifics Want to extend/override compiler-chosen decisions with custom multigrid components Computer scientists Care about performance and software engineering approach Little interest in the mathematical problem Have to understand of the compiler and its decision process 10
14 ExaStencils DSL Multi-layered structure Top-down approach: From abstract to concrete Very few mandatory specifications on one layer room for SPL-based decisions on lower layers Decisions may be taken by user via specification in DSL Mandatory specifications include Shape and size of computational domain Continuous equation External DSL Better reflection of extensive ExaStencils approach Enables greater flexibility of different layers Eases tailoring of DSL layers to users 11
15 ExaStencils: Multi-layered DSL Structure Different layers of DSL tailored towards different users and knowledge: abstract 1 Continuous Domain & Continuous Model 2 3 Discrete Domain & Discrete Model Algorithmic Components & Parameters Hardware Description concrete 4 Complete Program Specification 12
16 ExaStencils: Multi-layered DSL Structure Different layers of DSL tailored towards different users and knowledge: Natural scientists Continuous Domain & Continuous Model Discrete Domain & Discrete Model Algorithmic Components & Parameters Complete Program Specification Hardware Description 12
17 ExaStencils: Multi-layered DSL Structure Different layers of DSL tailored towards different users and knowledge: Continuous Domain & Continuous Model Mathematicians Discrete Domain & Discrete Model Algorithmic Components & Parameters Complete Program Specification Hardware Description 12
18 ExaStencils: Multi-layered DSL Structure Different layers of DSL tailored towards different users and knowledge: Continuous Domain & Continuous Model Computer scientists Discrete Domain & Discrete Model Algorithmic Components & Parameters Complete Program Specification Hardware Description 12
19 ExaStencils: Multi-layered DSL Structure Continuous Domain & Continuous Model (Layer 1) Specification of Size and structure of computational domain Variables Functions and operators (pre-defined functions and operators also available) Mathematical problem 1 Domain d = UnitCube 2 3 Function f = 0 4 Unknown solution = 1 5 Operator Lapl = Laplacian 6 7 PDE pde { Lapl(solution) = f } 8 PDEBC bc { solution = 0 } 9 10 Accuracy = 7 13
20 ExaStencils: Multi-layered DSL Structure Discrete Domain & Discrete Model (Layer 2) Discretization of Computational domain into fragments (e. g., triangles) Variables to fields Specification of data type Selection of discretized location (cell based or node based) Transformation of energy functional to PDE or weak form 1 Fragment f1 = UnitCube 2 3 Discrete_Domain d {... } 4 5 Field<Double, 1>@nodes f 6 Stencil <Double, 1, 1, FD, 2>@nodes Lapl 7 8 //... 14
21 ExaStencils: Multi-layered DSL Structure Algorithmic Components & Parameters (Layer 3) Multigrid cycle type Multigrid components (e. g., selection of smoother) Definition of operations on sets (parts of the computational domain) Operations in matrix notation 1 Iteration smoother { u = Mu + Nf } 2 Set s1 = [0, 0] - [END, END], [+=1, +=1] 3 4 u(s1) = A(s1, s1) * u(s1) 5 6 Set s2 = ( [0,0] + [1,1] ), [+=2, +=2] 7 Set s3 = [0:2, 0:2], [+=2, +=2] 8 //... 15
22 ExaStencils: Multi-layered DSL Structure Complete Program Specification (Layer 4) Complete multigrid V-cycle, or Custom cycle types Operations depending on the multigrid level Loops over computational domain Communication and data exchange Custom output data formats 1 def V@(1 to 6) () : Unit { 2 repeat up 3 { GaussSeidel () } 4 Residual@(current) () 5 Restrict@(current) () 6 //... 7 def Application() : Unit { 8 var res0 : Real = sqrt ( () ) 9 // repeat up 10 { 11 () 12 } //... 16
23 ExaStencils: Multi-layered DSL Structure Target Hardware Description Availability of compute units (e. g., CPUs, GPUs, FPGAs) and capabilities Memory and cache architecture Cluster nodes (e. g., number of cores, types of available accelerators, available software) Complete cluster (e. g., number of nodes, interconnect topology and characteristics, I/O storage specifications) 1 Hardware { 2 MPI { 3 name "my cluster" 4 id HYBRID_CLUSTER 5 nodes 32 6 components { 7 XEON_CPU[2] 8 GTX_680_GPU[2] 9 } 10 //... 17
24 ExaStencils Concept End- Domain user expert Mathematician Software Hardware specialist expert DSL program Discretization and algorithm selection Software component selection via SPL Polyhedral optimization Code ceneration Exascale C++ Tuning towards target hardware 18
25 ExaStencils: Multi-layered DSL Structure Continuous Domain & Continuous Model discretization Discrete Domain & Discrete Model Domain Knowledge parametrization Algorithmic Components & Parameters specification Complete Program Specification optimization Intermediate Representation (IR) generation Exascale C++ Code Hardware Knowledge 19
26 ExaStencils Framework Implementation details Implemented in Scala Specialized data structures for each DSL layer Domain-knowledge modeled as compiler-wide accessible module A central instance keeps track of program state changes: StateManager Functionality separated into namespaces, e. g., exastencils.core: Log functionality, StateManager, compiler settings exastencils.core.collectors exastencils.datastructures: Annotations, program state duplication, trait Strategy, trait Transformation exastencils.datastructures.{l1, l2, l3, l4, ir} exastencils.parsers exastencils.prettyprinting 20
27 ExaStencils Framework Transformations Are grouped together in strategies Are atomic either applied completely or not at all Are applied to program state in depth search order May be applied to a part of the program state Carry an identifier Strategies Are applied by the StateManager Carry an identifier A standard strategy for sequential execution of transformations is provided Custom strategies possible 21
28 ExaStencils Framework Transition between layers Transition from one layer to another via transformations Step-wise from one layer to the next Domain knowledge needed for each transition (e. g., which discretization or which smoother to choose) Transitions are atomic no mix of nodes of different layers Intermediate Representation (IR) Layer Layer in which most optimizations take place Progress is made by application of many strategies with a single and narrow purpose Polyhedral model to be used for partitioning of computational domain Can be prettyprinted 22
29 ExaStencils Framework: Example transformations (IR) 1 var s = Strategy("example standard strategy") 2 3 // replace constant 1 under a certain node with 3 4 s += Transformation("t1", 5 { case x : Constant if(x.value == 1) 6 => Constant(3) 7 }, someprogramstatenode) 8 9 // rename all variables to j 10 s += Transformation("t2", 11 { case x : Variable 12 => Variable("j", x.type) 13 }) // duplicate all methods 16 s += Transformation("t3", 17 { case x : FunctionStatement 18 => List(x, FunctionStatement( 19 x.returntype, x.name + "_", x.parameters, x.body)) 20 }) 21 s.apply // execute transformations sequentially 23
30 Summary and Outlook Discussed in this talk Definitions of DSLs Language Guidelines Multi-layered DSL for ExaStencils Language examples Implementation details Future work Finalization of language specifications on different layers Transformations of more abstract layers to lowest layer (Layer 4 (Complete Program Specification)) Domain knowledge as a base for automated decision making and optimization 24
31 Thanks for listening. Questions? 25
HPC enabling of OpenFOAM R for CFD applications
HPC enabling of OpenFOAM R for CFD applications Towards the exascale: OpenFOAM perspective Ivan Spisso 25-27 March 2015, Casalecchio di Reno, BOLOGNA. SuperComputing Applications and Innovation Department,
Structure of Presentation. The Role of Programming in Informatics Curricula. Concepts of Informatics 2. Concepts of Informatics 1
The Role of Programming in Informatics Curricula A. J. Cowling Department of Computer Science University of Sheffield Structure of Presentation Introduction The problem, and the key concepts. Dimensions
Applications to Computational Financial and GPU Computing. May 16th. Dr. Daniel Egloff +41 44 520 01 17 +41 79 430 03 61
F# Applications to Computational Financial and GPU Computing May 16th Dr. Daniel Egloff +41 44 520 01 17 +41 79 430 03 61 Today! Why care about F#? Just another fashion?! Three success stories! How Alea.cuBase
Chapter 1. Dr. Chris Irwin Davis Email: [email protected] Phone: (972) 883-3574 Office: ECSS 4.705. CS-4337 Organization of Programming Languages
Chapter 1 CS-4337 Organization of Programming Languages Dr. Chris Irwin Davis Email: [email protected] Phone: (972) 883-3574 Office: ECSS 4.705 Chapter 1 Topics Reasons for Studying Concepts of Programming
Building Platform as a Service for Scientific Applications
Building Platform as a Service for Scientific Applications Moustafa AbdelBaky [email protected] Rutgers Discovery Informa=cs Ins=tute (RDI 2 ) The NSF Cloud and Autonomic Compu=ng Center Department
Language Evaluation Criteria. Evaluation Criteria: Readability. Evaluation Criteria: Writability. ICOM 4036 Programming Languages
ICOM 4036 Programming Languages Preliminaries Dr. Amirhossein Chinaei Dept. of Electrical & Computer Engineering UPRM Spring 2010 Language Evaluation Criteria Readability: the ease with which programs
Parallel Programming at the Exascale Era: A Case Study on Parallelizing Matrix Assembly For Unstructured Meshes
Parallel Programming at the Exascale Era: A Case Study on Parallelizing Matrix Assembly For Unstructured Meshes Eric Petit, Loïc Thebault, Quang V. Dinh May 2014 EXA2CT Consortium 2 WPs Organization Proto-Applications
DARPA, NSF-NGS/ITR,ACR,CPA,
Spiral Automating Library Development Markus Püschel and the Spiral team (only part shown) With: Srinivas Chellappa Frédéric de Mesmay Franz Franchetti Daniel McFarlin Yevgen Voronenko Electrical and Computer
Reconfigurable Architecture Requirements for Co-Designed Virtual Machines
Reconfigurable Architecture Requirements for Co-Designed Virtual Machines Kenneth B. Kent University of New Brunswick Faculty of Computer Science Fredericton, New Brunswick, Canada [email protected] Micaela Serra
Outline. High Performance Computing (HPC) Big Data meets HPC. Case Studies: Some facts about Big Data Technologies HPC and Big Data converging
Outline High Performance Computing (HPC) Towards exascale computing: a brief history Challenges in the exascale era Big Data meets HPC Some facts about Big Data Technologies HPC and Big Data converging
HPC Programming Framework Research Team
HPC Programming Framework Research Team 1. Team Members Naoya Maruyama (Team Leader) Motohiko Matsuda (Research Scientist) Soichiro Suzuki (Technical Staff) Mohamed Wahib (Postdoctoral Researcher) Shinichiro
HPC Wales Skills Academy Course Catalogue 2015
HPC Wales Skills Academy Course Catalogue 2015 Overview The HPC Wales Skills Academy provides a variety of courses and workshops aimed at building skills in High Performance Computing (HPC). Our courses
ParFUM: A Parallel Framework for Unstructured Meshes. Aaron Becker, Isaac Dooley, Terry Wilmarth, Sayantan Chakravorty Charm++ Workshop 2008
ParFUM: A Parallel Framework for Unstructured Meshes Aaron Becker, Isaac Dooley, Terry Wilmarth, Sayantan Chakravorty Charm++ Workshop 2008 What is ParFUM? A framework for writing parallel finite element
GEDAE TM - A Graphical Programming and Autocode Generation Tool for Signal Processor Applications
GEDAE TM - A Graphical Programming and Autocode Generation Tool for Signal Processor Applications Harris Z. Zebrowitz Lockheed Martin Advanced Technology Laboratories 1 Federal Street Camden, NJ 08102
16.1 MAPREDUCE. For personal use only, not for distribution. 333
For personal use only, not for distribution. 333 16.1 MAPREDUCE Initially designed by the Google labs and used internally by Google, the MAPREDUCE distributed programming model is now promoted by several
Run-time Variability Issues in Software Product Lines
Run-time Variability Issues in Software Product Lines Alexandre Bragança 1 and Ricardo J. Machado 2 1 Dep. I&D, I2S Informática Sistemas e Serviços SA, Porto, Portugal, [email protected] 2 Dep.
HPC Deployment of OpenFOAM in an Industrial Setting
HPC Deployment of OpenFOAM in an Industrial Setting Hrvoje Jasak [email protected] Wikki Ltd, United Kingdom PRACE Seminar: Industrial Usage of HPC Stockholm, Sweden, 28-29 March 2011 HPC Deployment
Introduction to Generative Software Development
Introduction to Generative Software Development Krzysztof Czarnecki University of Waterloo [email protected] www.generative-programming.org Goals What is to be achieved? Basic understanding of Generative
Control 2004, University of Bath, UK, September 2004
Control, University of Bath, UK, September ID- IMPACT OF DEPENDENCY AND LOAD BALANCING IN MULTITHREADING REAL-TIME CONTROL ALGORITHMS M A Hossain and M O Tokhi Department of Computing, The University of
International Workshop on Field Programmable Logic and Applications, FPL '99
International Workshop on Field Programmable Logic and Applications, FPL '99 DRIVE: An Interpretive Simulation and Visualization Environment for Dynamically Reconægurable Systems? Kiran Bondalapati and
HIGH PERFORMANCE BIG DATA ANALYTICS
HIGH PERFORMANCE BIG DATA ANALYTICS Kunle Olukotun Electrical Engineering and Computer Science Stanford University June 2, 2014 Explosion of Data Sources Sensors DoD is swimming in sensors and drowning
Big Data looks Tiny from the Stratosphere
Volker Markl http://www.user.tu-berlin.de/marklv [email protected] Big Data looks Tiny from the Stratosphere Data and analyses are becoming increasingly complex! Size Freshness Format/Media Type
Cluster, Grid, Cloud Concepts
Cluster, Grid, Cloud Concepts Kalaiselvan.K Contents Section 1: Cluster Section 2: Grid Section 3: Cloud Cluster An Overview Need for a Cluster Cluster categorizations A computer cluster is a group of
LDIF - Linked Data Integration Framework
LDIF - Linked Data Integration Framework Andreas Schultz 1, Andrea Matteini 2, Robert Isele 1, Christian Bizer 1, and Christian Becker 2 1. Web-based Systems Group, Freie Universität Berlin, Germany [email protected],
Implementing a Bidirectional Model Transformation Language as an Internal DSL in Scala
Implementing a Bidirectional Model Transformation Language as an Internal DSL in Scala BX 14: 3rd International Workshop on Bidirectional Transformations @EDBT/ICDT 14, Athens, Greece Arif Wider Humboldt-University
Making Multicore Work and Measuring its Benefits. Markus Levy, president EEMBC and Multicore Association
Making Multicore Work and Measuring its Benefits Markus Levy, president EEMBC and Multicore Association Agenda Why Multicore? Standards and issues in the multicore community What is Multicore Association?
Modeling Turnpike: a Model-Driven Framework for Domain-Specific Software Development *
for Domain-Specific Software Development * Hiroshi Wada Advisor: Junichi Suzuki Department of Computer Science University of Massachusetts, Boston [email protected] and [email protected] Abstract. This
Towards real-time image processing with Hierarchical Hybrid Grids
Towards real-time image processing with Hierarchical Hybrid Grids International Doctorate Program - Summer School Björn Gmeiner Joint work with: Harald Köstler, Ulrich Rüde August, 2011 Contents The HHG
Distributed communication-aware load balancing with TreeMatch in Charm++
Distributed communication-aware load balancing with TreeMatch in Charm++ The 9th Scheduling for Large Scale Systems Workshop, Lyon, France Emmanuel Jeannot Guillaume Mercier Francois Tessier In collaboration
Design and Optimization of OpenFOAM-based CFD Applications for Hybrid and Heterogeneous HPC Platforms
Design and Optimization of OpenFOAM-based CFD Applications for Hybrid and Heterogeneous HPC Platforms Amani AlOnazi, David E. Keyes, Alexey Lastovetsky, Vladimir Rychkov Extreme Computing Research Center,
Layered Approach to Development of OO War Game Models Using DEVS Framework
Layered Approach to Development of OO War Game Models Using DEVS Framework Chang Ho Sung*, Su-Youn Hong**, and Tag Gon Kim*** Department of EECS KAIST 373-1 Kusong-dong, Yusong-gu Taejeon, Korea 305-701
A Case Study - Scaling Legacy Code on Next Generation Platforms
Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 00 (2015) 000 000 www.elsevier.com/locate/procedia 24th International Meshing Roundtable (IMR24) A Case Study - Scaling Legacy
FRIEDRICH-ALEXANDER-UNIVERSITÄT ERLANGEN-NÜRNBERG
FRIEDRICH-ALEXANDER-UNIVERSITÄT ERLANGEN-NÜRNBERG INSTITUT FÜR INFORMATIK (MATHEMATISCHE MASCHINEN UND DATENVERARBEITUNG) Lehrstuhl für Informatik 10 (Systemsimulation) Massively Parallel Multilevel Finite
What is a programming language?
Overview Introduction Motivation Why study programming languages? Some key concepts What is a programming language? Artificial language" Computers" Programs" Syntax" Semantics" What is a programming language?...there
Fall 2012 Q530. Programming for Cognitive Science
Fall 2012 Q530 Programming for Cognitive Science Aimed at little or no programming experience. Improve your confidence and skills at: Writing code. Reading code. Understand the abilities and limitations
Distributed Computing and Big Data: Hadoop and MapReduce
Distributed Computing and Big Data: Hadoop and MapReduce Bill Keenan, Director Terry Heinze, Architect Thomson Reuters Research & Development Agenda R&D Overview Hadoop and MapReduce Overview Use Case:
MPI and Hybrid Programming Models. William Gropp www.cs.illinois.edu/~wgropp
MPI and Hybrid Programming Models William Gropp www.cs.illinois.edu/~wgropp 2 What is a Hybrid Model? Combination of several parallel programming models in the same program May be mixed in the same source
Petascale Software Challenges. William Gropp www.cs.illinois.edu/~wgropp
Petascale Software Challenges William Gropp www.cs.illinois.edu/~wgropp Petascale Software Challenges Why should you care? What are they? Which are different from non-petascale? What has changed since
Dynamic Network Analyzer Building a Framework for the Graph-theoretic Analysis of Dynamic Networks
Dynamic Network Analyzer Building a Framework for the Graph-theoretic Analysis of Dynamic Networks Benjamin Schiller and Thorsten Strufe P2P Networks - TU Darmstadt [schiller, strufe][at]cs.tu-darmstadt.de
RevoScaleR Speed and Scalability
EXECUTIVE WHITE PAPER RevoScaleR Speed and Scalability By Lee Edlefsen Ph.D., Chief Scientist, Revolution Analytics Abstract RevoScaleR, the Big Data predictive analytics library included with Revolution
Integrated Model-based Software Development and Testing with CSD and MTest
Integrated Model-based Software Development and Testing with CSD and Andreas Rau / Mirko Conrad / Helmut Keller / Ines Fey / Christian Dziobek DaimlerChrysler AG, Germany fa-stz-andreas.rau Mirko.Conrad
Iterative Solvers for Linear Systems
9th SimLab Course on Parallel Numerical Simulation, 4.10 8.10.2010 Iterative Solvers for Linear Systems Bernhard Gatzhammer Chair of Scientific Computing in Computer Science Technische Universität München
Converged, Real-time Analytics Enabling Faster Decision Making and New Business Opportunities
Technology Insight Paper Converged, Real-time Analytics Enabling Faster Decision Making and New Business Opportunities By John Webster February 2015 Enabling you to make the best technology decisions Enabling
Software Architecture
Cairo University Faculty of Computers and Information Computer Science Department Premasters Studies Software Architecture Report on Software Product Line Submitted to: Dr. Hany Ammar Submitted by: Hadeel
Parallel Computing. Benson Muite. [email protected] http://math.ut.ee/ benson. https://courses.cs.ut.ee/2014/paralleel/fall/main/homepage
Parallel Computing Benson Muite [email protected] http://math.ut.ee/ benson https://courses.cs.ut.ee/2014/paralleel/fall/main/homepage 3 November 2014 Hadoop, Review Hadoop Hadoop History Hadoop Framework
Scientific Computing Programming with Parallel Objects
Scientific Computing Programming with Parallel Objects Esteban Meneses, PhD School of Computing, Costa Rica Institute of Technology Parallel Architectures Galore Personal Computing Embedded Computing Moore
The Fastest Way to Parallel Programming for Multicore, Clusters, Supercomputers and the Cloud.
White Paper 021313-3 Page 1 : A Software Framework for Parallel Programming* The Fastest Way to Parallel Programming for Multicore, Clusters, Supercomputers and the Cloud. ABSTRACT Programming for Multicore,
Programming Languages & Tools
4 Programming Languages & Tools Almost any programming language one is familiar with can be used for computational work (despite the fact that some people believe strongly that their own favorite programming
BigData. An Overview of Several Approaches. David Mera 16/12/2013. Masaryk University Brno, Czech Republic
BigData An Overview of Several Approaches David Mera Masaryk University Brno, Czech Republic 16/12/2013 Table of Contents 1 Introduction 2 Terminology 3 Approaches focused on batch data processing MapReduce-Hadoop
today 1,700 special programming languages used to communicate in over 700 application areas.
today 1,700 special programming languages used to communicate in over 700 application areas. Computer Software Issues, an American Mathematical Association Prospectus, July 1965, quoted in P. J. Landin
Report: Declarative Machine Learning on MapReduce (SystemML)
Report: Declarative Machine Learning on MapReduce (SystemML) Jessica Falk ETH-ID 11-947-512 May 28, 2014 1 Introduction SystemML is a system used to execute machine learning (ML) algorithms in HaDoop,
Easier - Faster - Better
Highest reliability, availability and serviceability ClusterStor gets you productive fast with robust professional service offerings available as part of solution delivery, including quality controlled
A DSL-based Approach to Software Development and Deployment on Cloud
2010 24th IEEE International Conference on Advanced Information Networking and Applications A DSL-based Approach to Software Development and Deployment on Cloud Krzysztof Sledziewski 1, Behzad Bordbar
P013 INTRODUCING A NEW GENERATION OF RESERVOIR SIMULATION SOFTWARE
1 P013 INTRODUCING A NEW GENERATION OF RESERVOIR SIMULATION SOFTWARE JEAN-MARC GRATIEN, JEAN-FRANÇOIS MAGRAS, PHILIPPE QUANDALLE, OLIVIER RICOIS 1&4, av. Bois-Préau. 92852 Rueil Malmaison Cedex. France
Difference Between Model-Driven and Traditional Iterative Software Development
Process Implications of Model-Driven Software Development Author: Jorn Bettin Version 1.0 September 2004 Copyright 2003, 2004 SoftMetaWare Ltd. SoftMetaWare is a trademark of SoftMetaWare Ltd. All other
The Scientific Data Mining Process
Chapter 4 The Scientific Data Mining Process When I use a word, Humpty Dumpty said, in rather a scornful tone, it means just what I choose it to mean neither more nor less. Lewis Carroll [87, p. 214] In
Quotes from Object-Oriented Software Construction
Quotes from Object-Oriented Software Construction Bertrand Meyer Prentice-Hall, 1988 Preface, p. xiv We study the object-oriented approach as a set of principles, methods and tools which can be instrumental
Highly Scalable Dynamic Load Balancing in the Atmospheric Modeling System COSMO-SPECS+FD4
Center for Information Services and High Performance Computing (ZIH) Highly Scalable Dynamic Load Balancing in the Atmospheric Modeling System COSMO-SPECS+FD4 PARA 2010, June 9, Reykjavík, Iceland Matthias
Introduction to Digital System Design
Introduction to Digital System Design Chapter 1 1 Outline 1. Why Digital? 2. Device Technologies 3. System Representation 4. Abstraction 5. Development Tasks 6. Development Flow Chapter 1 2 1. Why Digital
Software Engineering Reference Framework
Software Engineering Reference Framework Michel Chaudron, Jan Friso Groote, Kees van Hee, Kees Hemerik, Lou Somers, Tom Verhoeff. Department of Mathematics and Computer Science Eindhoven University of
A Software and Hardware Architecture for a Modular, Portable, Extensible Reliability. Availability and Serviceability System
1 A Software and Hardware Architecture for a Modular, Portable, Extensible Reliability Availability and Serviceability System James H. Laros III, Sandia National Laboratories (USA) [1] Abstract This paper
D5.6 Prototype demonstration of performance monitoring tools on a system with multiple ARM boards Version 1.0
D5.6 Prototype demonstration of performance monitoring tools on a system with multiple ARM boards Document Information Contract Number 288777 Project Website www.montblanc-project.eu Contractual Deadline
Principles and characteristics of distributed systems and environments
Principles and characteristics of distributed systems and environments Definition of a distributed system Distributed system is a collection of independent computers that appears to its users as a single
Big Data Systems CS 5965/6965 FALL 2015
Big Data Systems CS 5965/6965 FALL 2015 Today General course overview Expectations from this course Q&A Introduction to Big Data Assignment #1 General Course Information Course Web Page http://www.cs.utah.edu/~hari/teaching/fall2015.html
David Rioja Redondo Telecommunication Engineer Englobe Technologies and Systems
David Rioja Redondo Telecommunication Engineer Englobe Technologies and Systems About me David Rioja Redondo Telecommunication Engineer - Universidad de Alcalá >2 years building and managing clusters UPM
Design with Reuse. Building software from reusable components. Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 14 Slide 1
Design with Reuse Building software from reusable components. Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 14 Slide 1 Objectives To explain the benefits of software reuse and some reuse
BSC vision on Big Data and extreme scale computing
BSC vision on Big Data and extreme scale computing Jesus Labarta, Eduard Ayguade,, Fabrizio Gagliardi, Rosa M. Badia, Toni Cortes, Jordi Torres, Adrian Cristal, Osman Unsal, David Carrera, Yolanda Becerra,
Recent Advances in Periscope for Performance Analysis and Tuning
Recent Advances in Periscope for Performance Analysis and Tuning Isaias Compres, Michael Firbach, Michael Gerndt Robert Mijakovic, Yury Oleynik, Ventsislav Petkov Technische Universität München Yury Oleynik,
Foundations of Model-Driven Software Engineering
Model-Driven Software Engineering Foundations of Model-Driven Software Engineering Dr. Jochen Küster ([email protected]) Contents Introduction to Models and Modeling Concepts of Model-Driven Software
1/20/2016 INTRODUCTION
INTRODUCTION 1 Programming languages have common concepts that are seen in all languages This course will discuss and illustrate these common concepts: Syntax Names Types Semantics Memory Management We
Microsoft HPC. V 1.0 José M. Cámara ([email protected])
Microsoft HPC V 1.0 José M. Cámara ([email protected]) Introduction Microsoft High Performance Computing Package addresses computing power from a rather different approach. It is mainly focused on commodity
Position Classification Flysheet for Computer Science Series, GS-1550. Table of Contents
Position Classification Flysheet for Computer Science Series, GS-1550 Table of Contents SERIES DEFINITION... 2 OCCUPATIONAL INFORMATION... 2 EXCLUSIONS... 4 AUTHORIZED TITLES... 5 GRADE LEVEL CRITERIA...
Expanding the CASEsim Framework to Facilitate Load Balancing of Social Network Simulations
Expanding the CASEsim Framework to Facilitate Load Balancing of Social Network Simulations Amara Keller, Martin Kelly, Aaron Todd 4 June 2010 Abstract This research has two components, both involving the
MEng, BSc Applied Computer Science
School of Computing FACULTY OF ENGINEERING MEng, BSc Applied Computer Science Year 1 COMP1212 Computer Processor Effective programming depends on understanding not only how to give a machine instructions
NEUROMATHEMATICS: DEVELOPMENT TENDENCIES. 1. Which tasks are adequate of neurocomputers?
Appl. Comput. Math. 2 (2003), no. 1, pp. 57-64 NEUROMATHEMATICS: DEVELOPMENT TENDENCIES GALUSHKIN A.I., KOROBKOVA. S.V., KAZANTSEV P.A. Abstract. This article is the summary of a set of Russian scientists
Introduction to Virtual Machines
Introduction to Virtual Machines Introduction Abstraction and interfaces Virtualization Computer system architecture Process virtual machines System virtual machines 1 Abstraction Mechanism to manage complexity
Algorithm & Flowchart & Pseudo code. Staff Incharge: S.Sasirekha
Algorithm & Flowchart & Pseudo code Staff Incharge: S.Sasirekha Computer Programming and Languages Computers work on a set of instructions called computer program, which clearly specify the ways to carry
Uintah Framework. Justin Luitjens, Qingyu Meng, John Schmidt, Martin Berzins, Todd Harman, Chuch Wight, Steven Parker, et al
Uintah Framework Justin Luitjens, Qingyu Meng, John Schmidt, Martin Berzins, Todd Harman, Chuch Wight, Steven Parker, et al Uintah Parallel Computing Framework Uintah - far-sighted design by Steve Parker
Embedded Software Development with MPS
Embedded Software Development with MPS Markus Voelter independent/itemis The Limitations of C and Modeling Tools Embedded software is usually implemented in C. The language is relatively close to the hardware,
Document Engineering: Analyzing and Designing the Semantics of Business Service Networks
Document Engineering: Analyzing and Designing the Semantics of Business Service Networks Dr. Robert J. Glushko University of California Berkeley [email protected] Tim McGrath Universal Business
1 External Model Access
1 External Model Access Function List The EMA package contains the following functions. Ema_Init() on page MFA-1-110 Ema_Model_Attr_Add() on page MFA-1-114 Ema_Model_Attr_Get() on page MFA-1-115 Ema_Model_Attr_Nth()
Scalable and High Performance Computing for Big Data Analytics in Understanding the Human Dynamics in the Mobile Age
Scalable and High Performance Computing for Big Data Analytics in Understanding the Human Dynamics in the Mobile Age Xuan Shi GRA: Bowei Xue University of Arkansas Spatiotemporal Modeling of Human Dynamics
Hadoop. http://hadoop.apache.org/ Sunday, November 25, 12
Hadoop http://hadoop.apache.org/ What Is Apache Hadoop? The Apache Hadoop software library is a framework that allows for the distributed processing of large data sets across clusters of computers using
