UQ pipeline implementa,on and so0ware integra,on

Size: px
Start display at page:

Download "UQ pipeline implementa,on and so0ware integra,on"

Transcription

1 UQ pipeline implementa,on and so0ware integra,on michael aivazis psaap review october 2009

2 Table of contents 1. Introduc,on people, computa,onal resources 2. Overview of the UQ pipeline problem scope pipeline architecture the ingredients: pyre, mys,c, VTF, eureka capabili,es, verifica,on and valida,on 3. Status and outlook summary of work in progress planned ac,vi,es for the remainder of the year tasks that specifically address recommenda,ons from the last review assessment 2

3 introduc,on people computa,onal resources resource u,liza,on so0ware engineering 3

4 introduc,on: people The so0ware integra,on team From CSE: Michael Aivazis, Sharon BruneS, Julian Cummings, Jan Lindheim, San,ago Lombeyda, Mike McKerns, Mark Stalzer, Leif Strand From Solid Dynamics and Materials: Michael Or,z, Anna Pandolfi, Bo Li From UQ: Tim Sullivan Expect the group to grow with representa,on from Experimental Science and CFD 4

5 introduc,on: computa,onal resources Computa,onal resources 12,800 opteron cores 512 opteron cores 2144 opteron cores 810 opteron cores 5

6 introduc,on: computa,onal resources Computa,onal resources details cores cpu type memory (GB/core) interconnect os compilers shc (CACR) 810 AMD Opteron 2.{2,4,5} GHz 2 Infiniband RHEL Pathscale coyote (LANL) ubgl (LLNL) lobo (LANL) hera (LLNL) cerrillos (LANL) 2,580 82,000 4,352 13, AMD Opteron 2.6 GHz IBM PowerPC2 700 MHz AMD Opteron 2.2 GHz AMD Opteron 2.3 GHz AMD Opteron Cell 4 Infiniband RHEL Pathscale 1/2 BG torus+tree SuSE IBM 2 Infiniband CHAOS Pathscale 2 4 1/4 Infiniband Infiniband between Opteron cores CHAOS Modified RHEL Pathscale IBM/Intel 6

7 introduc,on: resource u,liza,on Resource u,liza,on CPU cycles used by Caltech Jan 1 to Oct 20, ,564,069 6,024,505 hrs , ,523 hera coyote lobo shc 7

8 introduc,on: so0ware engineering Complexity management Sources: Project size: asset complexity: number of lines of code, files, entry points dependencies: number of modules, third party libraries run,me complexity: number of objects types and instances Problem size: number of processors needed, amount of memory, cpu,me Project longevity: life cycle, duty cycle cost/benefit of reuse managing change: people, hardware, so0ware, technologies Locality of needed resources compute/persist: where, how, when, who Usability: access, interfaces, security, etc Risk mi,ga,on: Promote and ensure key prac,ces weekly mee,ngs coding and documenta,on standards uniform builds, tes,ng: regression, benchmarks, verifica,on, valida,on so0ware process: svn, trac, wiki, and doxygen, epydoc, tes,ng: unit, component, applica,on; muta,on, regression; soon to be automated Flexible so0ware architecture 8

9 the UQ pipeline problem scope pipeline architecture the ingredients: pyre, mys,c, VTF, eureka capabili,es, verifica,on and valida,on 9

10 the UQ pipeline: scope The physical system High fidelity modeling of ballis,c impact requires non linear kinema,cs advanced material models a method for handling the extreme deforma,ons caused by the penetra,on fracture and fragmenta,on erosion robust contact detec,on and resolu,on algorithms 10

11 the UQ pipeline: scope Problem scope Our methodology involves global op,miza,ons that require efficient explora,on of a huge parameter space D F is the largest devia,on in performance when each input parameter is allowed to vary over its en,re range D F-G is very similar Need to stage, monitor and analyze the output of thousands of simula,ons against the backdrop of constantly shi0ing computa,onal resources Managing such a complex computa,onal environment requires a sophis,cated so0ware infrastructure Pyre, the Caltech ASC component framework, has par,al support for much of the required infrastructure 11

12 the UQ pipeline: scope Workflow overview Evalua,ng the model diameters involves analyzing the available datasets from previous runs preparing a collec,on of interes,ng input decks iden,fying appropriate computa,onal resources for the new set of runs preparing the computa,onal environment for each run shipping the input decks verifying that ancillary requirements such as connec,ons to the monitoring and journaling agents, are sa,sfied scheduling the job with the machine queue manager monitoring the runs wait for a job to start, monitor its progress, collect output (including debugging/performance info) collec,ng partly digested results from remote machine and archiving them along with their input deck for later analysis See sketch of the architecture on next slide 12

13 the UQ pipeline: architecture Architectural overview machine 1 job manager monitor queue manager optimizer population generator convergence? job manager archiver journal job 1 job 2 job n job manager machine N queue manager job 1 job 2 job n 13

14 the UQ pipeline: ingredients Early pipeline implementa,on DAKOTA + ABAQUS Limita,ons file I/O based interac,ve diagnos,cs for progress/state of UQ or op,miza,on progress not built in the UQ, Dakota, and model codes must be separately compiled and tested on each machine simulated annealing not available (to complement gene,c algorithms) deployment limited to single machines adding func,onality to intelligently tap resources from remote machines tailoring op,miza,on algorithms for specific needs is difficult some algorithms only find infima user must negate objec,ve func,on to do supremum op,miza,on not a standard package already installed on most lab systems diagnos,cs involving visualiza,on are clumsy for large variable counts 14

15 the UQ pipeline: ingredients Ingredients of the UQ pipeline Our implementa,on: mys,c, a distributed op,miza,on framework fully deployed on lab machines managed calcula,ons using the SPHIR surrogate on thousands of cores a large number of op,miza,on algorithms scipy: community supported/maintained see hsp:// local varia,ons that are well suited to our problem a simula,on archiving subsystem PostgreSQL database back end web based user interface a distributed simula,on monitoring subsystem diagnos,cs, probes custom simula,on viewer for debugging and post mortem analysis computa,onal engines for modeling the impact VTF next genera,on codes from our center a surrogate for the SPHIR gun 15

16 the UQ pipeline: ingredients Pyre Pyre is a soaware architecture: a specifica,on of the organiza,on of the so0ware system a descrip,on of the crucial structural elements and their interfaces a specifica,on for the possible collabora,ons of these elements a strategy for the composi,on of structural and behavioral elements Pyre is mul, layered flexibility complexity management robustness under evolu,onary pressures Pyre is a component framework applicabon specific applicabon general framework computabonal engines 16

17 the UQ pipeline: ingredients Using components Component based solu,ons are ideal for complex systems encourage the decomposi,on of the problem into manageable func,onal units expose the interac,on mechanisms between these units enable the nearly independent evolu,on of the parts Component frameworks enable an incremental and evolu,onary approach exis,ng codes can start producing results immediately new services can be incorporated incrementally The goal is to encapsulate and deploy F component core input ports properbes Component control name output ports 17

