Multicore Migration Study in Automotive Powertrain Domain

Size: px
Start display at page:

Download "Multicore Migration Study in Automotive Powertrain Domain"

Transcription

1 2 nd Workshop on Certifiable Multicore Avionics and Automotive Systems Multicore Migration Study in Automotive Powertrain Domain 21/Apr/2017 Hitachi, Ltd., Takeshi Fukuda Tasuku Ishigooka, Fumio Narisawa Hitachi Automotive Systems, Ltd., Toru Irie, Takafumi Suzuki

2 Contents 1. Outline of Hitachi 2. Background 3. Control Software and Issue 4. Our Method 5. Evaluation with Engine Control Software 6. Summary and Discussion 1

3 Hitachi corporate data Hitachi, Ltd. Incorporated 1 st February 1920 [Founded 1910] Head Office Marunouchi 1-6-6, Chiyoda-ku, Tokyo, JAPAN Hitachi Group (Consolidated) FY2015 Revenues JPY 10,343 billion R&D expenditure JPY billion [3.3% of revenue] No. of subsidiaries 1,056 companies [262 domestic; 794 overseas] No. of employees 335,244 [187,936 domestic; 147,308 overseas] Hitachi, Ltd All rights reserved.

4 Business portfolio Others (Logistics and Other services) 11% 3% Financial Services 19% Information & Telecommunication Systems Smart Life & Ecofriendly Systems Automotive Systems 9% 6% 14% Revenues (FY2015) 10,343 billion (JPY) 21% Social Infrastructure & Industrial Systems 7% 10% High Functional Materials & Components Construction Machinery Electronic Systems & Equipment

5 Business Description of Automotive Dep. System solutions that Hitachi Automotive Systems will provide for progress in Environment, Safety and Information field.

6 [Environment] Engine Management Systems Offering environment-friendly and high-efficiency engine management systems for reduction in CO2 and prevention of air pollution. Injector ECU: Engine control unit High-pressure fuel pump Variable Valve Event and Lift Control System Electronic throttle body Airflow sensor Ignition coil (Hitachi Automotive Systems Hanshin) Valve Timing Control Transmission control unit Oil pump Balancer Water pump Piston

7 Contents 1. Outline of Hitachi 2. Background 3. Control Software and Issue 4. Our Method 5. Evaluation with Engine Control Software 6. Summary and Discussion 6

8 Background: Trend of Exhaust Gas Regulation The performance requirements of automotive engine control are increasing, for instance to comply the exhaust emission regulations and reduce gasoline consumption s Air pollution problem Exhaust Gas Regulation about HC [g/km] 1980s 1990s 2000s 2010s North America Japan 53 regulation Muskie Act TLEV LEV Europe Euro3 New short term ULEV SULEV Euro4 New long term Global worming problem Euro5 Today Euro6 7

9 Performance Trend of Microcontroller for Powertrain Current electronic controller unit requests high performance microcontroller. Trend of Microcontroller for Powertrain Systems Clock [MHz] High performance trend Single Core Core * 2 Core * [Year] ECU: Electric Control Unit 8

10 Our study Our study: To migrate legacy source code to multicore platform. Comparison with other products PC, Smart phone Television Automotive engine Data Dependency Loosely coupled Loosely coupled Complicated 1 Task + Execution order Dataflow Mailer Text editor Web browser Broadcasting Recording Core1 Core2 Core3 Core1 Core Air-fuel ratio control Core1? Injection control 6 9 Core2? 9

11 Our study Our study: To migrate legacy source code to multicore platform. Comparison with other products A potion of dataflow of engine control software PC, Smart phone Television Automotive engine Data Dependency Loosely coupled Loosely coupled Complicated 1 Task + Execution order Dataflow mailer power point Web browser Broadcasting Recording Cite M. Panić, S. Kehr, E. Quiñones, B. Boddecker, J. Abella and F. J. Cazorla, RunPar: An Allocation Algorithm for Automotive Applications Exploiting Runnable Parallelism in Multicores, International Conference on Hardware/Software Codesign and System Synthesis (CODES+ISSS 14), Oct. Hitachi, Ltd All rights reserved. Core1 Core2 Core3 Core1 Core2 Air-fuel ratio control Core1? Injection control 6 9 Core2? 10

12 Contents 1. Outline of Hitachi 2. Background 3. Control Software and Issue 4. Our Method 5. Evaluation with Engine Control Software 6. Summary and Discussion 11

13 Dataflow of Control Software Dataflow of control software roughly consists of sensing, calculating, and actuating. E.g. Dataflow of fuel injection Airflow sensor ECU Notes (1) (2) (3) Task in AD convertor (1)Sensing airflow (2)Calculating air volume (3)Fitting fuel volume (4)Calculating timing of fuel injection (4) Injector Task in microcontroller Dataflow 12

14 Cyclic Execution of Control Software (1) (2) (3) (4) Tasks are executed periodically with each cyclic time or executed sporadically based on event like an engine rotation speed. Time chart(single core processor) AD convertor (1)250μ (2)1ms task ECU (3)2ms task (4)Interrupt based on rpm T Wait time by fixed priority scheduling T+1 T+2 T+3 T+4 [ms] 13

15 Parallelization Issue of parallelization A large number of inter-core communication data causes high frequent inter-core synchronization between cores. Single core 10ms task Multicore Core 1 10ms task A Inter-core synchronization Core 2 10ms task B 14

16 Issue of parallelization (Cont d) Issue: Long wait time is frequently happened when one core is interrupted by other high priority tasks due to frequent inter-core synchronization. 1ms task 1ms task Multicore Core 1 10ms task A Wait time Inter-core synchronization Interrupt Core 2 10ms task B Wait time Wait time 15

17 Issue of parallelization (Cont d) Issue: Long wait time is frequently happened when one core is interrupted by other high priority tasks due to frequent inter-core synchronization. 1ms task 1ms task Our Goal Multicore In order to Core achieve 1 10ms high task A parallelization, our goal is to reduce a number of inter-core synchronization. Wait time Interrupt Inter-core synchronization Core 2 10ms task B Wait time Wait time 16

18 Contents 1. Outline of Hitachi 2. Background 3. Control Software and Issue 4. Our Method 5. Evaluation with Engine Control Software 6. Summary and Discussion 17

