ISC 2017 Conference Guide

Total Page:16

File Type:pdf, Size:1020Kb

ISC 2017 Conference Guide SUNDAY, JUNE 18 – THURSDAY, JUNE 22, 2017 FRANKFURT, GERMANY CONFERENCE & EXHIBITION GUIDE isc-hpc.com Platinum Sponsors ISC 2017 | Table of Contents WELCOME TO ISC 2017 3 GENERAL INFORMATION 6 PROGRAM 16 Sunday, June 18 Overview ............................................................................................................................................ 18 Program – Tutorials .......................................................................................................................... 19 Coffee & Lunch Breaks ..................................................................................................................... 21 Monday, June 19 Overview ............................................................................................................................................ 24 Program – Conference & Exhibition ................................................................................................. 25 ISC Welcome Party .............................................................................................................................32 Coffee & Lunch Breaks ..................................................................................................................... 32 Tuesday, June 20 Overview ............................................................................................................................................ 36 Program – Conference & Exhibition ................................................................................................. 37 Coffee & Lunch Breaks ..................................................................................................................... 49 Wednesday, June 21 Overview ............................................................................................................................................ 52 Program – Conference & Exhibition ................................................................................................. 53 Coffee & Lunch Breaks ..................................................................................................................... 63 Thursday, June 22 Overview ............................................................................................................................................ 66 Program – Workshops ...................................................................................................................... 67 Coffee & Lunch Breaks ..................................................................................................................... 71 EXHIBITORS, SPONSORS & MEDIA SPONSORS 72 Exhibition ........................................................................................................................................... 74 Exhibitors & Sponsors ...................................................................................................................... 75 Media Sponsors ............................................................................................................................... 114 2 | Conference & Exhibition Guide Welcome | ISC 2017 Welcome to ISC High Performance and the City of Frankfurt! Three years ago, we made the decision to directly involve the high performance computing (HPC) community in our technical program. And thanks to the sincere effort of our past and present program chairs and respective committees, the quality of the program has risen sharply and we are resolute in maintaining this tradition. Under the program leadership of Professor Jack Dongarra, along with the devotion of our 2017 commit- Thomas and Martin Meuer tee members, we are able to offer you a conference filled with compelling topics and speakers. We are especially excited to offer you a full day of presentations and discussions in our Deep Learning Day. We are also tremendously eager to introduce Microsoft Research Co-founder and Distinguished Scientist Dr. Jennifer Chayes as our conference keynote speaker. ISC 2017 received a record-breaking number of proposal submissions, specifically in the tutorial and birds-of-a-feather sessions, making it quite challenging for the reviewers to make a selection. The quality of the research papers and posters is also improved this year thanks to the implementation of the double-blind peer review policy. In promoting excellence and diversity, we also set out to increase female leadership in various committees, conference sessions and key-speaking slots by 25 percent. We are happy to have reached our initial milestone and look forward to expanding this diversity next year, in particular by inviting more female experts and speakers from different regions of the world. New this year, the winner of the Hans Meuer Award, which honors our late father and the founder of the ISC conference series, will be determined and announced during this conference. Don’t miss the presentations from the two short-listed teams on Monday afternoon and the awarding ceremony on Tuesday. Last but not least, the exhibition is an essential component of ISC High Performance. This year there are 150 businesses and research organizations, including many first-time exhibitors, showcasing diverse technologies and research breakthroughs. Please take the time and visit the show floor during the next three days. We extend our sincere thanks to the contributors, sponsors, partners and volunteers, as well as our own team, and wish everyone a great conference! Best regards, Martin Meuer and Thomas Meuer Conference & Exhibition Guide | 3 4 | Conference & Exhibition Guide General Information ISC 2017 Exhibition, Exhibitor & Media Sponsor Profiles Conference & Exhibition Guide | 5 ISC 2017 | General Information AGENDA An updated version of the conference program can be found on our website. The ISC Agenda lets you navigate easily through the conference program and provides information on sessions and speakers. With a few clicks, you can design your own schedule, please visit www.isc-hpc.com/isc17_ap CLOAKROOM A cloakroom is available in the Foyer of Hall 3. Opening hours Monday, June 19: ..................................................................................................07:30 am - 08:30 pm Tuesday, June 20: .................................................................................................07:30 am - 07:00 pm Wednesday, June 21: ............................................................................................07:30 am - 07:00 pm COPY & PRINT CENTER Irmschler Repro GmbH offers on-site assistance at booth #M-100 in the Exhibition Hall (Hall 3.0). Opening hours Saturday, June 17: ................................................................................................01:00 pm – 06:00 pm Sunday, June 18: ..................................................................................................09:00 am – 06:00 pm Monday, June 19: ..................................................................................................09:00 am – 06:00 pm During these hours, orders can be placed and picked up at the service booth. Outside of these hours, orders can be placed via phone and e-mail, and will be delivered directly to your booth. Please allow up to 3 hours for delivery on top of turn-around time for the production of your order. Orders placed before Saturday, June 17, will be ready for pick-up on-site on Saturday afternoon. Ordering and Questions: Tel: +49 6103 930140 E-mail: [email protected] (Mr. Michael Irmschler) Website: https://ir-repro.de/ (German only) 6 | Conference & Exhibition Guide General Information | ISC 2017 EXHIBITION The ISC High Performance exhibition features the largest collection of HPC vendors, universities, and research organizations assembled annually in Europe. Detailed information regarding the exhibition is also available at http://isc-hpc.com/overview-sponsors-exhibitors.html General Information General Exhibition Hours Monday, June 19: ..................................................................................................03:00 pm – 08:30 pm ............................................................................................(ISC Welcome Party 06:30 pm – 08:30 pm) Tuesday, June 20: .................................................................................................10:00 am – 06:00 pm Wednesday, June 21: ............................................................................................10:00 am – 06:00 pm Sunday, June 18 Sunday, For the exhibition floor plan and the exhibitor listing, please refer to the Pocket Guide. The Pocket Guide is available at the Registration Counter (Foyer, Hall 3) and the Information Counter (Foyer, Hall 3). Monday, June 19 Monday, EXHIBITION LOUNGES There will be lounges located inside the Exhibition Hall (Hall 3). Please refer to the current floor plan for exact locations. Opening Hours Tuesday, June 20 Tuesday, Monday, June 19: ..................................................................................................03:00 pm – 08:30 pm Tuesday, June 20: .................................................................................................10:00 am – 06:00 pm Wednesday, June 21: ............................................................................................10:00 am – 06:00 pm EXHIBITOR SERVICES HELPDESK Wednesday, June 21 Wednesday, If you have any exhibition-related questions or need technical assistance on-site, please contact us at booth #M-100 in the exhibition hall. Service Hours June 17-22: ..........................................................................................................09:00
Recommended publications
  • CS 110 Computer Architecture Lecture 5: Intro to Assembly Language, MIPS Intro
    CS 110 Computer Architecture Lecture 5: Intro to Assembly Language, MIPS Intro Instructor: Sören Schwertfeger http://shtech.org/courses/ca/ School of Information Science and Technology SIST ShanghaiTech University Slides based on UC Berkley's CS61C 1 Using Memory You Don’t Own • What’s wrong with this code? char *append(const char* s1, const char *s2) { const int MAXSIZE = 128; char result[128]; int i=0, j=0; for (j=0; i<MAXSIZE-1 && j<strlen(s1); i++,j++) { result[i] = s1[j]; } for (j=0; i<MAXSIZE-1 && j<strlen(s2); i++,j++) { result[i] = s2[j]; } result[++i] = '\0'; return result; } 2 Using Memory You Don’t Own • Beyond stack read/write char *append(const char* s1, const char *s2) { const int MAXSIZE = 128; char result[128]; result is a local array name – int i=0, j=0; stack memory allocated for (j=0; i<MAXSIZE-1 && j<strlen(s1); i++,j++) { result[i] = s1[j]; } for (j=0; i<MAXSIZE-1 && j<strlen(s2); i++,j++) { result[i] = s2[j]; } result[++i] = '\0'; return result; Function returns pointer to stack } memory – won’t be valid after function returns 3 Managing the Heap • realloc(p,size): – Resize a previously allocated block at p to a new size – If p is NULL, then realloc behaves like malloc – If size is 0, then realloc behaves like free, deallocating the block from the heap – Returns new address of the memory block; NOTE: it is likely to have moved! E.g.: allocate an array of 10 elements, expand to 20 elements later int *ip; ip = (int *) malloc(10*sizeof(int)); /* always check for ip == NULL */ … … … ip = (int *) realloc(ip,20*sizeof(int));
    [Show full text]
  • Power and Energy Characterization of an Open Source 25-Core Manycore Processor
    Power and Energy Characterization of an Open Source 25-core Manycore Processor Michael McKeown, Alexey Lavrov, Mohammad Shahrad, Paul J. Jackson, Yaosheng Fu∗, Jonathan Balkind, Tri M. Nguyen, Katie Lim, Yanqi Zhouy, David Wentzlaff Princeton University fmmckeown,alavrov,mshahrad,pjj,yfu,jbalkind,trin,kml4,yanqiz,[email protected] ∗ Now at NVIDIA y Now at Baidu Abstract—The end of Dennard’s scaling and the looming power wall have made power and energy primary design CB Chip Bridge (CB) PLL goals for modern processors. Further, new applications such Tile 0 Tile 1 Tile 2 Tile 3 Tile 4 as cloud computing and Internet of Things (IoT) continue to necessitate increased performance and energy efficiency. Manycore processors show potential in addressing some of Tile 5 Tile 6 Tile 7 Tile 8 Tile 9 these issues. However, there is little detailed power and energy data on manycore processors. In this work, we carefully study Tile 10 Tile 11 Tile 12 Tile 13 Tile 14 detailed power and energy characteristics of Piton, a 25-core modern open source academic processor, including voltage Tile 15 Tile 16 Tile 17 Tile 18 Tile 19 versus frequency scaling, energy per instruction (EPI), memory system energy, network-on-chip (NoC) energy, thermal charac- Tile 20 Tile 21 Tile 22 Tile 23 Tile 24 teristics, and application performance and power consumption. This is the first detailed power and energy characterization of (a) (b) an open source manycore design implemented in silicon. The Figure 1. Piton die, wirebonds, and package without epoxy encapsulation open source nature of the processor provides increased value, (a) and annotated CAD tool layout screenshot (b).
    [Show full text]
  • Eithne: a Framework for Benchmarking Micro-Core Accelerators
    Eithne: A framework for benchmarking micro-core accelerators Maurice Jamieson Nick Brown EPCC EPCC University of Edinburgh University of Edinburgh Edinburgh, UK Edinburgh, UK [email protected] [email protected] Soft-core MFLOPs/core 1 INTRODUCTION MicroBlaze (integer only) 0.120 The free lunch is over and the HPC community is acutely aware of MicroBlaze (floating point) 5.905 the challenges that the end of Moore’s Law and Dennard scaling Table 1: LINPACK performance of the Xilinx MicroBlaze on [4] impose on the implementation of exascale architectures due to the Zynq-7020 @ 100MHz the end of significant generational performance improvements of traditional processor designs, such as x86 [5]. Power consumption and energy efficiency is also a major concern when scaling thecore is the benefit of reduced chip resource usage when configuring count of traditional CPU designs. Therefore, other technologies without hardware floating point support, but there is a 50 times need to be investigated, with micro-cores and FPGAs, which are performance impact on LINPACK due to the software emulation somewhat related, being considered by the community. library required to perform floating point arithmetic. By under- Micro-core architectures look to address this issue by implement- standing the implications of different configuration decisions, the ing a large number of simple cores running in parallel on a single user can make the most appropriate choice, in this case trading off chip and have been used in successful HPC architectures, such how much floating point arithmetic is in their code vs the saving as the Sunway SW26010 of the Sunway TaihuLight (#3 June 2019 in chip resource.
    [Show full text]
  • Hironori Kasahara Professor, Dept
    Software and Hardware for High Performance and Low Power Homogeneous and Heterogeneous Multicore Systems Hironori Kasahara Professor, Dept. of Computer Science & Engineering Director, Advanced Multicore Processor Research Institute Waseda University, Tokyo, Japan IEEE Computer Society President Elect 2017, President 2018 1980 BS, 82 MS, 85 Ph.D. , Dept. EE, Waseda Univ. Reviewed Papers: 214, Invited Talks: 145, Published 1985 Visiting Scholar: U. of California, Berkeley Unexamined Patent Application:59 (Japan, US, GB, 1986 Assistant Prof., 1988 Associate Prof., 1997 China Granted Patents: 30), Articles in News Papers, Prof. Dept. of EECE, Waseda Univ. Now Dept. of Web News, Medias incl. TV etc.: 572 Computer Sci. & Eng. Committees in Societies and Government 245 1989‐90 Research Scholar: U. of Illinois, Urbana‐ IEEE Computer Society President 2018, BoG(2009‐ Champaign, Center for Supercomputing R&D 14), Multicore STC Chair (2012‐), Japan Chair (2005‐ 1987 IFAC World Congress Young Author Prize 07), IPSJ Chair: HG for Mag. & J. Edit, Sig. on ARC. 1997 IPSJ Sakai Special Research Award 【METI/NEDO】 Project Leaders: Multicore for 2005 STARC Academia‐Industry Research Award Consumer Electronics, Advanced Parallelizing 2008 LSI of the Year Second Prize Compiler, Chair: Computer Strategy Committee 2008 Intel AsiaAcademic Forum Best Research Award 【Cabinet Office】 CSTP Supercomputer Strategic 2010 IEEE CS Golden Core Member Award ICT PT, Japan Prize Selection Committees, etc. 2014 Minister of Edu., Sci. & Tech. Research Prize 【MEXT】 Info. Sci. & Tech. Committee, 2015 IPSJ Fellow Supercomputers (Earth Simulator, HPCI Promo., 2017 IEEE Fellow Next Gen. Supercomputer K) Committees, etc. IEEE Computer Society BoG (Board of Governors) Feb.1, 2017 Multicores for Performance and Low Power Power consumption is one of the biggest problems for performance scaling from smartphones to cloud servers and supercomputers (“K” more than 10MW) .
    [Show full text]
  • Update on International HPC Activities (Mostly Asia)
    Update on International HPC Activities (mostly Asia) Input from: Erich Strohmaier, Patrick Naullieu (LBNL) Satoshi Matsuoka (TiTech) Haohuan Fu (Wuxi) And many conversations in Singapore John Shalf Lawrence Berkeley National Laboratory ASCAC, April 18, 2017 Performance of Countries 100,000 US /s] 10,000 EU Tflop Japan 1,000 China 100 10 1 Total P erformanc e [ 0 2000 2002 2004 2006 2008 2010 2012 2014 2016 Share of Top500 Entries Per Country Historical Share Current Share (averaged over liftetime of list) (November 2016 list) Korea, Poland Italy Others Italy Poland Italy China South United United 1% 1% 11% 1% 1% 1% Canada 1% others KingdomKingdom Others United States 1% 12% 3% France 3%France 11% ChinaChina Germany China 4% France 4% Japan 3434%% Japan 5% United 4% Japan United 6% States 6% France Kingdom Germany 6% 52% Germany United Kingdom 6% United Germany 6% United StatesStates Poland 8% Japan 34%34% Italy 10% Producers of HPC Equipment 500 India 450 400 Taiwan 350 Australia 300 250 Russia 200 China 150 100 Europe 50 0 Japan 1993 1995 1997 1999 2001 2003 2005 2007 2009 2011 2013 2015 USA Vendors / Performance Share 2007 Now HPE, 66, 10% HPE SGI, 40, 6% SGI Others, Lenovo 136, 20% Lenovo, 64, 10% Cray Inc. NUDT, 39, 6% Sugon FuJitsu, 38, 6% Cray Inc., Dell, 16, 2% 143, 21% IBM Inspur, Bull, Atos 9, 1% Huawei, 9, 1% Bull, Atos, 24, 4% Huawei IBM, 63, 9% Sugon, 25, 4% Sum of Pflop/s, % of whole list by vendor NSA-DOE Technical Meeting on High Performance Computing December 1, 2017 Top Level Conclusions 1.
    [Show full text]
  • 論文 / 著書情報 Article / Book Information
    論文 / 著書情報 Article / Book Information 題目(和文) Title(English) Hardware-Accelerated Modeling of Large-Scale Networks-on-Chip 著者(和文) Chu Van Thiem Author(English) Thiem Van Chu 出典(和文) 学位:博士(工学), 学位授与機関:東京工業大学, 報告番号:甲第10994号, 授与年月日:2018年9月20日, 学位の種別:課程博士, 審査員:吉瀬 謙二,横田 治夫,宮﨑 純,渡部 卓雄,金子 晴彦 Citation(English) Degree:Doctor (Engineering), Conferring organization: Tokyo Institute of Technology, Report number:甲第10994号, Conferred date:2018/9/20, Degree Type:Course doctor, Examiner:,,,, 学位種別(和文) 博士論文 Type(English) Doctoral Thesis Powered by T2R2 (Tokyo Institute Research Repository) Hardware-Accelerated Modeling of Large-Scale Networks-on-Chip by Thiem Van Chu A dissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Engineering Department of Computer Science Graduate School of Information Science and Engineering Tokyo Institute of Technology © Thiem Van Chu 2018. All rights reserved. Abstract Networks-on-Chip (NoCs) are becoming increasingly important elements in different types of computing hardware platforms, from general-purpose many-core processors for supercomputers and datacenters to application-specific MultiProcessor Systems-on-Chip (MPSoCs) for embed- ded applications. They are also integral parts of many emerging accelerators for critically essen- tial applications such as deep neural networks, databases, and graph processing. In such a hard- ware platform, the NoC is responsible for connecting the other components together and thus has a significant impact on the overall performance. To achieve higher performance and better power efficiency, many-core processors with more and more cores have been developed. For the similar reason and to meet the increasingly stringent requirements of target applications, the number of processing elements, memory and input/output modules integrated on an MPSoC/accelerator is increasing.
    [Show full text]
  • Future High Performance Computing Capabilities Summary Report of The
    Future High Performance Computing Capabilities Summary Report of the Advanced Scientific Computing Advisory Committee (ASCAC) Subcommittee March 20, 2019 Contents 1 Executive Summary 1 2 Background 4 2.1 Moore's Law and Current Technology Roadmaps . .4 2.2 Levels of Disruption in Post-Moore era . .6 2.3 National Landscape for Post-Moore Computing . .7 2.4 International Landscape for Post-Moore Computing . .8 2.5 Interpretation of Charge . .8 3 Application lessons learned from past HPC Technology Transitions 9 3.1 Background . .9 3.2 Vector-MPP Transition . .9 3.3 Terascale-Petascale Transition . 10 3.4 Petascale-Exascale Transition . 11 3.5 Lessons Learned . 11 3.6 Assessing Application Readiness . 12 3.7 Next Steps . 12 4 Future HPC Technologies: Opportunities and Challenges 15 4.1 Reconfigurable Logic . 15 4.2 Memory-Centric Processing . 17 4.3 Silicon Photonics . 21 4.4 Neuromorphic Computing . 24 4.5 Quantum Computing . 26 4.6 Analog Computing . 28 4.7 Application Challenges . 30 4.8 Open Platforms . 31 5 Findings 32 5.1 Need for clarity in future HPC roadmap for science applications . 32 5.2 Extreme heterogeneity with new computing paradigms will be a common theme in future HPC technologies . 32 5.3 Need to prepare applications and system software for extreme heterogeneity . 33 5.4 Need for early testbeds for future HPC technologies . 33 5.5 Open hardware is a growing trend in future platforms . 33 5.6 Synergies between HPC and mainstream computing . 34 i Future High Performance Computing Capabilities 6 Recommendations 35 6.1 Office of Science's Role in Future HPC Technologies .
    [Show full text]
  • George A. Matheou Phd.Pdf
    DEPARTMENT OF COMPUTER SCIENCE ARCHITECTURAL AND SOFTWARE SUPPORT FOR DATA-DRIVEN EXECUTION ON MULTI-CORE PROCESSORS MATHEOU DOCTOR OF PHILOSOPHY DISSERTATION GEORGE MATHEOU GEORGE 2017 DEPARTMENT OF COMPUTER SCIENCE ARCHITECTURAL AND SOFTWARE SUPPORT FOR DATA-DRIVEN EXECUTION ON MULTI-CORE PROCESSORS MATHEOU GEORGE MATHEOU A Dissertation Submitted to the University of Cyprus in Partial Fulfillment of the Requirements for the Degree of Doctor of Philosophy GEORGE November, 2017 MATHEOU GEORGE @George Matheou, 2017 VALIDATION PAGE Doctoral Candidate: George Matheou Doctoral Dissertation Title: Architectural and software support for data-driven execution on multi-core processors The present Doctoral Dissertation was submitted in partial fulfillment of the requirements for the Degree of Doctor of Philosophy at the Department of Computer Science and was approved on November 27, 2017 by the members of the Examination Committee. Examination Committee: Research Supervisor: MATHEOU Professor Paraskevas Evripidou Committee Member: Professor Constantinos S. Pattichis Committee Member: Assistant Professor Theocharis Theocharides Committee Member: Professor Ian Watson GEORGECommittee Member: Dr. Albert Cohen i DECLARATION OF DOCTORAL CANDIDATE The present doctoral dissertation was submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy of the University of Cyprus. It is a product of original work of my own, unless otherwise mentioned through references, notes, or any other statements. George Matheou MATHEOU GEORGE ii ABSTRACT To tèloc thc εκθετικής ανάπτυξης twn seiriak¸n epexergast¸n èqei dieukoλύνει thn ανάπ- tuxh twn polupύρηνων susτημάτwn. 'Etsi, οποιαδήποte αύξηση thc απόδοσης prèpei na proèrqetai από ton parallhliσμό. Gia na epiteuqjeÐ autό, prèpei na αναπτυχθούν apoteles- ματικά montèla παράλληλου programmatiσμού/εκτέλεσης.
    [Show full text]
  • An Optimization Framework for Codes Classification and Performance Evaluation of RISC Microprocessors
    S S symmetry Article An Optimization Framework for Codes Classification and Performance Evaluation of RISC Microprocessors Syed Rameez Naqvi 1,*, Ali Roman 1, Tallha Akram 1 , Majed M. Alhaisoni 2, Muhammad Naeem 1, Sajjad Ali Haider 1, Omer Chughtai 1 and Muhammad Awais 1 1 Department of Electrical and Computer Engineering, COMSATS University Islamabad, Wah Cantonment 47040, Pakistan 2 College of Computer Science and Engineering, University of Ha0il, Ha0il 81451, Saudi Arabia * Correspondence: [email protected]; Tel.: +92-51-9314-382 (ext. 259) Received: 24 June 2019; Accepted: 06 July 2019; Published: 19 July 2019 Abstract: Pipelines, in Reduced Instruction Set Computer (RISC) microprocessors, are expected to provide increased throughputs in most cases. However, there are a few instructions, and therefore entire assembly language codes, that execute faster and hazard-free without pipelines. It is usual for the compilers to generate codes from high level description that are more suitable for the underlying hardware to maintain symmetry with respect to performance; this, however, is not always guaranteed. Therefore, instead of trying to optimize the description to suit the processor design, we try to determine the more suitable processor variant for the given code during compile time, and dynamically reconfigure the system accordingly. In doing so, however, we first need to classify each code according to its suitability to a different processor variant. The latter, in turn, gives us confidence in performance symmetry against various types of codes—this is the primary contribution of the proposed work. We first develop mathematical performance models of three conventional microprocessor designs, and propose a symmetry-improving nonlinear optimization method to achieve code-to-design mapping.
    [Show full text]
  • Pdf Download
    E-Infrastructures H2020-EINFRA-2014-2015 EINFRA-4-2014: Pan-European High Performance Computing Infrastructure and Services PRACE-4IP PRACE Fourth Implementation Phase Project Grant Agreement Number: EINFRA-653838 D5.2 Market and Technology Watch Report Year 2. Final summary of results gathered Final Version: 1.0 Author(s): Ioannis Liabotis, GRNET Date: 21.04.2017 D5.2 Market and Technology Watch Report Year 2. Final summary of results gathered Project and Deliverable Information Sheet PRACE Project Project Ref. №: EINFRA-653838 Project Title: PRACE Fourth Implementation Phase Project Project Web Site: http://www.prace-project.eu Deliverable ID: D5.2 Deliverable Nature: Report Dissemination Level: Contractual Date of Delivery: PU * 30 / April / 2017 Actual Date of Delivery: 30 / April / 2017 EC Project Officer: Leonardo Flores Añover * - The dissemination level are indicated as follows: PU – Public, CO – Confidential, only for members of the consortium (including the Commission Services) CL – Classified, as referred to in Commission Decision 2991/844/EC. Document Control Sheet Title: Market and Technology Watch Report Year 2. Final Document summary of results gathered ID: D5.2 Version: 1.0 Status: Final Available at: http://www.prace-project.eu Software Tool: Microsoft Word 2010 File(s): D5.2.docx Written by: Ioannis Liabotis, GRNET PRACE-4IP-EINFRA-653838 i 21.04.2017 D5.2 Market and Technology Watch Report Year 2. Final summary of results gathered Authorship Contributors: Felip Moll, BSC Oscar Yerpes, BSC Francois Robin, CEA Jean-Philippe
    [Show full text]
  • Introduction to Parallel Processing
    IntroductionIntroduction toto ParallelParallel ProcessingProcessing • Parallel Computer Architecture: Definition & Broad issues involved – A Generic Parallel ComputerComputer Architecture • The Need And Feasibility of Parallel Computing Why? – Scientific Supercomputing Trends – CPU Performance and Technology Trends, Parallelism in Microprocessor Generations – Computer System Peak FLOP Rating History/Near Future • The Goal of Parallel Processing • Elements of Parallel Computing • Factors Affecting Parallel System Performance • Parallel Architectures History – Parallel Programming Models – Flynn’s 1972 Classification of Computer Architecture • Current Trends In Parallel Architectures – Modern Parallel Architecture Layered Framework • Shared Address Space Parallel Architectures • Message-Passing Multicomputers: Message-Passing Programming Tools • Data Parallel Systems • Dataflow Architectures • Systolic Architectures: Matrix Multiplication Systolic Array Example PCA Chapter 1.1, 1.2 CMPE655 - Shaaban #1 lec # 1 Spring 2017 1-24-2017 ParallelParallel ComputerComputer ArchitectureArchitecture A parallel computer (or multiple processor system) is a collection of communicating processing elements (processors) that cooperate to solve large computational problems fast by dividing such problems into parallel tasks, exploiting Thread-Level Parallelism (TLP). i.e Parallel Processing • Broad issues involved: Task = Computation done on one processor – The concurrency (parallelism) and communication characteristics of parallel algorithms for a given
    [Show full text]
  • OSCAR SCM Architecture for Multigrain Parallel Processing
    Software and Hardware for High Performance and Low Power Homogeneous and Heterogeneous Multicore Systems Hironori Kasahara Professor, Dept. of Computer Science & Engineering Director, Advanced Multicore Processor Research Institute Waseda University, Tokyo, Japan IEEE Computer Society President Elect 2017 URL: http://www.kasahara.cs.waseda.ac.jp/ Waseda Univ. GCSC Multicores for Performance and Low Power Power consumption is one of the biggest problems for performance scaling from smartphones to cloud servers and supercomputers (“K” more than 10MW) . Power Frequency * Voltage2 ILRAM I$ (Voltage Frequency) LBSC Core#0 Core#1 3 URAM DLRAM Power Frequency D$ ∝ ∝ SNC0 Core#2 Core#3 If Frequency∝is reduced to 1/4 SHWY VSWC (Ex. 4GHz1GHz), Core#6 Core#7 Power is reduced to 1/64 and SNC1 Performance falls down to 1/4 . Core#4 Core#5 <Multicores> DBSC CSM GCPG If 8cores are integrated on a chip, DDRPAD IEEE ISSCC08: Paper No. 4.5, Power is still 1/8 and M.ITO, … and H. Kasahara, Performance becomes 2 times. “An 8640 MIPS SoC with Independent Power-off Control of 8 CPUs and 8 RAMs by an Automatic Parallelizing Compiler” 2 Parallel Soft is important for scalable performance of multicore Just more cores don’t give us speedup Development cost and period of parallel software are getting a bottleneck of development of embedded systems, eg. IoT, Automobile Earthquake wave propagation simulation GMS developed by National Research Institute for Earth Science and Disaster Resilience (NIED) Fjitsu M9000 SPARC Multicore Server OSCAR Compiler gives us 211
    [Show full text]