18 the UQ pipeline: ingredients Services for computa,onal engines Normal engine life cycle: deployment staging, instan,a,on, sta,c ini,aliza,on, dynamic ini,aliza,on, resource alloca,on launching input delivery, execu,on control, hauling of output teardown resource de alloca,on, archiving, execu,on sta,s,cs Excep,onal events core dumps, resource alloca,on failures diagnos,cs: errors, warnings, informa,onal messages monitoring: debugging informa,on, self consistency checks Parallel processing Distributed compu,ng 18

19 the UQ pipeline: ingredients Simula,on services Problem specifica,on components and their proper,es Solid modeling overall geometry model construc,on topological and geometrical informa,on Boundary and ini,al condi,ons high level specifica,on access to the underlying solver data structures in a uniform way Materials and cons,tu,ve models materials proper,es database strength models and EOS associa,on with a region of space Computa,onal engines selec,on and associa,on with geometry solver specific ini,aliza,ons Simula,on driver ini,aliza,on appropriate,mestep computa,on orchestra,on of data exchanges checkpoints and field dumps Ac,ve monitoring instrumenta,on: sensors, actuators real,me visualiza,on Full simula,on archiving 19

20 the UQ pipeline: ingredients Simula,on archiving Produce a fully repeatable execu,on by recording scripts user choices sources (cvs/svn tags or even the files themselves) build procedure required third party libraries version of as many run,me components as can be determined generated data sets (urls, actual files) Implementa,on meta data in PostgreSQL HDF5 embed XML meta data parsed for deducing the layout of the file as format evolves can be extracted for easy indexing 20

21 the UQ pipeline: ingredients mys,c: key components The job manager stages and launches new jobs broadcasts execu,on control direc,ves maintains a registry of submised jobs The iterator adjusts the cost func,on parameters reacts to control direc,ves The mapping strategy provides an algorithm to distribute the workload among available resources The launcher knows how submit jobs on the current execu,on environment 21

22 the UQ pipeline: ingredients User interface for the simula,on archive 22

23 the UQ pipeline: ingredients Custom simula,on viewer 23

24 the UQ pipeline: ingredients Simula,on capability: the VTF Ini,al capability built using adlib, the center s Lagrangian solver finite kinema,cs parallel explicit dynamics with excellent scalability flexible, scalable meshing elements: ten noded quadra,c, ten noded composite material models: power law, and J2+vinet contact: smooth and non smooth surface based contact pyre integra,on PSAAP extensions contact: volume based: billiard ball element erosion: geometric: in radius, element quality varia,onal: compares the deforma,on energy to the fracture energy 24

25 the UQ pipeline: ingredients Status VTF simula,on capability Components: new contact and element erosion algorithms in place paralleliza,on complete: large runs on all plauorms Verifica,on: in the process of collec,ng and organizing the historical verifica,on tests into a coherent test suite element types, material models, contact: in place element erosion: in progress Valida,on: building valida,on applica,ons for all major components materials: uniaxial tests complete, shear tests need revival contact algorithms are being validated against Molinari[2002] for impact speeds below 500m/s with good ini,al agreement comparison with our experiments is in progress 25

26 the UQ pipeline: ingredients Perfora,on using the VTF 26

27 the UQ pipeline: ingredients Perfora,on using the VTF II 27

28 the UQ pipeline: ingredients Valida,on of the contact algorithm The billiard ball contact algorithm has three free parameters: p: the frac,onal interpenetra,on volume k: the s,ffness of the contact restoring force b: a dampening factor Comparison with experiments [Molinari 2002] of spherical steel projec,les on thick steel plates v = 200m/s v = 400m/s v = 600m/s 28

29 the UQ pipeline: ingredients Simula,on profiling Time consuming por,ons of the code revealed by profiling tools Speedshop, gprof, etc. Outliers shown in load balancing reports Erosion computa,on is responsible for ~85% of the,me in simula,ons explicit integra,on checking is currently done every step costly residual_general log_mulss assemble: loop unrolling possibili,es! Compu,ng and upda,ng correctors and restoring forces, ~15% Need to keep exploring fracture based erosion scheme less costly element erosion computa,on SpeedShop profile of a run with 465K elements, 64 MPI tasks on 4 hera nodes 29

30 the UQ pipeline: ingredients Scaling of the contact algorithm avg. Bme to perform contact detecbon (sec) proxyball scaling hera log(2) cores avg. time per step (sec) K elements in ini,al mesh, grows with core count Contact occurs in a rela,vely small region of the plate Execu,on,me increases with core count, as some cores handle larger contact regions For larger core counts, the contact region begins to be be effec,vely distributed full application - vtf with proxyball weak scaling 22K element base mesh log(2) cores shc 30

31 the UQ pipeline: ingredients Load balance issues on small core counts MPI_allreduce balance % of MPI Bme MPI task 3.2M element run on 32 shc cores 31

32 the UQ pipeline: ingredients Applica,on scaling avg Bme/step (sec) Log(2) CPUs hera (LLNL) lobo (LANL) shc (Caltech) 32

33 the UQ pipeline: ingredients Next genera,on lagrangian code eureka: a new solid dynamics capability object oriented finite element and meshfree framework highly flexible and extensible finite deforma,ons, visco elas,city, viscoplas,city, thermal coupling, contact, fracture and fragmenta,on extensive material model library OTM (op,mal transporta,on meshfree) based on op,mal transporta,on theory with material point sampling both solid and fluid flows exact essen,al boundary condi,on enforcement exact linear and angular momentum conserva,on free from tensile instabili,es contact provably convergent energy based material point erosion algorithm 33

34 the UQ pipeline: ingredients SPHIR surrogate Model of the SPHIR response: MICHAEL AIVAZIS PSAAP REVIEW OCTOBER 2009 perfora,on diameter as a func,on of projec,le speed and plate thickness α = 0 6 α =

35 status and outlook summary of work in progress planned ac,vi,es for the remainder of the year tasks that specifically address recommenda,ons from the last review assessment 35

36 status and outlook In progress Complete valida,on of the new contact algorithm Integrate new erosion criterion into the simula,on drivers Valida,on against our experimental data Paralleliza,on: contact element erosion Conduct preliminary runs using Ta(j2+vinet) for projec,le, target Manage the deluge of informa,on from our runs db schema almost complete data harves,ng techniques job tracking: both programma,c and interac,ve Deploy the prototype distributed op,miza,on framework pyre driven applica,ons explore security issues on lab machines integrate with job tracking 36

37 status and outlook Planned ac,vi,es So0ware test suites automa,on coherent verifica,on strategy Simula,on capability lagrangian solver: contact valida,on improve simula,on capability and validate against our experiments eureka: framework integra,on paralleliza,on eulerian code: repeat our process with the new code UQ framework simula,on archiving explora,on of op,miza,on algorithms and their effect on the methodology VTF driven by mys,c recas,ng of exis,ng simula,on drivers as pyre applica,ons for beser integra,on with the UQ framework 37

