on high performance software component modelsgraal/avalon inria project-team lip, ens lyon, france...

47
On High Performance Software Component Models Christian Perez [email protected] GRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010

Upload: others

Post on 12-Mar-2021

3 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

On High PerformanceSoftware Component Models

Christian [email protected]/AVALON INRIA Project-Team

LIP, ENS Lyon, France

HPC, Grids and Clouds WorkshopCetraro, Italy, 25 June 2010

Page 2: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 2

Outline of the talks

Overview of component modelsExamples of composition operators through applications

MxNMaster-WorkerData-sharingSpatial & temporal compositionAlgorithmic skeletons

Towards a concept-extensible component modelHLCM

Conclusion

Page 3: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 3

Applications: Numerical Scientific Simulations

More and more complexCode coupling

Need model to handle such complexity

SimpleEfficient

Climatology Satellite

Astrophysics Electromagnetism

Page 4: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 4

The Super/Grid/Cloud/Sky Computer

Hierarchical networksWAN

Internet, Private WAN, etc.LAN

EthernetSAN

Infiniband, …Computing resources

Homogeneous clustersMany-core nodesWith/without GPU

Super computers…

Fast evolution!Heterogeneity!

Homogeneous cluster

SAN

SAN

Homogeneous cluster

LAN

WAN

Parallel computer

Visualization

Page 5: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 5

Application on Resources?

Visualization

Homogeneous cluster

SAN

SAN

Homogeneous cluster

LAN

WAN

Supercomputer

Thermal

Optics

Dynamics

Structural Mechanics

Page 6: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 6

Application on Resources? Abstractions!

Visualization

Homogeneous cluster

SAN

SAN

Homogeneous cluster

LAN

WAN

Supercomputer

Thermal

Optics

Dynamics

Structural Mechanics

Programming Environment

Page 7: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 7

Software Component

Technology that advocates for compositionOld idea (late 60’s)Assembling rather than developing

Aim of a component: to be composed!Spatial compositionTemporal composition

Example of success storiesPipe (in OS)Data flow models

Page 8: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 8

Software Component: Black Box and Ports

A component is a black box that interacts by its portsPort ~ access point

NameDescription and protocol

Usually(Object) InterfaceMessage passing

component MyComponent{

provides IExample1 to_client1;provides IExample2 to_client2;uses Itfaces2 to_server;

};

interface IExample1{

void factorise(in Matrix mat);};

interface IExample2 { … };

interface Itfaces2 { … };

Page 9: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 9

Assembly of Software Components

Description of an assemblyDynamically (API)Statically

Architecture Description Language (ADL)

DescribesComponent instancesPort connection

Available in many CM

Primitive and composite components

C2C2

C3C3C4C4

C5C5

C1C1 C5C5

Composite

Page 10: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 10

Many component models

Industry (mainly distributed models)EJB – Entreprise Java Bean (SUN)CCM – CORBA Component Model (OMG)SCA – Services Component Architecture (OSOA).NET (Microsoft)…

ResearchCCA – Common Component Architecture (CCA Forum)Fractal (France télécom & INRIA)GCM – Grid Component Model (CoreGrid)Grid.it / ASSIST (UNIPI)…

Page 11: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 11

Which Usage for Components?

Components as an execution model entityComponents are usually thought to describe the actual architecture of an application at execution

Architecture == static structureModifications on the responsibility of the application

Components as a programming model entityDoes it make sense?

Components are already a first class citizen of ADLIf applications will be made of components, there is a clear need to have high level component assembly language

Page 12: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

Let introduce an hydrogeology application

Parallel ComponentMxN Communications

Page 13: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 13

Application in Hydrogeology: Saltwater Intrusion

Coupled physical modelsOne model = one softwareSaltwater intrusion

Flow / transportReactive transport

Transport / chemistry

Hydrogrid project,supported by theFrench ACI-GRID

flow : velocity and pressure function of the densityDensity function of salt concentration

Salt transport : by convection (velocity) and diffusion

Page 14: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 14

Numerical coupling in saltwater intrusion

Transport Flow

time

t = 0

t = Δt

Control

iterative scheme at each time step

Page 15: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 15

Components and communications of PCSI

Flowcomponent

Transport component

Controllercomponent

scalarsscalars

concentration

velocity

Logcomponent

veloc

ity concent.

Page 16: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 16

Components and interfaces of PCSI

Flow TransportMPI MPI

Page 17: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 17

SPMD Components

HPCComponent

A

HPCComponent

B

What the application designer should see…

… and how it must be implemented !

