Porting a C Library for Fine Grained Independent Task Parallelism to Enea OSE RTOS

Total Page:16

File Type:pdf, Size:1020Kb

Porting a C Library for Fine Grained Independent Task Parallelism to Enea OSE RTOS Porting a C Library for Fine Grained Independent Task Parallelism to Enea OSE RTOS Master of Science Thesis YIHUI WANG Master’s Thesis at Xdin AB Supervisor: Barbro Claesson, Xdin AB Detlef Scholle, Xdin AB Examiner: Ingo Sander, KTH TRITA-ICT-EX-2012:141 Acknowledgements I would like to express my sincere gratitude to my supervisors, Detlef Scholle and Barbro Claesson from Xdin AB, for giving me the precious opportunity to accom- plish this master thesis and giving me constant support. I would also like to thank Ingo Sander, my examiner from KTH for the useful suggestions and important guid- ance in writting this report. I would like to give my thanks to other thesis workers in Xdin, especially Sebastian Ullström and Johan Sundman Norberg, who help me a lot with both the project and the thesis. The amazing time that we spent together became one of my most precious memories in life. My thanks extends to everyone in Xdin AB and Enea AB who are friendly and hospitable. Finally I would like to thank my beloved family for their support through my entire life. I could not go so far in academic without their support. In particular, I must acknowledge my friend Junzhe Tian for his encouragement and constant assistance through the duration of my master study. Yihui Wang Stockholm, Sweden June, 2012 Abstract Multi-core starts an era to improve the performance of com- putations by executing instructions in parallel. However, the improvement in performance is not linear with the num- ber of cores, because of the overhead caused by intercom- munication and unbalanced load over cores. Wool provides a solution to improve the performance of multi-core sys- tems. It is a C library for fine grained independent task parallelism developed by Karl-Filip Faxén in SICS, which helps to keep load balance over cores by work stealing and leapfrogging. In this master thesis project, Wool is ported to the Enea OSE real-time operating system aiming at supplying an ap- proach to improve the performance of the multi-core sys- tem. To reach this goal, multi-core architecture, task par- allelism algorithms, as well as POSIX threads are studied. Besides, hardware synchronization primitives which are de- fined by processors are studied and implemented in Wool. The target hardware for this study is Freescale P4080 board with eight e500mc cores. Wool is ported on the same target with both Linux and OSE operating systems. Finally, the porting is tested and verified. Contents List of Figures List of Tables List of Abbreviations 1 Introduction 1 1.1 Background . 1 1.2 Problem statement . 1 1.3 Goals . 2 1.4 Method . 3 1.5 Contributions . 3 I Theoretical Study 5 2 Multi-core 7 2.1 Multi-core operating system . 7 2.2 Comparison . 9 2.3 Summary . 10 3 Parallel Computing 11 3.1 Parallel performance metrics . 11 3.2 Levels of parallelism . 12 3.2.1 Instruction-level parallelism (ILP) . 12 3.2.2 Thread-level parallelism (TLP) . 12 3.3 Parallel programming models . 12 3.4 Design in parallel . 13 3.5 Summary . 14 4 Threads 17 4.1 Thread overview . 17 4.1.1 Process & thread . 17 4.1.2 Threaded program models . 18 4.2 Thread management . 19 4.3 Mutual exclusion . 19 4.4 Conditional variables . 20 4.5 Synchronization . 21 4.5.1 Atomic operations . 21 4.5.2 Hardware primitives . 21 4.6 Threads on multi-core . 22 4.7 Summary . 22 5 Wool 25 5.1 Basic concepts . 25 5.1.1 Worker . 25 5.1.2 Task pool . 26 5.1.3 Granularity in Wool . 26 5.1.4 Load balance in Wool . 26 5.1.5 Structure . 27 5.2 Work stealing . 27 5.3 Leap frogging . 29 5.4 Direct task stack algorithm . 31 5.4.1 Spawn . 31 5.4.2 Sync . 32 5.5 Wool optimization . 32 5.5.1 Sampling victim selection . 32 5.5.2 Set based victim selection . 33 5.6 Other multi-threaded scheduler . 33 5.7 Summary . 34 II Implementation 35 6 OSE 37 6.1 OSE fundamentals . 37 6.2 OSE process & IPC . 38 6.3 OSE for multi-core . 39 6.3.1 OSE load balancing . 40 6.3.2 Message passing APIs . 40 6.4 OSE pthreads . 40 6.5 Summary . 41 7 P4080 and TILE64 43 7.1 Features . 43 7.1.1 Instruction set . 43 7.1.2 Memory consistency . 44 7.1.3 Memory barrier . 45 7.2 Freescale QorIQ P4080 platform . 46 7.2.1 P4080 architecture . 46 7.2.2 e500mc core . 46 7.3 Tilera’s TILE64 . 47 7.3.1 TILE64 architecture . 47 7.3.2 TILE . 47 8 Porting Wool to P4080 49 8.1 Design . 49 8.1.1 Storage access ordering . 49 8.1.2 Atomic update primitives . 50 8.2 Implementation . 50 8.2.1 Prefetch & CAS . 50 8.2.2 Gcc inline assembler code . 51 8.2.3 Enea Linux . 51 8.3 Experiment . 52 8.3.1 Experiment: Fibonacci code with and without Wool . 52 8.3.2 Analysis . 53 9 Porting Wool to OSE 55 9.1 Design . 55 9.1.1 Malloc library . 55 9.1.2 Pthread . 57 9.2 Implementation . 58 9.2.1 Load module configuration . 58 9.2.2 Makefile . 59 9.2.3 System information . 59 9.2.4 Application on OSE multi-core . 59 9.3 Experiments . 59 9.3.1 Experiment on OSE & Linux . 59 9.3.2 Experiment on the performance vs. the number of cores (1) . 60 9.3.3 Experiment on the performance vs. the number of cores (2) . 61 10 Conclusions and Future Work 63 10.1 Conclusions . 63 10.1.1 Theoretical study . 63 10.1.2 Implementation . 64 10.1.3 Result Discussion . 64 10.2 Future work . 65 Appendices 65 A Demo Results 67 Bibliography 69 List of Figures 1.1 Implementation Steps . 3 2.1 Multi-core Architecture . 8 2.2 Architecture of SMP System . 8 2.3 Architecture of AMP System . 9 4.1 Mutex Structure [14] . 20 4.2 Condition Variable [15] . 20 5.1 Work Stealing Structure. 28 5.2 Work Stealing. 29 5.3 Leap Frogging . 30 5.4 Spawn. 31 6.1 Processes in Blocks with Pools in Domains [26] . 38 6.2 Message Passing . 39 6.3 MCE: Hybrid AMP/SMP Multiprocessing [31] . 40 7.1 P4080. 46 7.2 Tilera’s TILE64 Architecture [38] . 48 8.1 Enea Linux. ..
Recommended publications
  • Enea® H324m-BRICKS 1
    DATA SHEET ENEA® H324m-BRICKS 1 Multimedia session control and transfer protocols stack for 3G video The ITU-T H.324 recommendation was initially issued to specify a suite of standards for sharing video, voice and data simultaneously over modem connections on PSTN (Public Switched Telephone Network). It defines a control protocol (H.245) and multi plexing mechanism (H.223) as well as audio and video codecs used for real- time multimedia streaming over an established switchedcircuit connection. 3G-324M has been derived from Enea H324m-Bricks n ITU-T H.245 version 11 (backward H.324 standards by 3GPP and 3GPP2 Enea® H324m-Bricks is a portable compatible) including support for standard ization bodies to specify implementation of this set of standards H.223 Annexes A, B and C required multimedia communication in mobile compliant with: for mobile communications switched circuit environments. n ITU-T H.324 (09/2005) including 3G-324M set of protocols is well mobile support specified in Annex Enea H324m-BRICKS consists of the suited for delay sensitive applications A , C and K (Note 1) following: like video phone, video conferencing, n 3GPP & 3GPP2 specifications: TS n ITU-T H.245 protocol for multimedia TV broadcasting, and video-ondemand. 26.111 (V6.01), TSDatasheet 26.110 (V6.00), mobile call control in compliance Such applications could not be satis- and TS 26.911 (V6.00) with H.324 recommendation factorily operated using currently n ITU-T H.223 including Annex A, B, C n ITU-T H.223 multiplexing protocol H324m-BRICKS deployed mobile packet technology due and D (Note 1) including: to high packet transmission overhead, n Adaptation layer procedures for high BER, and variable transit delay.
    [Show full text]
  • University Microfilms International T U T T L E , V Ir G in Ia G R a C E
    INFORMATION TO USERS This was produced from a copy of a document sent to us for microfilming. While the most advanced technological means to photograph and reproduce this document have been used, the quality is heavily dependent upon the quality of the material subm itted. The following explanation of techniques is provided to help you understand markings or notations which may appear on this reproduction. 1. The sign or “target” for pages apparently lacking from the document photographed is “Missing Page(s)”. If it was possible to obtain the missing page(s) or section, they are spliced into the film along with adjacent pages. This may have necessitated cutting through an image and duplicating adjacent pages to assure you of complete continuity. 2. When an image on the film is obliterated with a round black mark it is an indication that the film inspector noticed either blurred copy because of movement during exposure, or duplicate copy. Unless we meant to delete copyrighted materials that should not have been filmed, you will find a good image of the page in the adjacent frame. 3. When a map, drawing or chart, etc., is part of the material being photo­ graphed the photographer has followed a definite method in “sectioning” the material. It is customary to begin filming at the upper left hand corner of a large sheet and to continue from left to right in equal sections with small overlaps. If necessary, sectioning is continued again-beginning below the first row and continuing on until complete. 4. For any illustrations that cannot be reproduced satisfactorily by xerography, photographic prints can be purchased at additional cost and tipped into your xerographic copy.
    [Show full text]
  • 14 Cict 21 P4 :06
    L 1' ti Popayán 21 de octubre de 2014 14 CICT 21 P4 :06 Señores Supervisores Rosaura Bermúdez Ayala (.5`) PU. Of. Gestión Ambiental ARCHIVESE EN Holman Gaitán PE. Of. Gestión Ambiental Corporación Autónoma Regional del Cauca — CRC ASUNTO: ENTREGA INFORME FINAL CONTRATO 0151-17-05-2013 Cordial Saludo, Para los fines pertinentes de la realización de liquidación del presente contrato les remito el informe final del Proyecto: "PARTICIPACION COMUNITARIA INSTITUCIONAL PARA LA ORDENACION Y MANEJO DE LAS SUBZONAS HIDROGRAFICAS DE LOS RIOS PAÉZ, PALO, TIMBA Y EL PROYECTO DE ORDENACION FORESTAL EN EL DEPARTAMENTO DEL CAUCA, el informe consta de 49 folios y además se anexa un CD con toda la información y cartografía generada para estos proyectos, MXD (Mapas). archivos en formato Shapefile, tablas en formato de Excel y Geodatabase de las Subzonas antes mencionadas y el proyecto de ordenación. Institucionalmente, UARDO VERA M. CC. 017 de Popayán Geógrafo Contratista CRC Preparo y Reviso* Luis E / Sub Gestión Amb. C ten 2' • • • .....•• t Ole Vtr, ni!~ ") '. *21 ") *. 08265 -HOZ 7W CORPORACION AUTONOMA REGIONAL DEL CAUCA CRC INFORME FINAL CONTRATO 0151/2013: PROYECTO DE PARTICIPACION COMUNITARIA INSTITUCIONAL PARA LA ORDENACION Y MANEJO DE LAS SUBZONAS HIDROGRAFICAS RIO PAEZ. PALO Y) TIMBA EN EL DEPARTAMENTO DEL CAUCA. PROYECTO DE ORDENACION FORESTAL DEL DEPARTAMENTO DEL CAUCA. RESENTADO POR: LUIS EDUARDO RIVERA MORALES GEOGRAFO CONTRATISTA POPAYÁN 2013 1 ti TABLA DE CONTENIDO PÁG. INTRODUCCIÓN 4 1. OBJETIVOS 5 1.1. Objetivo General 5 1.2. Objetivos Especificos 5 2. METODOLOGIA 6 2.1. Primera Fase 6 2.1.1. Revisión y recolección de información cartográfica y secundaria 6 2.2.
    [Show full text]
  • Annual Report 2006 (Pdf)
    ANNUAL REPORT NCC 2006 CONTENTS This is NCC 1 FINANCIAL REPORT Review by the President 2 Report of the Board of Directors, including risk analysis 40 Group overview 6 Consolidated income statement 50 Strategic orientation 10 Consolidated balance sheet 52 Financial objectives and dividend policy 13 Parent Company income statement 54 Market and competitors 16 Parent Company balance sheet 55 Employees 22 Changes in shareholders’ equity 56 The environment and society 25 Cash flow statement 58 Business areas Notes 60 – NCC Construction Sweden 30 Auditors’ Report 95 – NCC Construction Denmark 32 – NCC Construction Finland 33 Multi-year review 96 – NCC Construction Norway 34 Quarterly data 98 – NCC Construction Germany 35 Definitions / Glossary 99 – NCC Property Development 36 – NCC Roads 38 SHAREHOLDER INFORMATION Corporate governance 100 Board of Directors and Auditors 106 Management 108 The NCC share 110 This is a translation of the original Swedish Annual Report. In Financial information 112 the event of differences between the English translation and the Swedish original, the Swedish Annual Report shall prevail. Index of key words 113 Kanalhusen, Kristianstad, Sweden. Kollegie, Viborg, Denmark. NCC 2006 FINANCIAL OVERVIEW OF 2006 Stångåstrand, Linköping, Sweden. Key figures Net sales by business area, percent SEK M 2006 2005 Orders received 57,213 52,413 NCC Roads, 18 (18)% NCC Construction Sweden, 39 (39)% Net sales 55,876 49,506 Operating profit 2,392 1,748 Profit after financial items 2,263 1,580 NCC Property Net profit for the year
    [Show full text]
  • Notice of Annual General Meeting of Shareholders in Enea AB (Publ)
    Notice of Annual General Meeting of Shareholders in Enea AB (publ) The shareholders in Enea AB (publ), corp. id. no. 556209-7146, (the ”Company”), are hereby invited to attend the annual general meeting (“AGM”) to be held on Tuesday May 9, 2017, at 4.30 p.m. at Kista Science Tower, Färögatan 33 in Kista, Stockholm. Registration starts at 3.30 p.m. Notice of attendance Shareholders who wish to attend the AGM must be recorded as shareholder in the share register maintained by Euroclear Sweden AB no later than Wednesday May 3, 2017 and notify the Company no later than 5 p.m. on Wednesday May 3, 2017. Notice of attendance can be given by post to Enea AB (publ), P.O. Box 1033, 164 21 Kista, by telephone +46 8 50 71 50 05 or by e-mail to [email protected]. Notice of attendance shall contain name, personal or corporate identification number, number of represented shares, address, telephone no. and assistant, if any, (no more than 2). Shareholders represented by proxy shall issue a dated proxy. The proxy may be valid for a maximum of five years if so has been specifically stated. If no term of validity is stated, the proxy is valid for one year. The proxy shall be submitted to the Company well ahead of the AGM to the address stated above. Proxies issued by a legal entity must be accompanied by an attested copy of the entity’s registration certificate. The registration certificate must not be older than one year. A proxy form will be kept available at the Company’s website www.enea.com and will also be sent to shareholders who so request and state their address.
    [Show full text]
  • Computer Architectures an Overview
    Computer Architectures An Overview PDF generated using the open source mwlib toolkit. See http://code.pediapress.com/ for more information. PDF generated at: Sat, 25 Feb 2012 22:35:32 UTC Contents Articles Microarchitecture 1 x86 7 PowerPC 23 IBM POWER 33 MIPS architecture 39 SPARC 57 ARM architecture 65 DEC Alpha 80 AlphaStation 92 AlphaServer 95 Very long instruction word 103 Instruction-level parallelism 107 Explicitly parallel instruction computing 108 References Article Sources and Contributors 111 Image Sources, Licenses and Contributors 113 Article Licenses License 114 Microarchitecture 1 Microarchitecture In computer engineering, microarchitecture (sometimes abbreviated to µarch or uarch), also called computer organization, is the way a given instruction set architecture (ISA) is implemented on a processor. A given ISA may be implemented with different microarchitectures.[1] Implementations might vary due to different goals of a given design or due to shifts in technology.[2] Computer architecture is the combination of microarchitecture and instruction set design. Relation to instruction set architecture The ISA is roughly the same as the programming model of a processor as seen by an assembly language programmer or compiler writer. The ISA includes the execution model, processor registers, address and data formats among other things. The Intel Core microarchitecture microarchitecture includes the constituent parts of the processor and how these interconnect and interoperate to implement the ISA. The microarchitecture of a machine is usually represented as (more or less detailed) diagrams that describe the interconnections of the various microarchitectural elements of the machine, which may be everything from single gates and registers, to complete arithmetic logic units (ALU)s and even larger elements.
    [Show full text]
  • Analysis and Design of a Policy Based Approach to Software Download in a Distributed Automotive Middleware
    Analysis and Design of a Policy based approach to Software Download in a Distributed Automotive Middleware ANDREAS LINDELL Master of Science Thesis Stockholm, Sweden 2007 This sentence was intentionally made white. Analysis and Design of a Policy based approach to Software Download in a Distributed Automotive Middleware Andreas Lindell This sentence was intentionally made white. Master of Science Thesis MMK 2007:76 fMDA 308g KTH Industrial Engineering and Management Machine Design SE-100 44 Stockholm This sentence was intentionally made white. This Master Thesis was written at, and in cooperation with, Keywords: Automotive Middleware, Embedded System, Distributed System, Software Load, Policy, Repository, Policy Repository, DySCAS, AUTOSAR, OSE Epsilon, Linux, Polyhedra The contents, results and conclusions of this master thesis represents the au- thor's opinion only, and is not in any way affiliated with those of the DySCAS or AUTOSAR consortium, or that of Enea AB or the Royal Institute of Technology. c 2007 Andreas Lindell . Master of Science Thesis MMK2007:76 MDA 308 Analysis and Design of a Policy based approach to Software Download in a Distributed Automotive Middleware Andreas Lindell Approved: Examiner: Supervisor: 2007-12-18 Martin T¨orngren Magnus Persson Commissioner: Contact Person: Enea Detlef Scholle . Abstract . DySCAS is an automotive research project with the purpose of providing a future standard within the vehicle electronics layer satisfying the needs of both today's and tomorrow's automotive producers. This master thesis was carried out at Enea during the fall of 2007 with the purpose of investigating the implementation of software download through an external and secure communication link to every node in a DySCAS system.
    [Show full text]
  • Graphics System in Vehicle Electronics
    UPTEC IT09 008 Examensarbete 30 hp April 2009 Graphics System in Vehicle Electronics Andreas Kjellgren Abstract Graphics System in Vehicle Electronics Andreas Kjellgren Teknisk- naturvetenskaplig fakultet UTH-enheten In this thesis three problems areas are studied related to embedded system and device driver programming: a GPS driver, the CAN Bus and study of graphics libraries Besöksadress: suitable for embedded systems. The thesis has two parts: an academic study and an Ångströmlaboratoriet Lägerhyddsvägen 1 implementation phase based on the academic study. The Freescale i.MX31ADS Hus 4, Plan 0 development board together with ENEA's operating system OSE is used as a basis for the study and it is shown that OpenGL ES is best suited for the platform. Further the Postadress: system can be complemented by the use of Mobile 3D Graphics, a Java based Box 536 751 21 Uppsala solution. A driver for the graphics port is implemented for Linux and OpenGL ES works using a graphics accelerator on the hardware. In the field of CAN Telefon: communication an analysis of an existing driver is made. The driver has two 018 – 471 30 03 shortcomings that lead to an incorrect priority order when multiple messages are Telefax: sent simultaneously on the CAN bus. The main problem is that the bit, which tells if 018 – 471 30 00 the data field of the CAN message fits in a single message, has the greatest impact on a CAN message priority. Another problem is that the signal numbers have not been Hemsida: assigned in a consistent manner. A design proposal and an implementation are made.
    [Show full text]
  • Elekta Annual Report 2020/21 1 May 13, 5:15 Pm May 13, 10:45 Pm Kolkata, India Alexandria, Egypt Access Gap of ~1,400 Linacs Access Gap of ~100 Linacs
    Towards a world where everyone has access to the best cancer care Annual Report 2020/21 LIMA, PERU MAY 14, 06:15 AM Content THIS IS ELEKTA This is Elekta 1 BUSINESS OVERVIEW A global leader in CEO comment 6 Market and trends 8 Precision Radiation Strategic framework 11 Offering 18 Geographical overview 30 Medicine Risk management 34 The share 39 Elekta is a global leader in radiotherapy solutions to fight cancer and neurological diseases. In fact, we are IN-DEPTH SUSTAINABILITY REPORT the only independent radiotherapy provider of scale. We Introduction 42 have a broad offering of advanced solutions for deliver- Access to Healthcare 44 ing the most efficient radiotherapy treatments. Green Processes 48 Business Ethics 51 Elekta’s offering allows clinicians to treat more patients People in Focus 55 Sustainability governance with increased quality, both with value-creating and reporting principles 63 innovations in solutions and AI-supported service based GRI content index 67 on a global network. At present Elekta has an installed Auditor’s report 70 base of CORPORATE GOVERNANCE Chairman’s comment 72 Corporate governance report 2020/21 73 > 6,650 Internal control 81 systems globally. Board of Directors 84 Executive Management 86 Auditor’s report 88 Remuneration report 2020/21 89 FINANCIAL REPORTING Solutions ~60% of net sales Board of Director’s report 94 Consolidated income statement 104 Consolidated statement of comprehensive income 104 Oncology Informatics Solutions Consolidated balance sheet 106 Changes in consolidated equity 108 Consolidated cash flow statement 110 Financial statements – MR-Linac Linac Parent Company 112 Solutions Solutions Notes 114 Signatures of the Board 147 Auditor’s report 148 Glossary 152 Brachy Neuro Definitions 154 Solutions Solutions Alternative performance measures 155 Five year review and key figures 158 Annual General Meeting 2021 160 Service ~40% of net sales About the Annual Report Pages 92–147 constitute the statutory annual report, which has been audited.
    [Show full text]
  • Enea® T38gw-BRICKS 1
    DATA SHEET ENEA® T38gw-BRICKS 1 Fax Over IP Gateway Protocols SIP – T.38 – SoftModem ITU-T T.38 recommendation specifies the communication protocol to be used between facsimile gateways or between facsimile gateways and IAF (Internet Aware Fax device) connected via an Internet network in order to transfer fax between G3FEs (Group 3 Fax Equipments) connected to facsimile gateways via PSTN (Public Switched Telephone Network) or between G3FEs and IAFs. Enea has developed a fax transmission Enea T38GW-Bricks Features product named Enea® SIP-Bricks and and protocol software package named Enea T38GW-Bricks is a portable soft- widely used in Terminals, Servers Enea® T38GW-Bricks designed to be in- ware package written in ‘C’ language (registrar, redirect or unified messaging corporated in equipments performing that integrates the following commu- servers) as well as in Proxy. Fax to Foip gateway functions. nication protocols and transmission n T.38 fax over IP transport protocol Enea T38GW-Bricks is a time and technology: as defined by ITU-T T.38 recommen- risk saving solution to develop fax gate- n SIP Session Initiation Protocol as dation (2002) and also compliant ways. Fully portable in a wide variety of specified by IETF RFC 3261 and with ITU-T T.38 Amendment 3 hardware and software configurations, featuring numerous extensions “Implementation guidelines. Enea it deals with complexity of mixing circuit/ including RFC 3362 for support Netbricks T.38 protocol is already in modem and IP/Packet technologies of T.38 in Enea SIP. Enea Netbricks SIP use in a lot of residential gateways, applied to fax transmission.
    [Show full text]
  • ENEA Multicore: High Performance Packet Processing Enabled with a Hybrid SMP/AMP OS Technology
    WHITE PAPER 1 ENEA MULticore: High performance packet processing enabled with a hybrid SMP/AMP OS technology Patrik Strömblad, Chief System Architect OSE, Enea The multicore technology introduces a great challenge to the entire software industry, and it causes a significant disruption to the embedded device market since it forces much of the existing software to be redesigned according to new, not yet established principles. Abstract distribution scalability to multicore de- IP packets. In most cases, network Moore’s law does still hold, but processor vices has proven to be a fairly straight- traffic processing can be divided in two vendors are rapidly turning to use forward task as it preserves the existing major categories; slow path processing the additional transistors to create software architecture investments. and fast path processing: more cores on the same die instead n Slow path processing: This involves of increasing frequency since this not Introduction network protocol control signaling only gives more chip performance but The embedded software industry is to configure and establish the data also decreases the power consumption facing the challenge to really start to paths, and it also involves packets (watt/mips). think and design in parallel, in order that terminate on this node in This paper starts by describing to be able to fully make use of the higher protocol layers that uses the the widely accepted multiprocessing new multi-core devices. Up until now, socket interface. software design models, and some we have been able to gain higher n Fast path processing: This involves of their benefits and drawbacks.
    [Show full text]
  • Årsredovisning 2010 Kort Om Enea
    Årsredovisning 2010 Kort om Enea VÄRLDENS KOMMUNIKATIONS BEHOV DRIVER ENEA Världsledande inom telekom Enea är världens tredje största Eneas konsulter tillhör de bästa Världens ledande telekombolag vänder sig aktör inom realtidsoperativsystem Eneas konsultverksamhet erbjuder expertis till Enea när de bygger infrastruktur för global Eneas operativsystem återfinns inom så inom komplexa områden såsom inbyggda kommunikation. Eneas lösningar fungerar många basstationer och mobiltelefoner att system, test och trådlös kommunikation. inom många typer av kommunicerande fem miljarder samtal om dagen är beroende Inom dessa områden tillhör Eneas konsulter system så företag inom närliggande seg­ av Eneas teknik. Det gör Enea till världens de absolut bästa. ment såsom medicinteknik, flygindustrin och tredje största aktör på marknaden som bil industrin finns även med på kundlistan. helhet. Rörelseresultat och Omsättning Rörelseresultatmarginal, MSEK/%och marginal Omsättning Mkr Antal aktieägare MSEK Aktieägare (%) AntalMSEK aktier Innehav &% Röster (%) 1 000 100 10 80 VäsentligtFysiska personer 9 358 93,3 4 200 626 23,2 80 8 förbättrat 800 60 Jurdiska personer 673 6,7 13 880 545 76,860 6 600 40 40 4 resultatTotalt 10 031 100% 18 081400 171 100% 20 ENea erBJUDer PRODU KTer OCH TJÄNSTer 20 2 200 10 för kunder som utvecklarRörelseresultat kommunikations och - marginal, MSEK/% 0 drivna produkter. Verksamheten är organiserad 0 0 0 -10 -1 -10 i två affärsområden: Software som inkluderar 06 07 08 09 10 06 07 08 09 10 realtidsoperativsystem och kompletterande Omsättning per Omsättning per aärsområde segment programvaror och tjänster, samt Consulting som Omsättning per affärsområde Omsättning per segment erbjuder tekniska konsulttjänster. 100 10 52 % 21 % 52 % Rörelseresultat och 80 Consulting Övrigt Telekom marginal, MSEK/% Enea hade under 2010 en omsättning på 726,1 MSEK infrastruktur 80 80 vilket är 6,6 procent80 lägre än före gående år.
    [Show full text]