19 Overview of our method We proposed parallelization method with performance requirements of system control. Feature of our method is to identify the inter-core data which doesn t need inter-core synchronization according to the requirements of Data Delay Time. Strategy of core allocation Requests for data delay Control SW for single core (1)Program analysis Dataflow (2)Detecting inter-core data inter-core communication data (3)Categorizing data Data with synchronization intra-core communication data Data without synchronization 18

20 Data delay time Data delay time is one kind of end-to-end path latency, especially, from start time of sensing task to start time of other task which has data dependence with sensing task. With synchronization between cores Time chart 1 Data delay Data delay AD convertor (1)250μ Core 1 (2)1ms task Synchronization between cores Synchronization between cores Core 2 (3)2ms task T T+1 T+2 T+3 T+4 [ms] Wait time Wait time 19

21 Data delay time (cont d) Without synchronization between cores Time chart 2 Data delay Data delay AD convertor (1)250μ Core 1 (2)1ms task Core 2 (3)2ms task T T+1 T+2 T+3 T+4 No wait time [ms] 20

22 Idea Our idea: we select the parallelization option which is without synchronization between cores when we can allow a WCRT(Worst Case Response Time) of data delay time. With synchronization Without synchronization Input data Same timing data Previous task data Wait time Long Zero Parallelization Low High Data delay time Short Long WCRT of data delay time Short Long N 1 i=1 (R τ i + nt τ i+1 r(τ i+1 ) + S(τ N ) Cite Balsini, A., Melani, A., Buonocunto, P. and Natale, Ki, M.: FMTV 2016: Where is the Actual Challenge?, 3 rd Challenge on Formal Method for Timing Verification (FMTV), International Workshop on Analyais Tools and Methodologies for Embedded and Real- Time Systems (WATERS 2016), (2016) 21

23 Contents 1. Outline of Hitachi 2. Background 3. Control Software and Issue 4. Our Method 5. Evaluation with Engine Control Software 6. Summary and Discussion 22

24 Overview of evaluation We migrated whole legacy engine control software to multicore ECU which has two cores. And evaluated it with HILS. Core 1: Cyclic tasks (E. g. 1ms, 2ms, 10ms tasks) Core2: Sporadic tasks (regarding engine rotation speed) Periodic Task API Crank Event Task API Periodic BSW OS Inter -Core COM OS Event (rpm) Core1 Core2 Engine control SW included aprox control signals ECU two cores ECU (Engine Controller Unit) HILS (Hardware-in-the-loop Simulation) 23

25 Periodic BSW Periodic Task API Core1 Single Core OS Inter -Core COM Crank Event Task API Single Core OS Core2 Event (Crank) Total amount of Inter-core communication data We found that a total amount of inter-core communication data is approx. 600 in our process step two. コア1: 周期タスクコア (1,2,4,10,20,100ms タスク ) コア2: クラセンコア (Quick REF タスク ) Strategy of core allocation Requests for data delay Requests for input data set Control SW for single core (1)Program analysis Dataflow (2)Detecting inter-core data inter-core communication data (3)Selecting data Data with synchronization Function Data depencency intra-core communication data Data without synchronization Dataflow(portion) the result of program analysis List of Inter-core communication data the result of detecting inter-core data 24

26 Periodic BSW Periodic Task API Core1 Single Core OS Inter -Core COM Crank Event Task API Single Core OS Core2 Event (Crank) The results Our method indicated that more than 90% out of approx. 600 inter- core communication data don t need synchronization. コア1: 周期タスクコア (1,2,4,10,20,100ms タスク ) コア2: クラセンコア (Quick REF タスク ) Strategy of core allocation Requests for data delay Requests for input data set Control SW for single core (1)Program analysis Dataflow (2)Detecting inter-core data inter-core communication data (3)Selecting data Data with synchronization Total amount of controls data intra-core communication data # of control data with program analysis Our method Data without synchronization 25

27 CPU load[%] Evaluation with HILS(Hardware-in-the-loop Simulator) Result of HILS evaluation indicated that our method is (1)useful for parallelizing engine control software (2) (3) 55% 50% 45% 40% 35% 30% 25% 20% 15% 10% 5% 0% CPU load vs. Engine rotation speed Increasing depends on rpm Constant CPU load Multi core (Core 1) Multi core (Core 2) Engine rotation speed [rpm] 26

28 CPU load[%] Evaluation with HILS(Hardware-in-the-loop Simulator) Result of HILS evaluation indicated that our method is (1)useful for parallelizing engine control software (2)able to distribute CPU load to cores (3) 55% 50% 45% 40% 35% 30% 25% 20% 15% 10% 5% 0% CPU load vs. Engine rotation speed CPU load 44% CPU load 16% Max. CPU load 51% Single core Multi core (Core 1) Multi core (Core 2) Engine rotation speed [rpm] 27

29 CPU load[%] Evaluation with HILS(Hardware-in-the-loop Simulator) Result of HILS evaluation indicated that our method is (1)useful for parallelizing engine control software (2)able to distribute CPU load to cores (3)Keeping hard real-time deadline. e.g. fuel infection 55% 50% 45% 40% 35% 30% 25% 20% 15% 10% 5% 0% CPU load vs. Engine rotation speed CPU load 44% CPU load 16% Max. CPU load 51% Single core Multi core (Core 1) Multi core (Core 2) Engine rotation speed [rpm] 28

30 Contents 1. Outline of Hitachi 2. Background 3. Control Software and Issue 4. Our Method 5. Evaluation with Engine Control Software 6. Summary and Discussion 29

31 Summary Proposed method Parallelization method for control software The feature of our method is -identify the inter-core data which doesn t need core synchronization according to the requirement of Data Delay Time Evaluation We apply our method to whole legacy engine control software. Results More than 90% of data out of approximately 600 inter-core communication data don t need synchronization mechanism. The evaluation results with HILS indicated that the parallelized software satisfied requirements of real-time performance. 30

32 Discussion Discussion Process and Method to decide requirement time of data delay with control engineer is required. It is tough issue to decide it which doesn t cause a bad effect for the performance of systems. It is a nonsense if multicore migration decrease engine performance like fuel efficiency. Precise WCRT analysis method is required. The result of WCRT analysis for data delay time is too pessimistic. 31

33 Thank you!

Hitachi Group Profile

Hitachi Group Profile 4 Hitachi Group Profile Company Profile (as of March 31, 2017) Consolidated Financial Highlights for Fiscal 2016, Based on the International Financial Reporting Standards (IFRS) Corporate name Hitachi,

More information

Model Based Systems Engineering Engine Control: from concept to validation. Jan Smolders Technical Account Manager

Model Based Systems Engineering Engine Control: from concept to validation. Jan Smolders Technical Account Manager Model Based Systems Engineering Engine Control: from concept to validation Jan Smolders Technical Account Manager Table of Content Model Driven Development MiL SiL HiL Model adaptation to Real-Time Towards

More information

Hitachi s Transmission & Distribution

Hitachi s Transmission & Distribution Hitachi s Transmission & Distribution February 11, 2016 Hitachi T&D Systems Saudi Arabia Ltd. Hitachi, Ltd. 2014. All rights reserved. Contents 1. Overview of Hitachi, Ltd. 2. Hitachi T&D Systems Div.

More information

AMDC 2017 Liviona Multi-Core in Automotive Powertrain and Next Steps Towards Parallelization

AMDC 2017 Liviona Multi-Core in Automotive Powertrain and Next Steps Towards Parallelization Bitte decken Sie die schraffierte Fläche mit einem Bild ab. Please cover the shaded area with a picture. (24,4 x 11,0 cm) AMDC 2017 Liviona Multi-Core in Automotive Powertrain and Ralph Mader, 25. April

More information

Outline of Hitachi, Ltd.

Outline of Hitachi, Ltd. Outline of Hitachi, Ltd. 02/03/2015 Kazuhiro Ikebe President Hitachi South America, Ltda. Hitachi, Ltd. 2016. All rights reserved. 1-1. Infrastructure Importance Energy & Environment Water & Food Traffic

More information

Hitachi s History of Transformation

Hitachi s History of Transformation Management Strategy Hitachi s History of Transformation (Fiscal 2004 Fiscal 2013) Recovery from management crisis and on to a new growth stage. In fiscal 2013, Hitachi achieved new record highs in operating

More information

*1 Indirect materials: materials used in a production process, but which can t be linked to a specific product or job.

*1 Indirect materials: materials used in a production process, but which can t be linked to a specific product or job. FOR IMMEDIATE RELEASE Hitachi to Transfer Shares in Hitachi Procurement Service to Infosys, Panasonic, and PASONA A new company, HIPUS aims to combine the strengths and expertise of each company, and accelerates

More information

Outline of Hitachi, Ltd.

Outline of Hitachi, Ltd. Cannot change the logo size and position. Outline of Hitachi, Ltd. 11/11/2014 Kazuhiro Ikebe Managing Director Hitachi South America, Ltda. 1. Corporate Data FY2013 Through 100 years, Hitachi has grown

More information

An application-based EDF scheduler for OSEK/VDX

An application-based EDF scheduler for OSEK/VDX An application-based EDF scheduler for OSEK/VDX Claas Diederichs INCHRON GmbH 14482 Potsdam, Germany claas.diederichs@inchron.de Ulrich Margull 1 mal 1 Software GmbH 90762 Fürth, Germany margull@1mal1.com

More information

Hitachi, Fuji Electric and Meiden Reach Basic Agreement on Dissolving T&D Joint Venture (Progress Report)

Hitachi, Fuji Electric and Meiden Reach Basic Agreement on Dissolving T&D Joint Venture (Progress Report) FOR IMMEDIATE RELEASE Hitachi, Fuji Electric and Meiden Reach Basic Agreement on Dissolving T&D Joint Venture (Progress Report) Tokyo, September 29, 2011 --- As announced on July 29, 2011, ( Hitachi, NYSE:HIT

More information

MSK2. May 2012 Frankie Chan (IFAP ATV SMD SAE)

MSK2. May 2012 Frankie Chan (IFAP ATV SMD SAE) MSK2 SW framework May 2012 Frankie Chan (IFAP ATV SMD SAE) MSK2 SW Framework Provide small engine Hardware Platform to user to speed up the Engine Control Unit (ECU) development. The MSK2 SW framework

More information

Explanatory Material of Group Company for the Fiscal Year Ended March 31, 2018

Explanatory Material of Group Company for the Fiscal Year Ended March 31, 2018 -- Explanatory Material of Group Company for the Fiscal Year Ended March, 08 Makino Milling Machine Co., Ltd Apr. 6, 08 Apr. 6, 08 Copyright @ 005 Makino Milling Machine Co.,Ltd. All Rights Reserved Consolidated

More information

Plant Modeling for Powertrain Control Design

Plant Modeling for Powertrain Control Design Plant Modeling for Powertrain Control Design Modelica Automotive Workshop Dearborn, MI November 19, 2002 Dr. Larry Michaels GM Powertrain Controls Engineering Challenges in PT Control Design Control System

More information

Consolidated Financial Results for Fiscal 2016 (As of March 2017)

Consolidated Financial Results for Fiscal 2016 (As of March 2017) Consolidated Financial Results for Fiscal 2016 (As of March 2017) May 16, 2017 Clarion Co., Ltd. 1.Outline of Consolidated Financial Results for Fiscal 2016 2.Medium Term Management Plans 3.Medium Term

More information

HITACHI Social Innovation & OSS

HITACHI Social Innovation & OSS HITACHI Social Innovation & OSS 2018/11/15 Ryo Kawai HITACHI LTD. Contents 1. Outline of Hitachi 2. Our Vision and OSS 1 Contents 1. Outline of Hitachi 2. Our Vision and OSS 2 Hitachi Corporate Profile

More information

From intermittent water supply to 24/7. Approach and methodology to face water crisis

From intermittent water supply to 24/7. Approach and methodology to face water crisis From intermittent water supply to 24/7. Approach and methodology to face water crisis Alessandro Bettin HITACHI Tirana, 04 October 2016 Hitachi Europe Ltd. 2016. All rights reserved. Segment Constitution*

More information

Ensuring Schedulability of Spacecraft Flight Software

Ensuring Schedulability of Spacecraft Flight Software Ensuring Schedulability of Spacecraft Flight Software Flight Software Workshop 7-9 November 2012 Marek Prochazka & Jorge Lopez Trescastro European Space Agency OUTLINE Introduction Current approach to

More information

Objective. Hitachi, Ltd. Mitsubishi Electric Corporation Mitsubishi Heavy Industries, Ltd.

Objective. Hitachi, Ltd. Mitsubishi Electric Corporation Mitsubishi Heavy Industries, Ltd. Hitachi, Ltd. Mitsubishi Electric Corporation Mitsubishi Heavy Industries, Ltd. Hitachi, Mitsubishi Electric and Mitsubishi Heavy Industries Sign Absorption-type Company Split Agreements on Transfer of

More information

FIXED PRIORITY SCHEDULING ANALYSIS OF THE POWERTRAIN MANAGEMENT APPLICATION EXAMPLE USING THE SCHEDULITE TOOL

FIXED PRIORITY SCHEDULING ANALYSIS OF THE POWERTRAIN MANAGEMENT APPLICATION EXAMPLE USING THE SCHEDULITE TOOL FIXED PRIORITY SCHEDULING ANALYSIS OF THE POWERTRAIN MANAGEMENT APPLICATION EXAMPLE USING THE SCHEDULITE TOOL Jens Larsson t91jla@docs.uu.se Technical Report ASTEC 97/03 DoCS 97/82 Department of Computer

More information

Social Innovation Forum Salvador

Social Innovation Forum Salvador Cannot change the logo size and position. Social Innovation Forum Salvador 11/11/2015 Kazuhiro Ikebe President Hitachi South America, Ltda. 1. Social Innovation Forum and Bahia Why promote an event in

More information

FOR IMMEDIATE RELEASE

FOR IMMEDIATE RELEASE FOR IMMEDIATE RELEASE Hitachi Launches Moving State Management Service that Uses Beacons to Visualize the Behavior of Workers at Construction Sites Effectiveness Verified in Singapore-based Field Tests,

More information

Renesas New Generation of R8C/Tiny Series MCUs Adds 1.8V Support and Coprocessing With Background Operation to Enable Low-cost Innovative Designs

Renesas New Generation of R8C/Tiny Series MCUs Adds 1.8V Support and Coprocessing With Background Operation to Enable Low-cost Innovative Designs PRESS CONTACT: Akiko Ishiyama Renesas Technology America, Inc. (408) 382-7407 akiko.ishiyama@renesas.com Renesas New Generation of R8C/Tiny Series MCUs Adds 1.8V Support and Coprocessing With Background

More information

Hitachi s s Business in China: Risk & Reward

Hitachi s s Business in China: Risk & Reward Hitachi s s Business in China: Risk & Reward Qian Wei Senior Researcher Hitachi Research Institute Outline of Hitachi Hitachi in 2004FY Founded: February 1, 1910 Net Sales: 9,027 Billion Yen (US $84,364

More information

ELEC 5260/6260/6266 Embedded Computing Systems

ELEC 5260/6260/6266 Embedded Computing Systems ELEC 5260/6260/6266 Embedded Computing Systems Spring 2019 Victor P. Nelson Text: Computers as Components, 4 th Edition Prof. Marilyn Wolf (Georgia Tech) Course Web Page: http://www.eng.auburn.edu/~nelsovp/courses/elec5260_6260/

More information

FOR IMMEDIATE RELEASE

FOR IMMEDIATE RELEASE FOR IMMEDIATE RELEASE Hitachi Completes Volume Production Line for Lithium Ion Batteries used in Hybrid Electric Vehicles Achieves world s highest level *1 of volume production capacity for automotive

More information

the 3-month period ended Jun.30,2011 July 28,

the 3-month period ended Jun.30,2011 July 28, Financial Highlights the 3-month period ended Jun.30,2011 (Fiscal 2011) July 28, 2011 http://www.hitachi-metals.co.jp E-Mail:hmir@hitachi-metals.co.jpco Performance Overview First Quarter of Fiscal 2011

More information

the 6-month period ended Sep.30,2011 October 28,

the 6-month period ended Sep.30,2011 October 28, Financial Highlights the 6-month period ended Sep.30,2011 (Fiscal 2011) October 28, 2011 http://www.hitachi-metals.co.jp E-Mail:hmir@hitachi-metals.co.jpco Highlights Fiscal2010 Fiscal2011 billion, ( ):

More information

Hitachi Announces Consolidated Financial Results for the First Quarter of Fiscal 2006

Hitachi Announces Consolidated Financial Results for the First Quarter of Fiscal 2006 FOR IMMEDIATE RELEASE Hitachi Announces Consolidated Financial Results for the First Quarter of Fiscal 2006 Tokyo, July 31, 2006 --- Hitachi, Ltd. (NYSE:HIT / TSE:6501) today announced its consolidated

More information

Hitachi Announces Corporate Split and New Company Establishment Plan for Automotive Systems Group

Hitachi Announces Corporate Split and New Company Establishment Plan for Automotive Systems Group FOR IMMEDIATE RELEASE Hitachi Announces Corporate Split and New Company Establishment Plan for Automotive Systems Group Tokyo, May 26, 2009 --- Hitachi, Ltd. (NYSE:HIT / TSE:6501) today announced that

More information

Partitioned Control Challenge Problem

Partitioned Control Challenge Problem Partitioned Control Challenge Problem Introduction The lack of model-based tools to analyze and implement the distribution of software functionality between multiple targets is a problem faced in the automotive

More information

Hardware-Software Codesign. 1. Introduction

Hardware-Software Codesign. 1. Introduction Hardware-Software Codesign 1. Introduction Lothar Thiele 1-1 Contents What is an Embedded System? Levels of Abstraction in Electronic System Design Typical Design Flow of Hardware-Software Systems 1-2

More information

Business Strategy of Automotive Systems Group

Business Strategy of Automotive Systems Group Business Strategy of Automotive Systems Group March 30, 2007 Automotive Systems Group Hitachi, Ltd. Yasuhiko Honda Business Strategy of Automotive Systems Group Ⅰ Ⅱ Ⅲ Market Environment and Hitachi s Approach

More information

Overall Structure of RT Systems

Overall Structure of RT Systems Course Outline Introduction Characteristics of RTS Real Time Operating Systems (RTOS) OS support: scheduling, resource handling Real Time Programming Languages Language support, e.g. Ada tasking Scheduling

More information

Hardware-Software Codesign. 1. Introduction

Hardware-Software Codesign. 1. Introduction Hardware-Software Codesign 1. Introduction Lothar Thiele 1-1 Contents What is an Embedded System? Levels of Abstraction in Electronic System Design Typical Design Flow of Hardware-Software Systems 1-2

More information

Achieving Predictable Multicore Execution of Automotive Applications Using the LET Paradigm

Achieving Predictable Multicore Execution of Automotive Applications Using the LET Paradigm Achieving Predictable Multicore Execution of Automotive Applications Using the LET Paradigm Alessandro Biondi and Marco Di Natale Scuola Superiore Sant Anna, Pisa, Italy Introduction The introduction of

More information

Business Strategy of Automotive Systems

Business Strategy of Automotive Systems Business Strategy of - Actions for 2010 - December 17, 2003 Taiji Hasegawa Executive Officer President & Chief Executive Officer, Hitachi, Ltd. -1- Table of Contents 1 Automotive Products Business in Hitachi

More information

NEC Electronics and Renesas to Integrate Business Operations Establishment of the World s Third Largest Semiconductor Company

NEC Electronics and Renesas to Integrate Business Operations Establishment of the World s Third Largest Semiconductor Company No. 2463 NEC Electronics and Renesas to Integrate Business Operations Establishment of the World s Third Largest Semiconductor Company KAWASAKI, Japan, TOKYO, Japan, April 27, 2009 -- NEC Electronics Corporation

More information

Explanatory Material for Financial Report for Third Quarter of Fiscal 2012 Ending March 31, February 1, 2012 Hitachi Cable, Ltd.

Explanatory Material for Financial Report for Third Quarter of Fiscal 2012 Ending March 31, February 1, 2012 Hitachi Cable, Ltd. Explanatory Material for Financial Report for Third Quarter of Fiscal 2012 Ending March 31, 2012 February 1, 2012 Hitachi Cable, Ltd. 2012 Hitachi Cable, Ltd. All rights reserved. 1 Table of Contents 1.

More information

Master title. Digital Health Erman Akgün. Sr. Vice President Hitachi Healthcare Turkey

Master title. Digital Health Erman Akgün. Sr. Vice President Hitachi Healthcare Turkey Master title Digital Health 08.11.2017 Erman Akgün Sr. Vice President Hitachi Healthcare Turkey Contents 1. Overview of Hitachi 2. Hitachi Healthcare Business 3. Digital Innovation in Healthcare Contents

More information

Introduction to Real-time Systems. Advanced Operating Systems (M) Lecture 2

Introduction to Real-time Systems. Advanced Operating Systems (M) Lecture 2 Introduction to Real-time Systems Advanced Operating Systems (M) Lecture 2 Introduction to Real-time Systems Real-time systems deliver services while meeting some timing constraints Not necessarily fast,

More information

Development of explosives detection technology to automatically detect explosive substances adhering to carry-on luggage

Development of explosives detection technology to automatically detect explosive substances adhering to carry-on luggage FOR IMMEDIATE RELEASE Development of explosives detection technology to automatically detect explosive substances adhering to carry-on luggage Combined with x-ray inspection equipment to raise security

More information

Automotive Networks Are New Busses and Gateways the Answer or Just Another Challenge? ESWEEK Panel Oct. 3, 2007

Automotive Networks Are New Busses and Gateways the Answer or Just Another Challenge? ESWEEK Panel Oct. 3, 2007 Automotive Networks Are New Busses and Gateways the Answer or Just Another Challenge? ESWEEK Panel Oct. 3, 2007 Automotive Networks complex networks hundreds of functions 50+ ECUs (Electronic Control Unit)

More information

Hitachi Announces 2018 Mid-term Management Plan

Hitachi Announces 2018 Mid-term Management Plan FOR IMMEDIATE RELEASE Contacts: Japan: Mickey Takeuchi U.K.: Yuki Maeda Hitachi, Ltd. Hitachi Europe Ltd. +81-3-5208-9324 +44-1628-585714 masayuki.takeuchi.cc@hitachi.com yuki.maeda@hitachi-eu.com Hitachi

More information

Systems & Services Business Strategy

Systems & Services Business Strategy Systems & Services Business Strategy Hitachi IR Day 2016 June 1, 2016 Keiichi Shiotsuka Senior Vice President and Executive Officer, Head of Systems & Services Business Hitachi, Ltd. Systems & Services

More information

Data Analytics of High Frequency Engine Rotational Speed Using MATLAB

Data Analytics of High Frequency Engine Rotational Speed Using MATLAB Data Analytics of High Frequency Engine Rotational Speed Using MATLAB AINA JAIN MEENAKSHI NISHIT JAIN SANDEEP MANDAL Maruti Suzuki India Ltd. AGENDA Engine Management System (EMS) and its components Acquisition

More information

Business Strategy of the Cable Materials Company

Business Strategy of the Cable Materials Company Business Strategy of the Cable Materials Company Hitachi Metals IR Day 2017 May 31, 2017 Hitachi Metals, Ltd. Kazuya Murakami Executive Officer President of the Cable Materials Company 1 Business Strategy

More information

Outline of Hitachi, Ltd.

Outline of Hitachi, Ltd. Cannot change the logo size and position. Outline of Hitachi, Ltd. 11/5/2014 Kazuhiro Ikebe Managing Director Hitachi South America, Ltda. 1. Corporate Data FY2013 Through 100 years, Hitachi has grown

More information

System Design and Methodology/ Embedded Systems Design (Modeling and Design of Embedded Systems)

System Design and Methodology/ Embedded Systems Design (Modeling and Design of Embedded Systems) Design&Methodologies Fö 1&2-1 Design&Methodologies Fö 1&2-2 Course Information Design and Methodology/ Embedded s Design (Modeling and Design of Embedded s) TDTS07/TDDI08 Web page: http://www.ida.liu.se/~tdts07

More information

ELEC 5260/6260/6266 Embedded Computing Systems

ELEC 5260/6260/6266 Embedded Computing Systems ELEC 5260/6260/6266 Embedded Computing Systems Spring 2018 Victor P. Nelson Text: Computers as Components, 4 th Edition Prof. Marilyn Wolf (Georgia Tech) Course Web Page: http://www.eng.auburn.edu/~nelsovp/courses/elec5260_6260/

More information

Timing Analysis on Complex Real-Time Automotive Multicore Architectures

Timing Analysis on Complex Real-Time Automotive Multicore Architectures 2 nd Workshop on Mapping Applications to MPSoCs St. Goar, June 2009 Timing Analysis on Complex Real-Time Automotive Multicore Architectures Mircea Negrean Simon Schliecker Rolf Ernst Technische Universität

More information

Business Result for the Second Quarter ended September 30, 2017 Regional Market Environments and Projections

Business Result for the Second Quarter ended September 30, 2017 Regional Market Environments and Projections Business Result for the Second Quarter ended September 3, 217 Regional Market Environments and Projections October 2, 217 Hitachi Construction Machinery Co., Ltd. Executive Vice President and Executive

More information

MATLAB Expo Simulation Based Automotive Communication Design using MATLAB- SimEvent. Sudhakaran M Anand H General Motors

MATLAB Expo Simulation Based Automotive Communication Design using MATLAB- SimEvent. Sudhakaran M Anand H General Motors MATLAB Expo 2013 Simulation Based Automotive Communication Design using MATLAB- SimEvent Sudhakaran M Anand H General Motors 1 Agenda Introduction Different Analysis Methods Analytical vs. Simulation Approach

More information

Handling Challenges of Multi-Core Technology in Automotive Software Engineering

Handling Challenges of Multi-Core Technology in Automotive Software Engineering Model Based Development Tools for Embedded Multi-Core Systems Handling Challenges of Multi-Core Technology in Automotive Software Engineering VECTOR INDIA CONFERENCE 2017 Timing-Architects Embedded Systems

More information

5. NTT conducted a two-for-one stock split of its common stock with an effective date of July 1, The figures for NTT shareholders equity per sha

5. NTT conducted a two-for-one stock split of its common stock with an effective date of July 1, The figures for NTT shareholders equity per sha PART Ⅰ. INFORMATION ON THE COMPANY ITEM 1. OVERVIEW OF THE COMPANY 1. Selected Financial Data (1) Selected Consolidated Financial and Other Data of the Company U.S. GAAP 29 th 30 th 31 st 32 nd 33 rd March

More information

Hardware/Software Co-design

Hardware/Software Co-design Hardware/Software Co-design Zebo Peng, Department of Computer and Information Science (IDA) Linköping University Course page: http://www.ida.liu.se/~petel/codesign/ 1 of 52 Lecture 1/2: Outline : an Introduction

More information

Restructuring of Automotive Lithium-Ion Battery Business Shift to Joint-stock Partnership Structure with INCJ and Maxell

Restructuring of Automotive Lithium-Ion Battery Business Shift to Joint-stock Partnership Structure with INCJ and Maxell FOR IMMEDIATE RELEASE Restructuring of Automotive Lithium-Ion Battery Business Shift to Joint-stock Partnership Structure with INCJ and Maxell Tokyo, December 25, 2018 --- Hitachi, Ltd. (TSE: 6501) today

More information

Hitachi Metals. Financial Results for the First Nine Months of Fiscal Year Ending March 31, 2016 (April 1, 2015 to December 31, 2015) January 28, 2016

Hitachi Metals. Financial Results for the First Nine Months of Fiscal Year Ending March 31, 2016 (April 1, 2015 to December 31, 2015) January 28, 2016 Hitachi Metals Financial Results for the First Nine Months of Fiscal Year Ending March 31, 2016 (April 1, 2015 to December 31, 2015) January 28, 2016 COPYRIGHT 2016 Hitachi Metals, Ltd. 1-1. Overview of

More information

Consolidated Financial Results for the Second Quarter, Fiscal 2018

Consolidated Financial Results for the Second Quarter, Fiscal 2018 Consolidated Financial Results for the Second Quarter, Fiscal 2018 Ⅰ. Consolidated Financial Results for the First Half, Fiscal 2018 Consolidated Financial Results for Fiscal 2018 Ⅱ. Supplementary Data

More information

A specification proposed by JASPAR has been adopted for AUTOSAR.

A specification proposed by JASPAR has been adopted for AUTOSAR. Japan Automotive Software Platform and Architecture A specification proposed by JASPAR has been adopted for AUTOSAR. JASPAR General Incorporated Association 1. Introduction An RTE profile specification

More information

Hitachi Announces the Conclusion of Absorption-Type Company Split Agreement Relating to Reorganization of the Healthcare Business

Hitachi Announces the Conclusion of Absorption-Type Company Split Agreement Relating to Reorganization of the Healthcare Business FOR IMMEDIATE RELEASE Hitachi Announces the Conclusion of Absorption-Type Company Split Agreement Relating to Reorganization of the Healthcare Business Tokyo, Japan, February 7, 2018 --- Hitachi, Ltd.

More information

FOR IMMEDIATE RELEASE

FOR IMMEDIATE RELEASE FOR IMMEDIATE RELEASE Hitachi Announces to Begin Volume Production of Semiconductor Strain Sensors for IoT -- Automotive technologies to be rolled out in a wide range of fields, including power systems,

More information

Software integration challenge multi-core experience from real world projects

Software integration challenge multi-core experience from real world projects Software integration challenge multi-core experience from real world projects Rudolf Grave 17.06.2015 Agenda About EB Automotive Motivation Constraints for mapping functions to cores AUTOSAR & MultiCore

More information

Power and Performance on Demand.

Power and Performance on Demand. Power and Performance on Demand. KOHLER Command PRO 17- HP air-cooled, vertical- and horizontal-shaft, V-twin engines. KOHLER COMMAND PRO SPECIALLY DESIGNED OIL COOLER All KOHLER Command PRO 17- HP vertical

More information

Earnings Release Conference First Quarter of FY2012 (April 1, 2012 to June 30, 2012) July 31, 2012 Murata Manufacturing Co., Ltd.

Earnings Release Conference First Quarter of FY2012 (April 1, 2012 to June 30, 2012) July 31, 2012 Murata Manufacturing Co., Ltd. Earnings Release Conference First Quarter of FY2012 (April 1, 2012 to June 30, 2012) July 31, 2012 Murata Manufacturing Co., Ltd. 1. First Quarter of FY2012 From April 1, 2012 to June 30, 2012 Consolidated

More information

Taking the Right Turn with Safe and Modular Solutions for the Automotive Industry

Taking the Right Turn with Safe and Modular Solutions for the Automotive Industry Taking the Right Turn with Safe and Modular Solutions for the Automotive Industry A Time-Triggered Middleware for Safety- Critical Automotive Applications Ayhan Mehmet, Maximilian Rosenblattl, Wilfried

More information

Energy Efficient HVAC Systems

Energy Efficient HVAC Systems Energy Efficient HVAC Systems < NEW YORK, June 10, 2013 /PRNewswire/ -- Reportlinker.com announces that a new market research report is available in its catalogue: Energy Efficient HVAC Systems http://www.reportlinker.com/p0370594/energy-efficient-

More information

Case Study: Hybrid Networking - Applications, Growth, Cost Control, and Security

Case Study: Hybrid Networking - Applications, Growth, Cost Control, and Security Case Study: Hybrid Networking - Applications, Growth, Cost Control, and Security Mark Williams Senior Manager, Global Networks, Security, and Mobility April 5, 2016 Agenda BorgWarner At a Glace. Planning

More information

Part 2: Principles for a System-Level Design Methodology

Part 2: Principles for a System-Level Design Methodology Part 2: Principles for a System-Level Design Methodology Separation of Concerns: Function versus Architecture Platform-based Design 1 Design Effort vs. System Design Value Function Level of Abstraction

More information

Platform Technologies that Support High-quality Automotive Products

Platform Technologies that Support High-quality Automotive Products FEATURED ARTICLES Environmentally Compatible Technologies for a Car Society that Coexists with the Earth Platform Technologies that Support High-quality Automotive Products To satisfy the needs of autonomous

More information

Explanatory Material for Financial Report for Second Quarter of Fiscal 2012 Ending March 31, October 28, 2011 Hitachi Cable, Ltd.

Explanatory Material for Financial Report for Second Quarter of Fiscal 2012 Ending March 31, October 28, 2011 Hitachi Cable, Ltd. Explanatory Material for Financial Report for Second Quarter of Fiscal 2012 Ending March 31, 2012 October 28, 2011 Hitachi Cable, Ltd. 2011 Hitachi Cable, Ltd. All rights reserved. 1 Table of Contents

More information

ISO meets AUTOSAR - First Lessons Learned Dr. Günther Heling

ISO meets AUTOSAR - First Lessons Learned Dr. Günther Heling ISO 26262 meets AUTOSAR - First Lessons Learned Dr. Günther Heling Agenda 1. ISO 26262 and AUTOSAR Two Basic Contradictions Top-Down vs. Reuse Concentration vs. Distribution 2. Approach Mixed ASIL System

More information

Real Time Operating Systems and Middleware

Real Time Operating Systems and Middleware Real Time Operating Systems and Middleware Introduction to Real-Time Systems Luca Abeni abeni@disi.unitn.it Credits: Luigi Palopoli, Giuseppe Lipari, Marco Di Natale, and Giorgio Buttazzo Scuola Superiore

More information

RT- Xen: Real- Time Virtualiza2on. Chenyang Lu Cyber- Physical Systems Laboratory Department of Computer Science and Engineering

RT- Xen: Real- Time Virtualiza2on. Chenyang Lu Cyber- Physical Systems Laboratory Department of Computer Science and Engineering RT- Xen: Real- Time Virtualiza2on Chenyang Lu Cyber- Physical Systems Laboratory Department of Computer Science and Engineering Embedded Systems Ø Consolidate 100 ECUs à ~10 multicore processors. Ø Integrate

More information

10 th AUTOSAR Open Conference

10 th AUTOSAR Open Conference 10 th AUTOSAR Open Conference Rinat Asmus AUTOSAR Project Leader BMW AUTOSAR Adaptive Platform AUTOSAR Nov-2017 New Challenges One Standard. Do AUTOSAR Core partners commit to standard use? Is the implementation

More information

DSRC Standards Development in ITU-R and Japan

DSRC Standards Development in ITU-R and Japan DSRC Standards Development in ITU-R and Japan SS30: Future ITS Wireless Communications November 10, 2005 San Francisco, U.S.A. Sam Oyama (Hitachi, Ltd.) ITS Info-Communications Forum, Japan November 10,

More information

AUTOSAR design flow. Yoon-Jin Kim Application Engineer. July mentor.com/automotive

AUTOSAR design flow. Yoon-Jin Kim Application Engineer. July mentor.com/automotive AUTOSAR design flow Yoon-Jin Kim Application Engineer July 2016 mentor.com/automotive Android is a trademark of Google Inc. Use of this trademark is subject to Google Permissions. Linux is the registered

More information

Business Strategy of the Functional Components Company

Business Strategy of the Functional Components Company Business Strategy of the Functional Components Company Hitachi Metals IR Day 2017 May 31, 2017 Hitachi Metals, Ltd. Masato Hasegawa Vice President and Executive Officer President of the Functional Components

More information

Components & Characteristics of an Embedded System Embedded Operating System Application Areas of Embedded d Systems. Embedded System Components

Components & Characteristics of an Embedded System Embedded Operating System Application Areas of Embedded d Systems. Embedded System Components Components & Characteristics of an Embedded System Embedded Operating System Application Areas of Embedded d Systems Automotive Industrial Automation Building Automation etc. 1 2 Embedded System Components

More information

Financial Results for the Three Months Ended June 30, August 7, 2018

Financial Results for the Three Months Ended June 30, August 7, 2018 Financial Results for the Three Months Ended June 30, 2018 August 7, 2018 Copyright 2018 NIPPON TELEGRAPH AND TELEPHONE CORPORATION 1 This document is a translation of the Japanese original. The Japanese

More information

CONNECT TOGETHER 2019 FY2017-FY2019

CONNECT TOGETHER 2019 FY2017-FY2019 April 26, 2017 2020VISION Close and reliable partner" anywhere on the earth with the best solutions through Kenkijin Spirit Mid-term Management Plan CONNECT TOGETHER 2019 FY2017-FY2019 Hitachi Construction

More information

INCJ to make follow-on investment in JTOWER Inc A company that provides telecommunications infrastructure sharing solutions

INCJ to make follow-on investment in JTOWER Inc A company that provides telecommunications infrastructure sharing solutions News Release INCJ to make follow-on investment in JTOWER Inc A company that provides telecommunications infrastructure sharing solutions Support Japan s first outdoor telecommunications infrastructure

More information

News Release October 17, 2018 New Energy and Industrial Technology Development Organization Hitachi, Ltd. Hitachi India Pvt. Ltd.

News Release October 17, 2018 New Energy and Industrial Technology Development Organization Hitachi, Ltd. Hitachi India Pvt. Ltd. News Release 2018.10.17 October 17, 2018 New Energy and Industrial Technology Development Organization Hitachi, Ltd. Hitachi India Pvt. Ltd. Demonstration Operation of ICT System to Improve Efficiency

More information

Financial Results for the Fiscal Year Ended March 31, 2017 and Forecasts for the Fiscal Year Ending March 31, 2018

Financial Results for the Fiscal Year Ended March 31, 2017 and Forecasts for the Fiscal Year Ending March 31, 2018 Financial Results for the Fiscal Year Ended March 31, 2017 and Forecasts for the Fiscal Year Ending March 31, 2018 May 15, 2017 Forward-looking statements and projected figures concerning the future performance

More information

Enabling Smart Lighting for Smart Cities. How Cheen Ng 18 August 2017

Enabling Smart Lighting for Smart Cities. How Cheen Ng 18 August 2017 Enabling Smart Lighting for Smart Cities How Cheen Ng 18 August 2017 Infineon at a glance Business Segments Automotive 17% (ATV) 31% 41% 11% Revenue FY 2016 Industrial Power Control (IPC) Power Management

More information

Vi-PEC V44 and V88 ECU

Vi-PEC V44 and V88 ECU Vi-PEC V44 and V88 ECU Vi-PEC V44 and V88 ECU INTRODUCTION AIM has developed special applications for many of the most common ECUs: by special applications we mean user-friendly systems which allow to

More information

Shinkansen or why Trains can be on time! 8. September 2015 Jürgen A. Krebs Hitachi Data Systems GmbH

Shinkansen or why Trains can be on time! 8. September 2015 Jürgen A. Krebs Hitachi Data Systems GmbH Shinkansen or why Trains can be on time! 8. September 2015 Jürgen A. Krebs Hitachi Data Systems GmbH Agenda About Hitachi & Social Innovation Hitachi Big Data Analytics Strategy Shinkansen and what we

More information

Kyocera Corporation Financial Presentation

Kyocera Corporation Financial Presentation November 2, 2009 Kyocera Corporation Financial Presentation (Six Months Ended September 30, 2009) Tetsuo Kuba President and Representative Director Financial Results of H1 FY3/2010 Comparison with H1 FY3/2009

More information

Lecture 3: Design Methodologies

Lecture 3: Design Methodologies Lecture 3: Design Methodologies Embedded Computing Systems Mikko Lipasti, adapted from M. Schulte Based on slides and textbook from Wayne Wolf High Performance Embedded Computing 2007 Elsevier Topics Design

More information

Development of an autonomous driving ECU platform for streamlining the development of autonomous driving vehicle applications

Development of an autonomous driving ECU platform for streamlining the development of autonomous driving vehicle applications FOR IMMEDIATE RELEASE Development of an autonomous driving ECU platform for streamlining the development of autonomous driving vehicle applications Tokyo, October 17, 2016 ---Hitachi Automotive Systems,

More information

Outline of Financial and Business Performance for the fiscal year ended December 31, 2011

Outline of Financial and Business Performance for the fiscal year ended December 31, 2011 SIC:5943 Outline of Financial and Business Performance for the fiscal year ended December 31, 2011 10 th February 2012 The forecasts provided in this overview are projections based on information currently

More information

AUTOSAR stands for AUTomotive Open Systems ARchitecture. Partnership of automotive Car Manufacturers and their Suppliers

AUTOSAR stands for AUTomotive Open Systems ARchitecture. Partnership of automotive Car Manufacturers and their Suppliers Introduction stands for AUTomotive Open Systems ARchitecture Electronic Control Unit Partnership of automotive Car Manufacturers and their Suppliers Source for ECU: Robert Bosch GmbH 2 Introduction Members

More information

Siemens Belgium Press briefing January 18, 2012

Siemens Belgium Press briefing January 18, 2012 The Company Siemens Belgium Press briefing January 18, 2012 Innovation is our lifeblood Key R&D figures R&D spending: 3.925 billion in fiscal 2011, or 5.3% of revenue 27,800 R&D employees worldwide Roughly

More information

Hitachi for Smart Cities in Andhra Pradesh

Hitachi for Smart Cities in Andhra Pradesh Hitachi for Smart Cities in Andhra Pradesh March 5, 2015 Hitachi India Pvt. Ltd. 1. Self Introduction Masayoshi Tamura! GM, Software Group, Hitachi India Pvt. Ltd.! Co-Chair, Japan Council, NASSCOM,! Honorary

More information

Agenda. > AUTOSAR Overview. AUTOSAR Solution. AUTOSAR on the way

Agenda. > AUTOSAR Overview. AUTOSAR Solution. AUTOSAR on the way AUTOSAR Overview Agenda > AUTOSAR Overview AUTOSAR Solution AUTOSAR on the way Slide: 2 Overview and Objectives AUTOSAR Partnership Slide: 3 Development of Functionality Electronic fuel injection Cruise

More information

Hitachi s experience in developing Smart Grids Shin-ichi INAGE Renewable Energy & Smart Grid Division, Hitachi Ltd.

Hitachi s experience in developing Smart Grids Shin-ichi INAGE Renewable Energy & Smart Grid Division, Hitachi Ltd. Hitachi s experience in developing Smart Grids Shin-ichi INAGE Renewable Energy & Smart Grid Division, Hitachi Ltd. 1 Copyright 2009, Hitachi, Ltd., All rights reserved. 1 Required Technologies for Smart

More information

Securing the future of mobility

Securing the future of mobility Kaspersky Transportation System Security AVL Software and Functions Securing the future of mobility www.kaspersky.com #truecybersecurity Securing the future of mobility Connected car benefits The need

More information

Notification of Change of Subsidiary (Transfer of Shares)

Notification of Change of Subsidiary (Transfer of Shares) FOR IMMEDIATE RELEASE Notification of Change of Subsidiary (Transfer of Shares) Tokyo, Japan, May 13, 2016 --- Hitachi, Ltd. (TSE:6501; Hitachi ) today announced that it has executed an agreement regarding

More information

Click to add headline

Click to add headline Analyst Briefing Integrated Micro-electronics Inc. November 3, 2017 The Tower Club CONFIDENTIAL AND PROPRIETARY Any use or dissemination of this material without the expressed written permission of AC

More information

Hitachi Announces Consolidated Financial Results for Fiscal 2017

Hitachi Announces Consolidated Financial Results for Fiscal 2017 FOR IMMEDIATE RELEASE Hitachi Announces Consolidated Financial Results for Fiscal 2017 Tokyo, April 27, 2018 --- Hitachi, Ltd. (TSE:6501) today announced its consolidated financial results for fiscal 2017,

More information

First half overview and initiatives for Second half of FY2017. Keiichi Kobayashi

First half overview and initiatives for Second half of FY2017. Keiichi Kobayashi First half overview and initiatives for Second half of FY2017 President Keiichi Kobayashi November 2, 2017 FURUKAWA ELECTRIC CO., LTD Forward-Looking Statements Projections of future sales and earnings

More information