Component A Component B

Page 18: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 18

Components for code coupling:SPMD paradigm in GridCCM

SPMD componentParallelism is a non-functionalproperty of a component

It is an implementation issueCollection of sequential components

SPMD execution modelSupport of distributed arguments

API for data redistributionAPI for communication scheduling w.r.t. network properties

Support of parallel exceptions

0

50

100

150

200

250

300

1->1 2->2 4->4 8->8

Component configuration

0

20

40

60

80

100

120

140

160

Late

ncy

in m

icro

seco

nde

Java/EthC++/EthC++/MyriC++/Myri

Object Request Broker

CORBA stub/skeleton

CommunicationLibrary ( MPI)

Application

Application view management- Data distribution description

Communication management- Comm. Matrix computation- Comm. Matrix scheduling- Communication execution

RedistributionLibrary 1

CommunicationLibrary

GridCCM runtime

SchedulingLibrary

0

20

40

60

80

100

120

6 7 8 9 10 11 12 13 14 15 16Number of processors per paralle

Without scheduWith scheduling

Aggregated Bandwidth (MB/s)

Component A Component B

Page 19: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 19

What about Collective Communications?

Using message passing libraries (ex. MPI) inside componentsUsing parallel ports (NxM) between components

No collective communicationsat higher levelTwo communication models to handle

P1P2

Pn

P3MPI

P1

Pm

MPI

...

...

Optics

StructuralMechanics

Page 20: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 20

Collective Communications between Components

GoalsEfficientTransparentFits in component model

ImplementationMPIPoint-2-Point comm.

Collectivecommunications

Col

lect

ive

com

mun

icat

ions

Collective

comm

unications

Page 21: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

Let look at another hydrogeology application

Master-Worker Paradigm

Page 22: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 22

Application in Hydrogeology: Saltwater Intrusion

Coupled physical modelsOne model = one softwareSaltwater intrusion

Flow / transportReactive transport

Transport / chemistry

Hydrogrid project,supported by theFrench ACI-GRID

flow : velocity and pressure function of the densityDensity function of salt concentration

Salt transport : by convection (velocity) and diffusion

Page 23: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 23

Chemistryon the

N species

Transport N

time

t = 0

t = Δt

control

Transport 1

Iterative scheme at each time step

N species

…..

Numerical coupling in reactive transport

Page 24: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 24

Transport component

Chemistry component

concentrations

Controller component

Transport component

Transport component

Transport component

Transport component

N components

Component Model for Reactive Transport

MPIMPI

Page 25: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 25

Different infrastructuresMulti-core processors, SMP, clusters, grids, etc.

Resources dependant propertiesNumber of workersRequest transport and scheduling policy

WWworkermaster

masterrequest deliverypolicy

WWworkerAt the burden of the programmer

ComplexNo transparence

ObjectivesTransparencyRe-use existing Master-Worker environments

Limits with Existing Component Models

workermaster

Page 26: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 26

Master-Worker oriented Component Collection

Programmer/designer view

Collection

binding

master

worker

Exposed provided port

Resourcesinfrastructure

Round-Robin

Framework implementation view

#workers+

Pattern selection

Set of request transport mechanism patterns

1. Random2. Round-Robin3. NetSolve4. Diet

Page 27: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

Let examine at a climatology application

Multiple composition operatorsComposing middleware

Page 28: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 28

Ocean-Atmosphere Numerical Simulations

World climate behaviorEnergy transport: Equator Pole

Parameterization designIndependent and simultaneous simulations

Code couplingARPEGE v4.5 (atmospheric simulation)OPA v9 +LIM (ocean simulation)OASIS v3 (code coupling)

Master-Worker + Data SharingPlatform target

Grid

Page 29: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 29

Data Sharing Overview

Multiple concurrent accesses to a piece of dataData localization and management

Intra-process : local shared memoryIntra-node: shared memory segmentIntra-cluster: distributed shared memory (DSM)Intra-grid: grid data sharing service (JuxMem, BlobSeer)

Data

B

CA

D

Read / write

Read / write

write

Read

Page 30: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 30

Data Shared Port Model

component D {shares array<float> u;

};

component A {accesses array<float> v;

};

Transparent data localization and managementLocal shared memory, DSM, BlobSeer, …

Datadata sharing management service

B

DA

Principle: rely on a data sharing management service

data_ref

accesses port shares port

interface data_handling{

float* get_pointer();long get_size();void acquire();void acquire_read(); void release();

}

Runtime

Page 31: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 31