38 status and outlook Review recommenda,ons Verifica,on: in previous years, verifica,on and valida,on was the responsibility of the research groups and the results were published in the literature we have embarked on a systema,c construc,on of thorough regression, benchmark, verifica,on and valida,on test suites tes,ng strategy is documented on our wiki tes,ng will be integrated with the simula,on launching and archiving facili,es so tests can be submised anywhere the code runs, at any,me Computa,onal requirements: we believe we understand the capabili,es necessary to model ballis,c impact performance modeling is underway: we collect data from every run and we are building resource predictors Iden,fica,on, quan,fica,on and reduc,on of the major sources of uncertainty individual variable sub diameters are excellent metrics uncertainty reduc,on is now a high priority task 38

39 status and outlook Assessment Assessment from last year: good con,nuity from ASC to PSAAP management structure so0ware development process VTF extensions to handle the new applica,on are well underway Since then: completed deployment of UQ pipeline on lab machines ini,ated the construc,on of our test suites instrumented simula,on to collect data for performance modeling new contact algorithm implementa,on, verifica,on; valida,on underway; paralleliza,on new erosion criterion implementa,on, verifica,on and valida,on tests to be constructed; paralleliza,on preliminary design and implementa,on of the pyre based distributed op,miza,on framework see poster for details Deferred: Ta/Ta impacts: un,l experiments are available 39

40 end of presenta,on 40

BENCHMARKING V ISUALIZATION TOOL

BENCHMARKING V ISUALIZATION TOOL Copyright 2014 Splunk Inc. BENCHMARKING V ISUALIZATION TOOL J. Green Computer Scien

More information

Experiments on cost/power and failure aware scheduling for clouds and grids

Experiments on cost/power and failure aware scheduling for clouds and grids Experiments on cost/power and failure aware scheduling for clouds and grids Jorge G. Barbosa, Al0no M. Sampaio, Hamid Harabnejad Universidade do Porto, Faculdade de Engenharia, LIACC Porto, Portugal, jbarbosa@fe.up.pt

More information

Discovering Computers Fundamentals, 2010 Edition. Living in a Digital World

Discovering Computers Fundamentals, 2010 Edition. Living in a Digital World Discovering Computers Fundamentals, 2010 Edition Living in a Digital World Objec&ves Overview Discuss the importance of project management, feasibility assessment, documenta8on, and data and informa8on

More information

Interna'onal Standards Ac'vi'es on Cloud Security EVA KUIPER, CISA CISSP EVA.KUIPER@HP.COM HP ENTERPRISE SECURITY SERVICES

Interna'onal Standards Ac'vi'es on Cloud Security EVA KUIPER, CISA CISSP EVA.KUIPER@HP.COM HP ENTERPRISE SECURITY SERVICES Interna'onal Standards Ac'vi'es on Cloud Security EVA KUIPER, CISA CISSP EVA.KUIPER@HP.COM HP ENTERPRISE SECURITY SERVICES Agenda Importance of Common Cloud Standards Outline current work undertaken Define

More information

Big Data and Scientific Discovery

Big Data and Scientific Discovery Big Data and Scientific Discovery Bill Harrod Office of Science William.Harrod@science.doe.gov! February 26, 2014! Big Data and Scien*fic Discovery Next genera*on scien*fic breakthroughs require: Major

More information

ARTIST Methodology and Tooling. Jesus Gorroñogoitia - Atos SOC Crete, 1 st July 2015

ARTIST Methodology and Tooling. Jesus Gorroñogoitia - Atos SOC Crete, 1 st July 2015 ARTIST Methodology and Tooling Jesus Gorroñogoitia - Atos SOC Crete, 1 st July 2015 Motivation: From SaaP to SaaS So#ware as a Product based Company So#ware as a Service based Company : Cloud Computing

More information

JSR proposal: Enhanced Hybrid APIs

JSR proposal: Enhanced Hybrid APIs JSR proposal: Enhanced Hybrid APIs Introduc;on HTML5 is not the future of apps. While developers dream of 'write once run everywhere' the fragmented support for and limited APIs within HTML5 make this

More information

So#ware quality assurance - introduc4on. Dr Ana Magazinius

So#ware quality assurance - introduc4on. Dr Ana Magazinius So#ware quality assurance - introduc4on Dr Ana Magazinius 1 What is quality? 2 What is a good quality car? 2 and 2 2 minutes 3 characteris4cs 3 What is quality? 4 What is quality? How good or bad something

More information

Effec%ve AX 2012 Upgrade Project Planning and Microso< Sure Step. Arbela Technologies

Effec%ve AX 2012 Upgrade Project Planning and Microso< Sure Step. Arbela Technologies Effec%ve AX 2012 Upgrade Project Planning and Microso< Sure Step Arbela Technologies Why Upgrade? What to do? How to do it? Tools and templates Agenda Sure Step 2012 Ax2012 Upgrade specific steps Checklist

More information

Seminar: So#ware Engineering of Embedded Systems

Seminar: So#ware Engineering of Embedded Systems Seminar: So#ware Engineering of Embedded Systems - Quality Assurance of Embedded Systems - Prof. Dr. Sabine Glesner Paula Herber, Nils Jähnig, Lydia Ma7ck, Marcus Mikulcak, Sebas;an Schlesinger Summer

More information

Scalus A)ribute Workshop. Paris, April 14th 15th

Scalus A)ribute Workshop. Paris, April 14th 15th Scalus A)ribute Workshop Paris, April 14th 15th Content Mo=va=on, objec=ves, and constraints Scalus strategy Scenario and architectural views How the architecture works Mo=va=on for this MCITN Storage

More information

Cost Effec/ve Approaches to Best Prac/ces in Data Analy/cs for Internal Audit

Cost Effec/ve Approaches to Best Prac/ces in Data Analy/cs for Internal Audit Cost Effec/ve Approaches to Best Prac/ces in Data Analy/cs for Internal Audit Presented to: ISACA and IIA Joint Mee/ng October 10, 2014 By Outline Introduc.on The Evolving Role of Internal Audit The importance

More information

An Open Dynamic Big Data Driven Applica3on System Toolkit

An Open Dynamic Big Data Driven Applica3on System Toolkit An Open Dynamic Big Data Driven Applica3on System Toolkit Craig C. Douglas University of Wyoming and KAUST This research is supported in part by the Na3onal Science Founda3on and King Abdullah University

More information

Mission. To provide higher technological educa5on with quality, preparing. competent professionals, with sound founda5ons in science, technology

Mission. To provide higher technological educa5on with quality, preparing. competent professionals, with sound founda5ons in science, technology Mission To provide higher technological educa5on with quality, preparing competent professionals, with sound founda5ons in science, technology and innova5on, commi

More information

Understanding and Detec.ng Real- World Performance Bugs

Understanding and Detec.ng Real- World Performance Bugs Understanding and Detec.ng Real- World Performance Bugs Gouliang Jin, Linhai Song, Xiaoming Shi, Joel Scherpelz, and Shan Lu Presented by Cindy Rubio- González Feb 10 th, 2015 Mo.va.on Performance bugs

More information

Data Management in the Cloud: Limitations and Opportunities. Annies Ductan

Data Management in the Cloud: Limitations and Opportunities. Annies Ductan Data Management in the Cloud: Limitations and Opportunities Annies Ductan Discussion Outline: Introduc)on Overview Vision of Cloud Compu8ng Managing Data in The Cloud Cloud Characteris8cs Data Management

More information

OS/Run'me and Execu'on Time Produc'vity

OS/Run'me and Execu'on Time Produc'vity OS/Run'me and Execu'on Time Produc'vity Ron Brightwell, Technical Manager Scalable System SoAware Department Sandia National Laboratories is a multi-program laboratory managed and operated by Sandia Corporation,

More information

Protec'ng Communica'on Networks, Devices, and their Users: Technology and Psychology

Protec'ng Communica'on Networks, Devices, and their Users: Technology and Psychology Protec'ng Communica'on Networks, Devices, and their Users: Technology and Psychology Alexey Kirichenko, F- Secure Corpora7on ICT SHOK, Future Internet program 30.5.2012 Outline 1. Security WP (WP6) overview

More information

Cloud Compu)ng in Educa)on and Research

Cloud Compu)ng in Educa)on and Research Cloud Compu)ng in Educa)on and Research Dr. Wajdi Loua) Sfax University, Tunisia ESPRIT - December 2014 04/12/14 1 Outline Challenges in Educa)on and Research SaaS, PaaS and IaaS for Educa)on and Research

More information

Capitalize on your carbon management solu4on investment

Capitalize on your carbon management solu4on investment Capitalize on your carbon management solu4on investment Best prac4ce guide for implemen4ng carbon management so9ware Carbon Disclosure Project +44 (0) 20 7970 5660 info@cdproject.net www.cdproject.net

More information

Predictive Community Computational Tools for Virtual Plasma Science Experiments

Predictive Community Computational Tools for Virtual Plasma Science Experiments Predictive Community Computational Tools for Virtual Plasma Experiments J.-L. Vay, E. Esarey, A. Koniges Lawrence Berkeley National Laboratory J. Barnard, A. Friedman, D. Grote Lawrence Livermore National

More information

Strategies for Medical Device So2ware Development Presented By Anthony Giles of Blackwood Embedded Solu;ons And a Case Study by Francis Amoah of Creo

Strategies for Medical Device So2ware Development Presented By Anthony Giles of Blackwood Embedded Solu;ons And a Case Study by Francis Amoah of Creo Strategies for Medical Device So2ware Development Presented By Anthony Giles of Blackwood Embedded Solu;ons And a Case Study by Francis Amoah of Creo Medical Introduc;on Standards 60601-1 in par;cular

More information

Case Studies in Solving Testing Constraints using Service Virtualization

Case Studies in Solving Testing Constraints using Service Virtualization Case Studies in Solving Testing Constraints using Service Virtualization Rix.Groenboom@Parasoft.NL 2/21/14 1 Introduction Paraso& is supplier automated tes1ng solu1ons Since 1984, Los Angeles (US) and

More information

Founda'onal IT Governance A Founda'onal Framework for Governing Enterprise IT Adapted from the ISACA COBIT 5 Framework

Founda'onal IT Governance A Founda'onal Framework for Governing Enterprise IT Adapted from the ISACA COBIT 5 Framework Founda'onal IT Governance A Founda'onal Framework for Governing Enterprise IT Adapted from the ISACA COBIT 5 Framework Steven Hunt Enterprise IT Governance Strategist NASA Ames Research Center Michael

More information

Data Center 2020. DC planning for the next 5 10 years. Copyright 2004-2013 Experture and Robert Frances Group, all rights reserved

Data Center 2020. DC planning for the next 5 10 years. Copyright 2004-2013 Experture and Robert Frances Group, all rights reserved DC planning for the next 5 10 years Topics to be Discussed Introduc=on Indirect Drivers Technology Direct Drivers Data Center DC Management DC Opera=ons s and Disaster Recovery 2 Introduc=on The future

More information

PROJECT PORTFOLIO SUITE

PROJECT PORTFOLIO SUITE ServiceNow So1ware Development manages Scrum or waterfall development efforts and defines the tasks required for developing and maintaining so[ware throughout the lifecycle, from incep4on to deployment.

More information

Why is it important to study sogware engineering?

Why is it important to study sogware engineering? Last 7me CS 521/621 Course Overview: Sta7c and Dynamic Analyses What did we talk about? Why is it important to study sogware engineering? Just like cars US automobile industry used to be very complacent

More information

So#ware- based CyberSecurity. Michael Butler Gennaro Parlato Electronic and So.ware Systems (ESS)

So#ware- based CyberSecurity. Michael Butler Gennaro Parlato Electronic and So.ware Systems (ESS) So#ware- based CyberSecurity Michael Butler Gennaro Parlato Electronic and So.ware Systems (ESS) Security is mul;- faceted Confiden;ality Authen;ca;on Authorisa;on / Access Control Trust / Reputa;on Anonymity

More information

Data Warehousing. Yeow Wei Choong Anne Laurent

Data Warehousing. Yeow Wei Choong Anne Laurent Data Warehousing Yeow Wei Choong Anne Laurent Databases Databases are developed on the IDEA that DATA is one of the cri>cal materials of the Informa>on Age Informa>on, which is created by data, becomes

More information

Cloud Compu?ng & Big Data in Higher Educa?on and Research: African Academic Experience

Cloud Compu?ng & Big Data in Higher Educa?on and Research: African Academic Experience 3 rd SG13 Regional Workshop for Africa on ITU- T Standardiza?on Challenges for Developing Countries Working for a Connected Africa (Livingstone, Zambia, 23-24 February 2015) Cloud Compu?ng & Big Data in

More information

PARADIGM SHIFT FROM LARGE RELEASES TO CONTINUOUS DEPLOYMENT OF SOFTWARE. DESIGNING A REFERENCE MODEL FOR CONTINUOUS DEPLOYMENT.

PARADIGM SHIFT FROM LARGE RELEASES TO CONTINUOUS DEPLOYMENT OF SOFTWARE. DESIGNING A REFERENCE MODEL FOR CONTINUOUS DEPLOYMENT. PARADIGM SHIFT FROM LARGE RELEASES TO CONTINUOUS DEPLOYMENT OF SOFTWARE. DESIGNING A REFERENCE MODEL FOR CONTINUOUS DEPLOYMENT. PhD Student Teemu Karvonen Supervisors: Markku Oivo and Pasi Kuvaja XP2015

More information

Big Data. The Big Picture. Our flexible and efficient Big Data solu9ons open the door to new opportuni9es and new business areas

Big Data. The Big Picture. Our flexible and efficient Big Data solu9ons open the door to new opportuni9es and new business areas Big Data The Big Picture Our flexible and efficient Big Data solu9ons open the door to new opportuni9es and new business areas What is Big Data? Big Data gets its name because that s what it is data that

More information

Data Center Evolu.on and the Cloud. Paul A. Strassmann George Mason University November 5, 2008, 7:20 to 10:00 PM

Data Center Evolu.on and the Cloud. Paul A. Strassmann George Mason University November 5, 2008, 7:20 to 10:00 PM Data Center Evolu.on and the Cloud Paul A. Strassmann George Mason University November 5, 2008, 7:20 to 10:00 PM 1 Hardware Evolu.on 2 Where is hardware going? x86 con(nues to move upstream Massive compute

More information

Bank of America Security by Design. Derrick Barksdale Jason Gillam

Bank of America Security by Design. Derrick Barksdale Jason Gillam Bank of America Security by Design Derrick Barksdale Jason Gillam Costs of Correcting Defects 2 Bank of America The Three P s Product Design and build security into our product People Cultivate a security

More information

IT Change Management Process Training

IT Change Management Process Training IT Change Management Process Training Before you begin: This course was prepared for all IT professionals with the goal of promo9ng awareness of the process. Those taking this course will have varied knowledge

More information

Big Data and Clouds: Challenges and Opportuni5es

Big Data and Clouds: Challenges and Opportuni5es Big Data and Clouds: Challenges and Opportuni5es NIST January 15 2013 Geoffrey Fox gcf@indiana.edu h"p://www.infomall.org h"p://www.futuregrid.org School of Informa;cs and Compu;ng Digital Science Center

More information

Chapter 3. Database Architectures and the Web Transparencies

Chapter 3. Database Architectures and the Web Transparencies Week 2: Chapter 3 Chapter 3 Database Architectures and the Web Transparencies Database Environment - Objec

More information

Configura)on Management Process and Environment MACS Review 1 February 5th, 2010 Roland Moser

Configura)on Management Process and Environment MACS Review 1 February 5th, 2010 Roland Moser Configura)on Management Process and Environment MACS Review 1 February 5th, 2010 Roland Moser R. Gutleber 1 Goals Configura)on Management (CM) is the implementa)on and the execu)on of processes and procedures