Climatology Application Composing Middleware: The Model

master

worker

log

Description in ULCM(~50 lines)

Primitive Worker Component:MPI-based code coupling (OASIS)

Page 32: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 32

Climatology Application Composing Middleware: An Execution Model

master

worker

logmaster

log

workerworkerworker

Provider

Manager

proxy

Simple scenarioCollection: CCM Proxy based patternShared Mem.: JuxMem

Description in ULCM(~50 lines)

Page 33: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 33

Climatology Application Composing Middleware: Another Execution Model

LA

LALA

CCM/DIET

MA

master

logProvider

Manager

DIET/CCM DIET/CCMDIET/CCM

workerworkerworker

More complex scenarioCollection: DIETShared Mem.: JuxMem

Page 34: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

Spatial and Temporal Composition

Page 35: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 35

Workflow Models vs. “Classical” Component Models

-+

Resources usage

+-

Code coupling

SimplicityAssembly

++Component models

++Workflowmodels

Page 36: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 36

Principle of STCM:Spatio-Temporal Component Model

Combination of component and workflow models

Spatial and temporal dimensions at the same level of assemblies

Component-taskInput and output ports (temporal)Spatial portsTask

Assembly modelAdaptation of a workflow language

Abstract Grid Workflow Language (ASKALON)end

start

CB

A

Page 37: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

And Algorithmic Skeletons?

Page 38: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 38

Overview of STKM:Spatio-Temporal Skeleton Component Model

Assembly modelSTCM assembly + skeleton constructsAn STKM skeleton is a composite with a predefined behaviorParameterization

Wrapping componentsUsage in spatial and temporal dimension

Port cardinality principle (temporal dimension)

step3

step1

pipe

bp1 p2 p3a

Parallel step2

Page 39: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

So?

Page 40: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 40

A Rich Set of Composition Operators

At port levelData shared portCollective communication

At component levelSPMD paradigm (MxN communication)

At assembly levelCollective operationsMaster-worker paradigm

Assembly kindAlgorithmic SkeletonsSpatial and temporal composition…

Salome

SciRun2

GridCCM

ULCM

Page 41: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

From Programming Model toEfficient Execution Model

How to implement all these composition operators?

Page 42: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 42

Towards ADL Compilation

All “advanced” component construct implementations are based on some transformations to a “low/execution” level component modelCompilation enables to adapt abstraction to the actual resources

Transparent adaptation if the compilation is on the fly

“High Level”Component

Model

“Simple”Component

ModelCompilation

ProgrammingModel

ExecutionModel

Page 43: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 43

Dedicated or not Implementation?

Dedicated implementation (aka “classical” way)Define a model with a fixed number of composition operatorsExample:

ULCM: Spatial & Temporal, Master-Worker, Data Sharing

How to add new composition operators?

Towards a non-dedicated implementationDefine an intermediate model for expert to let them define composition operators

End UserComponent

Model

“Simple”Component

ModelCompilation

ProgrammingModel

ExecutionModel

“High Level”Component

Model

Intermediate/ExpertModel

Translation

Page 44: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 44

HLCM: High Level Component Model

Major conceptsHierarchical modelGeneric model

Support meta-programming (template à la C++)Connector based

Primitive and compositeCurrently static

HLCMi: an implementation of HLCMModel-transformation basedAlready implemented connectors

Use/Provide, Shared Data, Collective Communications, MxN, some Skeletons

ConnectorComponent Component

rolesroles

portsports

Page 45: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

Conclusion

Page 46: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 46

Software component is a promising technology for handlingcode & resource complexityComponent model as a programming model

A lot of composition operators has been already defined & prototypedRe-use existing specialized middlewareGood feedback from users

Open issuesOther operators? Finer grain?

MapReduce, Domain decomposition, AMR, …HLCM expressiveness and performance

Temporal composition seems possibleAutomatic component/connector selection & configuration

Need to interact with resources (cf French ANR COOP project)…

Conclusion

Page 47: On High Performance Software Component ModelsGRAAL/AVALON INRIA Project-Team LIP, ENS Lyon, France HPC, Grids and Clouds Workshop Cetraro, Italy, 25 June 2010. June 25th 2010 C. Perez

June 25th 2010 C. Perez -- On High Performance Component Model 47

Acknowledgement

Thierry Priol (INRIA)Marco Danelutto (U. Pisa)Eric Maisonnave (CERFACS)Jocelyne Erhel (INRIA)Andre Ribes (EDF R&D)Hinde Bouziane (INRIA)Julien Bigot (INRIA)…