More information

Behind the scene III Cloud computing

Behind the scene III Cloud computing Behind the scene III Cloud computing Athens, 15.11.2014 M. Dolenc / R. Klinc Why we do it? Engineering in the cloud is a combina3on of cloud based services and rich interac3ve applica3ons allowing engineers

More information

San Jacinto College Banner & Enterprise Applica5on Review Task Force Report. November 01, 2011 FINAL

San Jacinto College Banner & Enterprise Applica5on Review Task Force Report. November 01, 2011 FINAL San Jacinto College Banner & Enterprise Applica5on Review Task Force Report November 01, 2011 FINAL 1 Content Review goal and approach 3 Barriers to effec5ve use of Banner: Consultant observa5ons 10 Consultant

More information

Replacing a commercial integration platform with an open source ESB. Magnus Larsson magnus.larsson@callistaenterprise.se Cadec 2010-01- 20

Replacing a commercial integration platform with an open source ESB. Magnus Larsson magnus.larsson@callistaenterprise.se Cadec 2010-01- 20 Replacing a commercial integration platform with an open source ESB Magnus Larsson magnus.larsson@callistaenterprise.se Cadec 2010-01- 20 Agenda The customer Phases Problem defini?on Proof of concepts

More information

Trinity Advanced Technology System Overview

Trinity Advanced Technology System Overview Trinity Advanced Technology System Overview Manuel Vigil Trinity Project Director Douglas Doerfler Trinity Chief Architect 1 Outline ASC Compu/ng Strategy Project Drivers and Procurement Process Pla;orm

More information

Return on Experience on Cloud Compu2ng Issues a stairway to clouds. Experts Workshop Nov. 21st, 2013

Return on Experience on Cloud Compu2ng Issues a stairway to clouds. Experts Workshop Nov. 21st, 2013 Return on Experience on Cloud Compu2ng Issues a stairway to clouds Experts Workshop Agenda InGeoCloudS SoCware Stack InGeoCloudS Elas2city and Scalability Elas2c File Server Elas2c Database Server Elas2c

More information

Protec'ng Informa'on Assets - Week 8 - Business Continuity and Disaster Recovery Planning. MIS 5206 Protec/ng Informa/on Assets Greg Senko

Protec'ng Informa'on Assets - Week 8 - Business Continuity and Disaster Recovery Planning. MIS 5206 Protec/ng Informa/on Assets Greg Senko Protec'ng Informa'on Assets - Week 8 - Business Continuity and Disaster Recovery Planning MIS5206 Week 8 In the News Readings In Class Case Study BCP/DRP Test Taking Tip Quiz In the News Discuss items

More information

Business Analysis Center of Excellence The Cornerstone of Business Transformation

Business Analysis Center of Excellence The Cornerstone of Business Transformation February 20, 2013 Business Analysis Center of Excellence The Cornerstone of Business Transformation John E. Parker, CEO Enfocus Solutions Inc. www.enfocussolutions.com 0 John E. Parker (Introduc3on) President

More information

Project Overview. Collabora'on Mee'ng with Op'mis, 20-21 Sept. 2011, Rome

Project Overview. Collabora'on Mee'ng with Op'mis, 20-21 Sept. 2011, Rome Project Overview Collabora'on Mee'ng with Op'mis, 20-21 Sept. 2011, Rome Cloud-TM at a glance "#$%&'$()!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"#$%&!"'!()*+!!!!!!!!!!!!!!!!!!!,-./01234156!("*+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!&7"7#7"7!("*+!!!!!!!!!!!!!!!!!!!89:!;62!("$+!

More information

Capstone: A platform for geometry, mesh and attribution modeling for physics-based analysis and design

Capstone: A platform for geometry, mesh and attribution modeling for physics-based analysis and design : A platform for geometry, mesh and attribution modeling for physics-based analysis and design Dr. Saikat Dey, US NRL, Washington, DC Distribu(on Statement A: Approved for public release; distribu(on is

More information

Hall B So(ware Status. Veronique Ziegler

Hall B So(ware Status. Veronique Ziegler Hall B So(ware Status Veronique Ziegler Physics Applica;on Design within the ClaRA SOA Physics applica;on design/composi;on based on services Development of services within ClaRA à Wri;ng a service simply

More information

Project Por)olio Management

Project Por)olio Management Project Por)olio Management Important markers for IT intensive businesses Rest assured with Infolob s project management methodologies What is Project Por)olio Management? Project Por)olio Management (PPM)

More information

CMMI for High-Performance with TSP/PSP

CMMI for High-Performance with TSP/PSP Dr. Kıvanç DİNÇER, PMP Hace6epe University Implemen@ng CMMI for High-Performance with TSP/PSP Informa@on Systems & SoFware The Informa@on Systems usage has experienced an exponen@al growth over the past

More information

Business Analysis Standardization A Strategic Mandate. John E. Parker CVO, Enfocus Solu7ons Inc.

Business Analysis Standardization A Strategic Mandate. John E. Parker CVO, Enfocus Solu7ons Inc. Business Analysis Standardization A Strategic Mandate John E. Parker CVO, Enfocus Solu7ons Inc. Agenda What is Business Analysis? Why Business Analysis is Important? Why Standardization of Business Analysis

More information

SharePoint Capacity Planning Balancing Organiza,onal Requirements with Performance and Cost

SharePoint Capacity Planning Balancing Organiza,onal Requirements with Performance and Cost SharePoint Capacity Planning Balancing Organiza,onal Requirements with Performance and Cost Kirk Devore / J.D. Wade SharePoint Consultants Horizons Consul;ng Agenda Expecta;ons Defining SharePoint Capacity

More information

Debugging & Profiling with Open Source SW Tools

Debugging & Profiling with Open Source SW Tools Debugging & Profiling with Open Source SW Tools Ivan Giro*o igiro*o@ictp.it Informa(on & Communica(on Technology Sec(on (ICTS) Interna(onal Centre for Theore(cal Physics (ICTP) What is Debugging?! Iden(fying

More information

Stream Deployments in the Real World: Enhance Opera?onal Intelligence Across Applica?on Delivery, IT Ops, Security, and More

Stream Deployments in the Real World: Enhance Opera?onal Intelligence Across Applica?on Delivery, IT Ops, Security, and More Copyright 2015 Splunk Inc. Stream Deployments in the Real World: Enhance Opera?onal Intelligence Across Applica?on Delivery, IT Ops, Security, and More Stela Udovicic Sr. Product Marke?ng Manager Clayton

More information

AppLogic and the Mainframe: The Ul7mate Private Cloud

AppLogic and the Mainframe: The Ul7mate Private Cloud MODERNIZE AND OPTIMIZE YOUR MAINFRAME S510 AppLogic and the Mainframe: The Ul7mate Private Cloud Sco@ Fagen Dis7nguished Engineer Chief Architect: Mainframe Abstract Mainframers have been using virtual

More information

DEFINING COMPONENTS OF NATIONAL REDD+ FINANCIAL PLANNING

DEFINING COMPONENTS OF NATIONAL REDD+ FINANCIAL PLANNING DEFINING COMPONENTS OF NATIONAL REDD+ FINANCIAL PLANNING WORKSHOP ON BUILDING MULTI- SOURCE REDD+ FINANCING STRATEGIES Antigua, Guatemala July 17 and 18, 2014 Objec'ves of REDD+ Financial Planning Financial

More information

CS 5150 So(ware Engineering So(ware Development in Prac9ce

CS 5150 So(ware Engineering So(ware Development in Prac9ce Cornell University Compu1ng and Informa1on Science CS 5150 So(ware Engineering So(ware Development in Prac9ce William Y. Arms Overall Aim of the Course We assume that you are technically proficient. You

More information

CS 5150 So(ware Engineering System Architecture: Introduc<on

CS 5150 So(ware Engineering System Architecture: Introduc<on Cornell University Compu1ng and Informa1on Science CS 5150 So(ware Engineering System Architecture: Introduc

More information

The LCC Network Integrated Data Management Network GREAT NORTHERN LCC STEERING COMMITTEE MEETING MORAN, WY 25 SEPTEMBER 2011

The LCC Network Integrated Data Management Network GREAT NORTHERN LCC STEERING COMMITTEE MEETING MORAN, WY 25 SEPTEMBER 2011 The LCC Network Integrated Management Network GREAT NORTHERN LCC STEERING COMMITTEE MEETING MORAN, WY 25 SEPTEMBER 2011 Analysis A Common Challenge Work Environments Tools Ques&ons Needs Decision Tools

More information

Hardware enhanced Security in Cloud Compu8ng. Cloud Compu8ng (Public IaaS)

Hardware enhanced Security in Cloud Compu8ng. Cloud Compu8ng (Public IaaS) Hardware enhanced Security in Cloud Compu8ng Ruby B. Lee Princeton University ARO workshop on Cloud Security, March 11, 2013 Cloud Compu8ng (Public IaaS) End Users Cloud Provider Guest VMs Cloud Customer

More information

Graduate Systems Engineering Programs: Report on Outcomes and Objec:ves

Graduate Systems Engineering Programs: Report on Outcomes and Objec:ves Graduate Systems Engineering Programs: Report on Outcomes and Objec:ves Alice Squires, alice.squires@stevens.edu Tim Ferris, David Olwell, Nicole Hutchison, Rick Adcock, John BrackeL, Mary VanLeer, Tom

More information

BornAgain: a versa.le framework for modelling and fi6ng GISAS

BornAgain: a versa.le framework for modelling and fi6ng GISAS BornAgain: a versa.le framework for modelling and fi6ng GISAS Céline Durniak, Walter Van Herck, Gennady Pospelov, Joachim WuIke Scien&fic Compu&ng Group at MLZ Jülich Center for Neutron Science JCNS Koordinierungstreffen,

More information

Strategy and Architecture to Establish 'Smart Plants'

Strategy and Architecture to Establish 'Smart Plants' Strategy and Architecture to Establish 'Smart Plants' About Intrigo We are a solu*on provider of Business Applica:ons focused on orchestra*ng Customer Value Networks in the changing SAP Enterprise technology

More information

So#ware Development Methodologies Project Management Phases Agile Methodology Agile Manifesto Roles. Team Roles and Responsibili?

So#ware Development Methodologies Project Management Phases Agile Methodology Agile Manifesto Roles. Team Roles and Responsibili? Module Summary So#ware Development Methodologies Project Management Phases Agile Methodology Agile Manifesto Roles Team Roles and Responsibili?es Goal for First Client Mee?ng Expecta?ons Client Student

More information

Case Study. The SACM Journey at the Ontario Government

Case Study. The SACM Journey at the Ontario Government Case Study The SACM Journey at the Ontario Government Agenda Today s Objec=ves The Need for SACM Our SACM Journey Scope and Governance Process Ac=vi=es Key Process Roles Training and Measurement Lessons

More information

Getting Real with Policies for Software Defined Infrastructure. Manish Dave Principal Engineer, Intel IT

Getting Real with Policies for Software Defined Infrastructure. Manish Dave Principal Engineer, Intel IT Getting Real with Policies for Software Defined Infrastructure Manish Dave Principal Engineer, Intel IT Manish Dave, Principal Engineer, Intel IT Network Security Architect @ Intel IT 15+ years of experience

More information

MAXIMIZING THE SUCCESS OF YOUR E-PROCUREMENT TECHNOLOGY INVESTMENT. How to Drive Adop.on, Efficiency, and ROI for the Long Term

MAXIMIZING THE SUCCESS OF YOUR E-PROCUREMENT TECHNOLOGY INVESTMENT. How to Drive Adop.on, Efficiency, and ROI for the Long Term MAXIMIZING THE SUCCESS OF YOUR E-PROCUREMENT TECHNOLOGY INVESTMENT How to Drive Adop.on, Efficiency, and ROI for the Long Term What We Will Cover Today Presenta(on Agenda! Who We Are! Our History! Par7al

More information

SQream Technologies Ltd - Confiden7al

SQream Technologies Ltd - Confiden7al SQream Technologies Ltd - Confiden7al 1 Ge#ng Big Data Done On a GPU- Based Database Ori Netzer VP Product 26- Mar- 14 Analy7cs Performance - 3 TB, 18 Billion records SQream Database 400x More Cost Efficient!

More information

Introduc)on to the IoT- A methodology

Introduc)on to the IoT- A methodology 10/11/14 1 Introduc)on to the IoTA methodology Olivier SAVRY CEA LETI 10/11/14 2 IoTA Objec)ves Provide a reference model of architecture (ARM) based on Interoperability Scalability Security and Privacy

More information

So#ware Product Lines for Automa5c Mul5- Cloud Configura5on

So#ware Product Lines for Automa5c Mul5- Cloud Configura5on So#ware Product Lines for Automa5c Mul5- Cloud Configura5on Université Lille 1 CRIStAL UMR CNRS 9189 Inria Lille - Nord Europe France Gustavo Sousa gustavo.sousa@inria.fr Encadrants: Walter Rudametkin

More information

The Pros and Cons of Organiza2on

The Pros and Cons of Organiza2on Remain Independent or Align? A Guide To Manage Through This Cri2cal Decision Sponsored By: TRG Healthcare October 12, 2010 1 Welcome Remain Independent or Align? A Guide To Manage Through This Cri=cal

More information

OpenFOAM Optimization Tools

OpenFOAM Optimization Tools OpenFOAM Optimization Tools Henrik Rusche and Aleks Jemcov h.rusche@wikki-gmbh.de and a.jemcov@wikki.co.uk Wikki, Germany and United Kingdom OpenFOAM Optimization Tools p. 1 Agenda Objective Review optimisation

More information

The Real Score of Cloud

The Real Score of Cloud The Real Score of Cloud Mayur Sahni Sr. Research Manger IDC Asia/Pacific msahni@idc.com @mayursahni Digital Transformation Changing Role of IT Innova&on Informa&on Business agility Changing role of the

More information

Performance Management. Ch. 9 The Performance Measurement. Mechanism. Chiara Demar8ni UNIVERSITY OF PAVIA. mariachiara.demar8ni@unipv.

Performance Management. Ch. 9 The Performance Measurement. Mechanism. Chiara Demar8ni UNIVERSITY OF PAVIA. mariachiara.demar8ni@unipv. UNIVERSITY OF PAVIA Performance Management Ch. 9 The Performance Measurement Mechanism Chiara Demar8ni mariachiara.demar8ni@unipv.it Master in Interna+onal Business and Economics Defini8on Performance

More information

Developing the Agile Mindset for Organiza7onal Agility. Shannon Ewan Managing Director, ICAgile @ShannonEwan, @ICAgile

Developing the Agile Mindset for Organiza7onal Agility. Shannon Ewan Managing Director, ICAgile @ShannonEwan, @ICAgile Developing the Agile Mindset for Organiza7onal Agility Shannon Ewan Managing Director, ICAgile @ShannonEwan, @ICAgile 1 Who is here today? And Why? 2 To kick things off What is Agile? 3 Agile is a mindset

More information

Nodes, Ties and Influence

Nodes, Ties and Influence Nodes, Ties and Influence Chapter 2 Chapter 2, Community Detec:on and Mining in Social Media. Lei Tang and Huan Liu, Morgan & Claypool, September, 2010. 1 IMPORTANCE OF NODES 2 Importance of Nodes Not

More information

Map- reduce, Hadoop and The communica3on bo5leneck. Yoav Freund UCSD / Computer Science and Engineering

Map- reduce, Hadoop and The communica3on bo5leneck. Yoav Freund UCSD / Computer Science and Engineering Map- reduce, Hadoop and The communica3on bo5leneck Yoav Freund UCSD / Computer Science and Engineering Plan of the talk Why is Hadoop so popular? HDFS Map Reduce Word Count example using Hadoop streaming

More information

UAB Cyber Security Ini1a1ve

UAB Cyber Security Ini1a1ve UAB Cyber Security Ini1a1ve Purpose of the Cyber Security Ini1a1ve? To provide a secure Compu1ng Environment Individual Mechanisms Single Source for Inventory and Asset Management Current Repor1ng Environment

More information

Cloud Based Tes,ng & Capacity Planning (CloudPerf)

Cloud Based Tes,ng & Capacity Planning (CloudPerf) Cloud Based Tes,ng & Capacity Planning (CloudPerf) Joan A. Smith Emory University Libraries joan.smith@emory.edu Frank Owen Owenworks Inc. frank@owenworks.biz Full presenta,on materials and CloudPerf screencast

More information

ANALYTICAL TECHNIQUES FOR DATA VISUALIZATION

ANALYTICAL TECHNIQUES FOR DATA VISUALIZATION ANALYTICAL TECHNIQUES FOR DATA VISUALIZATION CSE 537 Ar@ficial Intelligence Professor Anita Wasilewska GROUP 2 TEAM MEMBERS: SAEED BOOR BOOR - 110564337 SHIH- YU TSAI - 110385129 HAN LI 110168054 SOURCES

More information

Agile development. Pedro Cabalar. Departamento de Computación Facultad de Informá;ca University of Corunna, SPAIN

Agile development. Pedro Cabalar. Departamento de Computación Facultad de Informá;ca University of Corunna, SPAIN Agile development Pedro Cabalar Departamento de Computación Facultad de Informá;ca University of Corunna, SPAIN Agile Development Main bibliographic source: Agile & Itera,ve Development A Manager s Guide,

More information

HOLACONF - Cloud Forward 2015 Conference From Distributed to Complete Computing HAMZA. in collaboration SAHLI with

HOLACONF - Cloud Forward 2015 Conference From Distributed to Complete Computing HAMZA. in collaboration SAHLI with HOLACONF - Cloud Forward Conference From Distributed to Complete Computing HAMZA in collaboration SAHLI with Pr. Faiza BELALA and Dr. Chafia BOUANAKA LIRE Laboratory, Constantine II University-Abdelhamid

More information

Apache Hadoop: The Pla/orm for Big Data. Amr Awadallah CTO, Founder, Cloudera, Inc. aaa@cloudera.com, twicer: @awadallah

Apache Hadoop: The Pla/orm for Big Data. Amr Awadallah CTO, Founder, Cloudera, Inc. aaa@cloudera.com, twicer: @awadallah Apache Hadoop: The Pla/orm for Big Data Amr Awadallah CTO, Founder, Cloudera, Inc. aaa@cloudera.com, twicer: @awadallah 1 The Problems with Current Data Systems BI Reports + Interac7ve Apps RDBMS (aggregated

More information

Introduc)on of Pla/orm ISF. Weina Ma Weina.Ma@uoit.ca

Introduc)on of Pla/orm ISF. Weina Ma Weina.Ma@uoit.ca Introduc)on of Pla/orm ISF Weina Ma Weina.Ma@uoit.ca Agenda Pla/orm ISF Product Overview Pla/orm ISF Concepts & Terminologies Self- Service Applica)on Management Applica)on Example Deployment Examples

More information

Locales Domain Maps Layouts Distribu?ons Chapel Standard Layouts and Distribu?ons User defined Domain Maps. Chapel: Domain Maps

Locales Domain Maps Layouts Distribu?ons Chapel Standard Layouts and Distribu?ons User defined Domain Maps. Chapel: Domain Maps Locales Domain Maps Layouts Distribu?ons Chapel Standard Layouts and Distribu?ons User defined Domain Maps Chapel: Domain Maps 14 Domains are first class index sets Specify the size and shape of arrays

More information

EXPERIENCE WITH SERVICE OBSERVING

EXPERIENCE WITH SERVICE OBSERVING EXPERIENCE WITH SERVICE OBSERVING ALEXANDRA TRITSCHLER NATIONAL SOLAR OBSERVATORY 1 st SOLARNET 3 rd EAST/ATST MEETING :: 5 8 AUGUST 2013 :: OSLO, NORWAY Outline 2 Introduc?on o Current Observing Models

More information

ECBDL 14: Evolu/onary Computa/on for Big Data and Big Learning Workshop July 13 th, 2014 Big Data Compe//on

ECBDL 14: Evolu/onary Computa/on for Big Data and Big Learning Workshop July 13 th, 2014 Big Data Compe//on ECBDL 14: Evolu/onary Computa/on for Big Data and Big Learning Workshop July 13 th, 2014 Big Data Compe//on Jaume Bacardit jaume.bacardit@ncl.ac.uk The Interdisciplinary Compu/ng and Complex BioSystems

More information

So#ware Tools and Techniques for HPC, Clouds, and Server- Class SoCs Ron Brightwell

So#ware Tools and Techniques for HPC, Clouds, and Server- Class SoCs Ron Brightwell So#ware Tools and Techniques for HPC, Clouds, and Server- Class SoCs Ron Brightwell R&D Manager, Scalable System So#ware Department Sandia National Laboratories is a multi-program laboratory managed and

More information

Online Enrollment Op>ons - Sales Training. 2011. Benefi+ocus.com, Inc. All rights reserved. Confiden>al and Proprietary 1

Online Enrollment Op>ons - Sales Training. 2011. Benefi+ocus.com, Inc. All rights reserved. Confiden>al and Proprietary 1 Online Enrollment Op>ons - Sales Training 2011. Benefi+ocus.com, Inc. All rights reserved. Confiden>al and Proprietary 1 Agenda Understand Why This is Important Enrollment Op>ons Available EDI Blues Enroll

More information

CSER & emerge Consor.a EHR Working Group Collabora.on on Display and Storage of Gene.c Informa.on in Electronic Health Records

CSER & emerge Consor.a EHR Working Group Collabora.on on Display and Storage of Gene.c Informa.on in Electronic Health Records electronic Medical Records and Genomics CSER & emerge Consor.a EHR Working Group Collabora.on on Display and Storage of Gene.c Informa.on in Electronic Health Records Brian Shirts, MD, PhD University of

More information

Big Data + Big Analytics Transforming the way you do business

Big Data + Big Analytics Transforming the way you do business Big Data + Big Analytics Transforming the way you do business Bryan Harris Chief Technology Officer VSTI A SAS Company 1 AGENDA Lets get Real Beyond the Buzzwords Who is SAS? Our PerspecDve of Big Data

More information

Manufacturing Operations Management

Manufacturing Operations Management Manufacturing Operations Management Paul Barber Director Lighthouse Systems During this presenta.on! In over 80 Can factories In 27 countries 15 languages! 1000s of users will be using our so;ware, to:!

More information

Cellular Development Made Easy Open Communica7ons Gateways

Cellular Development Made Easy Open Communica7ons Gateways Cellular Development Made Easy Open Communica7ons Gateways Before We Begin 1. This webinar is approximately 45 minutes with 8me for Q&A 2. Use the chat func8on to ask ques8ons during the presenta8on 3.

More information

Data Stream Algorithms in Storm and R. Radek Maciaszek

Data Stream Algorithms in Storm and R. Radek Maciaszek Data Stream Algorithms in Storm and R Radek Maciaszek Who Am I? l Radek Maciaszek l l l l l l Consul9ng at DataMine Lab (www.dataminelab.com) - Data mining, business intelligence and data warehouse consultancy.

More information

Real option theory for risk mitigation in PPPs

Real option theory for risk mitigation in PPPs Real option theory for risk mitigation in PPPs Roberta Pellegrino a, Nevena Vajdic b and Nunzia Carbonara a a Politecnico di Bari, Italy b University of Belgrade, Serbia Presenta(on outline Introduc7on

More information

Suppor&ng the Design of Safety Cri&cal Systems Using AADL

Suppor&ng the Design of Safety Cri&cal Systems Using AADL Suppor&ng the Design of Safety Cri&cal Systems Using AADL T. Correa, L. B. Becker, J.- M. Farines, J.- P. Bodeveix, M. Filali, F. Vernadat IRIT LAAS UFSC Agenda Introduc&on Proposed Approach Verifica&on

More information

Research at the Department of Computer Science and Software Engineering. Professor Yong Yue BEng, PhD, CEng, FIET, FIMechE 17 October 2014

Research at the Department of Computer Science and Software Engineering. Professor Yong Yue BEng, PhD, CEng, FIET, FIMechE 17 October 2014 Research at the Department of Computer Science and Software Engineering Professor Yong Yue BEng, PhD, CEng, FIET, FIMechE 17 October 2014 Research Areas Ar%ficial intelligence Robo%cs Data mining Image

More information

Overview on Modern Accelerators and Programming Paradigms Ivan Giro7o igiro7o@ictp.it

Overview on Modern Accelerators and Programming Paradigms Ivan Giro7o igiro7o@ictp.it Overview on Modern Accelerators and Programming Paradigms Ivan Giro7o igiro7o@ictp.it Informa(on & Communica(on Technology Sec(on (ICTS) Interna(onal Centre for Theore(cal Physics (ICTP) Mul(ple Socket

More information

Processing of Mix- Sensi0vity Video Surveillance Streams on Hybrid Clouds

Processing of Mix- Sensi0vity Video Surveillance Streams on Hybrid Clouds Processing of Mix- Sensi0vity Video Surveillance Streams on Hybrid Clouds Chunwang Zhang, Ee- Chien Chang School of Compu2ng, Na2onal University of Singapore 28 th June, 2014 Outline 1. Mo0va0on 2. Hybrid

More information

Fixed Scope Offering (FSO) for Oracle SRM

Fixed Scope Offering (FSO) for Oracle SRM Fixed Scope Offering (FSO) for Oracle SRM Agenda iapps Introduc.on Execu.ve Summary Business Objec.ves Solu.on Proposal Scope - Business Process Scope Applica.on Implementa.on Methodology Time Frames Team,

More information