Computer Architecture

Größe: px
Ab Seite anzeigen:

Download "Computer Architecture"

Transkript

1 Computer Architecture Slide Sets WS 2013/2014 Prof. Dr. Uwe Brinkschulte M.Sc. Benjamin Betting Part 13 Memory management, Many-Cores (CMP), and Crossbars Computer Architecture Part 13 page 1 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

2 Chip-Multiprocessors (CMP)/ Multi-/Many-Cores Possible Classification? Computer Architecture Part 13 page 2 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

3 Processor Parameters (< 2005) L2 Fwd Latency: L1 cache hits from one core are forwarded to the L1 cache of another core by the L2 cache Computer Architecture Part 13 page 3 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

4 CMT configurations (<2008) Computer Architecture Part 13 page 4 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

5 Sun UltraSPARC T1 (Niagara-1) General: Server Chip-Multiprocessor (CMP) Developed by Sun Microsystems (2005) Extended to Niagara-2 (2008) Goal: Designed for high throughput and excellent performance/watt on server workloads HSA: 8x scalar pipelined processing cores on the DIE (32-bit SPARC, 4-way MT) L2-Cache coupling (Uniform Memory Architecture, DDR2 controllers) Computer Architecture Part 13 page 5 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

6 Niagara-1 Block Diagram Computer Architecture Part 13 page 6 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

7 Niagara-1 DIE (90nm process) Computer Architecture Part 13 page 7 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

8 Niagara-1 SPARC Core Pipeline six stages deep (shallow pipeline) low speculative (branch target buffer + precompute branch logic) single issue (IPC = 1.0) 4-way fine-grain multithreading (cycle-by-cycle interleaved + priority LRU) Computer Architecture Part 13 page 8 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

9 Multithreading on Niagara-1 Switching between available threads each cycle with priority given to the least recently used thread. Threads become unavailable of long latency such as e.g., loads, branches, multiply, and divide. Threads become unavailable of pipeline "stalls" e.g, cache misses, traps, and resource conflicts Designed from ground up to 32-thread CMP Computer Architecture Part 13 page 9 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

10 Niagara-1 SPARC Thread Scheduling Thread Selection: all threads available Computer Architecture Part 13 page 10 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

11 Memory Resources on Niagara-1 There are 5 core components to consider when describing the memory architecture of Niagara-1 processor: 1. SPARC pipelines (cores) 2. L1-Caches 3. L2-Caches 4. DRAM controller 5. IO Devices (out of scope) Hint: 1. and 2. also consider the on-chip interconnection network between components e.g., buses, crossbars etc. Computer Architecture Part 13 page 11 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

12 L1-Caches L1-Cache is contained exclusively for instructions (L1-I) and data (L1-D) within each SPARC core and shared between the 4 threads L1-I: 16 Kbyte, 4-way set-associative, block size of 32 bytes (line size) two instruction fetch each cycle (one speculative) L1-D: 8 Kbyte, 4-way set-associative, block size of 16 bytes write-through policy, and 8-entry-store buffer (execution past stores) small L1-Caches, 3 clocks latency for cache hit, and miss rate in the range of 10% Computer Architecture Part 13 page 12 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

13 L1-Caches Why to choose small L1-caches with 4-way set-associativity???...well, because commercial server applications tend to have large working sets, the L1-Caches must be much larger to achieve significantly lower miss rates,...but the Niagara designers observed that the incremental performance gained by larger caches did not merit the area increase......in Niagara, the four threads of each core are very effective at hiding the latencies from L1 and L2 misses...therefore, the smaller Niagara level-one cache sizes are good tradeoff between miss rates, area and the ability of other threads in the processor core to hide latency... (by James Laudon, Sun Microsystems) Computer Architecture Part 13 page 13 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

14 L2-Caches L2-Cache is contained single on-chip, commonly shared for instructions and data, banked 4-ways and pipelined. 3 Mbytes total, 12-way set-associative, block size 64 bytes Banked across 4 L2-banks, interleaved at 64 byte granularity Bank selection: physical address bits [7:6] 23 clocks latency for L1-D cache miss, and 22 clocks for L1-I Cache coherency: full MESI based protocol between L1 and L2 Line-replacement algorithm: some sort of LRU Computer Architecture Part 13 page 14 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

15 L2-Caches Single Shared L2-Cache: Advantage: A single shared on-chip cache eliminates cache coherence misses in L2 and replaces them with low latency shared communication between L1 and L2 Disadvantage: It also implies longer access time to the L2 because the cache cannot be located close to all of the processor cores in the chip. Furthermore, highly frequented banks could lead to a bottleneck, too Computer Architecture Part 13 page 15 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

16 NxM Crossbar Interconnect Purpose: Niagara's crossbar interconnect provides and manages fast communication link between processor cores, L2-Cache banks, and other shared resources on the chip (e.g., FPU, IO-bridge etc.) Reminder: What is a crossbar? None-blocking, NxM interconnecting network N Inputs, M Outputs (individual switches on each cross node) memory bandwith, up to several GB/s Computer Architecture Part 13 page 16 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

17 NxM Crossbar Example Computer Architecture Part 13 page 17 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

18 Niagara-1 CPU Cache Crossbar (CCX) CCX contains two main blocks (one for each direction): Processor-Cache Crossbar (PCX), 8x5, Forward Crossbar Cache-Processor Crossbar (CPX), 6x8, Backward Crossbar Computer Architecture Part 13 page 18 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

19 Niagara-1 Processor-Cache Crossbar (PCX) Accepts packets from a source (any of eight SPARC CPU cores) and delivers the packet to its destination (any one of the four L2-Cache banks, the I/O bridge, or the FPU) A source sends a packet and a destination ID to the PCX A packet is sent on a separate 124-bit wide parallel bus ( 40 bits address, 64 bits data, and rest for control) Destination ID is sent on a separate 5-bit parallel bus Each source connects with its own separate bus to the PCX PCX sends a grant to the source after dispatching a packet to its destination (handshake signal) When a destination reaches its limit, it sends a stall signal to the PCX (exc. FPU) 8x buses that connect from the CPUs to the PCX Computer Architecture Part 13 page 19 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

20 Niagara-1 PCX- Block Diagram Computer Architecture Part 13 page 20 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

21 Niagara-1 PCX-Issues Advantage: None-blocking access, overall more than 200 Gbytes/s of bandwidth Problem: Solution: Bus collisions may occur when multiple sources send a packet to the same destination When multiple sources send a packet to the same destination, the PCX buffers each packet and arbitrates its delivery to the destination. The CCX does not modify or process any packet Extending PCX with arbitration (one for each destination) Computer Architecture Part 13 page 21 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

22 Niagara-1 PCX - Arbiter Data Flow 5 identical arbiters with 16 entry deep FIFO-queues (max. 2 entries per source) up to 80 queued transactions Computer Architecture Part 13 page 22 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

23 Niagara-1 Cache-Processor Crossbar (CPX) Opposed data transaction direction of PCX (Backward) 6 sources (L2-banks, FPU, and IO bridge) and 8 destinations (SPARC Cores) A packet is sent on a separate 145-bit wide parallel bus (128 bits data, and rest for control) Destination ID is sent on a separate 8-bit parallel bus CPX sends a grant to the source after dispatching a packet to its destination Unlike the PCX, the CPX does not receive a stall from any of its destinations contains 8 identical arbiters with 8 queues and a two entry deep FIFO 6 buses that connect from the sources to the CPX Computer Architecture Part 13 page 23 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

24 Niagara-1 CPX - Block Diagram Computer Architecture Part 13 page 24 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

25 Superscalar vs. CMP Computer Architecture Part 13 page 25 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

26 IPC rates xpyt: x scalar y-threaded pipelines, xsyt: x superscalar y-threaded pipelines Computer Architecture Part 13 page 26 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

27 CMP Throughput vs. Power simple in-order CMPs can achieve same performance on a lower power level as an equivalent complex out of order CMP on high power simple CMPs gain better Watt/Performance Computer Architecture Part 13 page 27 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

28 Niagara-1 Heat Dissipation Computer Architecture Part 13 page 28 of 28 Prof. Dr. Uwe Brinkschulte, M Sc. Benjamin Betting

H o c h s c h u l e D e g g e n d o r f H o c h s c h u l e f ü r a n g e w a n d t e W i s s e n s c h a f t e n

H o c h s c h u l e D e g g e n d o r f H o c h s c h u l e f ü r a n g e w a n d t e W i s s e n s c h a f t e n Time Aware Shaper Christian Boiger christian.boiger@hdu-deggendorf.de IEEE 802 Plenary September 2012 Santa Cruz, California D E G G E N D O R F U N I V E R S I T Y O F A P P L I E D S C I E N C E S Time

Mehr

Routing in WSN Exercise

Routing in WSN Exercise Routing in WSN Exercise Thomas Basmer telefon: 0335 5625 334 fax: 0335 5625 671 e-mail: basmer [ at ] ihp-microelectronics.com web: Outline Routing in general Distance Vector Routing Link State Routing

Mehr

Eingebettete Taktübertragung auf Speicherbussen

Eingebettete Taktübertragung auf Speicherbussen Eingebettete Taktübertragung auf Speicherbussen Johannes Reichart Workshop Hochgeschwindigkeitsschnittstellen Stuttgart, 07.11.2008 Unterstützt durch: Qimonda AG, München Institut für Prof. Elektrische

Mehr

auf differentiellen Leitungen

auf differentiellen Leitungen Eingebettete Taktübertragung auf differentiellen Leitungen Johannes Reichart Kleinheubacher Tagung Miltenberg, 28.09.2009 Institut für Prof. Elektrische Dr.-Ing. und Optische Manfred Nachrichtentechnik

Mehr

DPM_flowcharts.doc Page F-1 of 9 Rüdiger Siol :28

DPM_flowcharts.doc Page F-1 of 9 Rüdiger Siol :28 Contents F TOOLS TO SUPPORT THE DOCUMENTATION... F-2 F.1 GRAPHIC SYMBOLS AND THEIR APPLICATION (DIN 66 001)... F-2 F.1.1 Flow of control... F-3 F.1.2 Terminators and connectors... F-4 F.1.3 Lines, arrows

Mehr

Outline. Cell Broadband Engine. Application Areas. The Cell

Outline. Cell Broadband Engine. Application Areas. The Cell Outline 21.March 2006 Benjamin Keck Why Cell?!? Application Areas Architectural Overview Programming Model Programming on the PPE C/C++ Intrinsics 1 2 The Cell Supercomputer on a chip Multi-Core Microprocessor

Mehr

Ressourcenmanagement in Netzwerken SS06 Vorl. 12,

Ressourcenmanagement in Netzwerken SS06 Vorl. 12, Ressourcenmanagement in Netzwerken SS06 Vorl. 12, 30.6.06 Friedhelm Meyer auf der Heide Name hinzufügen 1 Prüfungstermine Dienstag, 18.7. Montag, 21. 8. und Freitag, 22.9. Bitte melden sie sich bis zum

Mehr

Magic Figures. We note that in the example magic square the numbers 1 9 are used. All three rows (columns) have equal sum, called the magic number.

Magic Figures. We note that in the example magic square the numbers 1 9 are used. All three rows (columns) have equal sum, called the magic number. Magic Figures Introduction: This lesson builds on ideas from Magic Squares. Students are introduced to a wider collection of Magic Figures and consider constraints on the Magic Number associated with such

Mehr

Cell Broadband Engine

Cell Broadband Engine Cell Broadband Engine 21.March 2006 Benjamin Keck Outline Why Cell?!? Application Areas Architectural Overview SPU Programming Model Programming on the PPE C/C++ Intrinsics The Cell Supercomputer on a

Mehr

Mock Exam Behavioral Finance

Mock Exam Behavioral Finance Mock Exam Behavioral Finance For the following 4 questions you have 60 minutes. You may receive up to 60 points, i.e. on average you should spend about 1 minute per point. Please note: You may use a pocket

Mehr

Memory. Jian-Jia Chen (Slides are based on Peter Marwedel) Informatik 12 TU Dortmund Germany 2014 年 11 月 12 日. technische universität dortmund

Memory. Jian-Jia Chen (Slides are based on Peter Marwedel) Informatik 12 TU Dortmund Germany 2014 年 11 月 12 日. technische universität dortmund 12 Memory Jian-Jia Chen (Slides are based on Peter Marwedel) Informatik 12 TU Dortmund Germany Springer, 2010 2014 年 11 月 12 日 These slides use Microsoft clip arts. Microsoft copyright restrictions apply.

Mehr

Industrial USB3.0 Miniature Camera with color and monochrome sensor

Industrial USB3.0 Miniature Camera with color and monochrome sensor Welcome to the presentation Industrial USB3.0 Miniature Camera with color and monochrome sensor & Data rates of modern image sensors S. 1/12 Vortrag_Spectronet_USB3.0_Datenverarbeitung_ENGLISCH_Vorlage_für_pdf_v1_MH20032014

Mehr

TSM 5.2 Experiences Lothar Wollschläger Zentralinstitut für Angewandte Mathematik Forschungszentrum Jülich

TSM 5.2 Experiences Lothar Wollschläger Zentralinstitut für Angewandte Mathematik Forschungszentrum Jülich TSM 5.2 Experiences Lothar Wollschläger Zentralinstitut für Angewandte Mathematik Forschungszentrum Jülich L.Wollschlaeger@fz-juelich.de Contents TSM Test Configuration Supercomputer Data Management TSM-HSM

Mehr

An Introduction to Simultaneous Multi-Threading Prinziples and Architectures

An Introduction to Simultaneous Multi-Threading Prinziples and Architectures An Introduction to Simultaneous Multi-Threading Prinziples and Architectures Seminarvortrag von Thomas Weber Lehrstuhl Rechnerarchitektur Übersicht? Motivation? Aktuelle Microarchitekturen? Scheduling?

Mehr

Electrical tests on Bosch unit injectors

Electrical tests on Bosch unit injectors Valid for Bosch unit injectors with order numbers 0 414 700 / 0 414 701 / 0 414 702 Parts Kit Magnet*: - F00H.N37.925 - F00H.N37.933 - F00H.N37.934 * For allocation to the 10-place Bosch order number,

Mehr

Order Ansicht Inhalt

Order Ansicht Inhalt Order Ansicht Inhalt Order Ansicht... 1 Inhalt... 1 Scope... 2 Orderansicht... 3 Orderelemente... 4 P1_CHANG_CH1... 6 Function: fc_ins_order... 7 Plug In... 8 Quelle:... 8 Anleitung:... 8 Plug In Installation:...

Mehr

Latency Scenarios of Bridged Networks

Latency Scenarios of Bridged Networks Latency Scenarios of Bridged Networks Christian Boiger christian.boiger@hdu-deggendorf.de Real Time Communication Symposium January 2012 Munich, Germany D E G G E N D O R F U N I V E R S I T Y O F A P

Mehr

Motion Controller 2 - MC2

Motion Controller 2 - MC2 otion ler 2 - C2 otion ler C2 The C2 (otion ler) is the connective link between a higher-ranking control level (PLC, IPC etc.) and one or more SIEB & EYER drives (series SD2/SD2S and FC2). It receives

Mehr

prorm Budget Planning promx GmbH Nordring Nuremberg

prorm Budget Planning promx GmbH Nordring Nuremberg prorm Budget Planning Budget Planning Business promx GmbH Nordring 100 909 Nuremberg E-Mail: support@promx.net Content WHAT IS THE prorm BUDGET PLANNING? prorm Budget Planning Overview THE ADVANTAGES OF

Mehr

DIBELS TM. German Translations of Administration Directions

DIBELS TM. German Translations of Administration Directions DIBELS TM German Translations of Administration Directions Note: These translations can be used with students having limited English proficiency and who would be able to understand the DIBELS tasks better

Mehr

The Single Point Entry Computer for the Dry End

The Single Point Entry Computer for the Dry End The Single Point Entry Computer for the Dry End The master computer system was developed to optimize the production process of a corrugator. All entries are made at the master computer thus error sources

Mehr

Weather forecast in Accra

Weather forecast in Accra Weather forecast in Accra Thursday Friday Saturday Sunday 30 C 31 C 29 C 28 C f = 9 5 c + 32 Temperature in Fahrenheit Temperature in Celsius 2 Converting Celsius to Fahrenheit f = 9 5 c + 32 tempc = 21

Mehr

Where are we now? The administration building M 3. Voransicht

Where are we now? The administration building M 3. Voransicht Let me show you around 9 von 26 Where are we now? The administration building M 3 12 von 26 Let me show you around Presenting your company 2 I M 5 Prepositions of place and movement There are many prepositions

Mehr

rot red braun brown rot red RS-8 rot red braun brown R S V~

rot red braun brown rot red RS-8 rot red braun brown R S V~ Kleiner Ring 9 /Germany Phone: 0049 4122 / 977 381 Fax: 0049 4122 / 977 382 Sample connections: Feedback module with integrated detection of occupied tracks for the RS-feedback bus (Lenz Digital plus)

Mehr

Fundamentals of Electrical Engineering 1 Grundlagen der Elektrotechnik 1

Fundamentals of Electrical Engineering 1 Grundlagen der Elektrotechnik 1 Fundamentals of Electrical Engineering 1 Grundlagen der Elektrotechnik 1 Chapter: Operational Amplifiers / Operationsverstärker Michael E. Auer Source of figures: Alexander/Sadiku: Fundamentals of Electric

Mehr

IEI Graphics Grade Backplane Solution

IEI Graphics Grade Backplane Solution The graphics grade backplane solution targets the applications which concern system speed and performance. It has higher performance over cost ratio than the previous PICMG 1.0 solution. PE-4S PE-5S PE-6S2

Mehr

Ein Stern in dunkler Nacht Die schoensten Weihnachtsgeschichten. Click here if your download doesn"t start automatically

Ein Stern in dunkler Nacht Die schoensten Weihnachtsgeschichten. Click here if your download doesnt start automatically Ein Stern in dunkler Nacht Die schoensten Weihnachtsgeschichten Click here if your download doesn"t start automatically Ein Stern in dunkler Nacht Die schoensten Weihnachtsgeschichten Ein Stern in dunkler

Mehr

Level 2 German, 2015

Level 2 German, 2015 91126 911260 2SUPERVISOR S Level 2 German, 2015 91126 Demonstrate understanding of a variety of written and / or visual German text(s) on familiar matters 2.00 p.m. Friday 4 December 2015 Credits: Five

Mehr

Schalten einer kapazitiven Last mit einem Transistor

Schalten einer kapazitiven Last mit einem Transistor . Schalten einer kapazitiven Last mit einem Transistor In allgemeinen technischen Anwendungen ist das Schalten einer kapazitiven Last eher von untergeordneter Bedeutung. In Rechnersystemen (Computernetzwerken)

Mehr

Exercise (Part XI) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1

Exercise (Part XI) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1 Exercise (Part XI) Notes: The exercise is based on Microsoft Dynamics CRM Online. For all screenshots: Copyright Microsoft Corporation. The sign ## is you personal number to be used in all exercises. All

Mehr

Mixed tenses revision: German

Mixed tenses revision: German Mixed tenses revision: Gman Teaching notes This is a whole class game in wh one team (the red team) has to try to win hexagons in a row across the PowPoint grid from left to right, while the oth team (the

Mehr

Wie man heute die Liebe fürs Leben findet

Wie man heute die Liebe fürs Leben findet Wie man heute die Liebe fürs Leben findet Sherrie Schneider Ellen Fein Click here if your download doesn"t start automatically Wie man heute die Liebe fürs Leben findet Sherrie Schneider Ellen Fein Wie

Mehr

ETHISCHES ARGUMENTIEREN IN DER SCHULE: GESELLSCHAFTLICHE, PSYCHOLOGISCHE UND PHILOSOPHISCHE GRUNDLAGEN UND DIDAKTISCHE ANSTZE (GERMAN

ETHISCHES ARGUMENTIEREN IN DER SCHULE: GESELLSCHAFTLICHE, PSYCHOLOGISCHE UND PHILOSOPHISCHE GRUNDLAGEN UND DIDAKTISCHE ANSTZE (GERMAN ETHISCHES ARGUMENTIEREN IN DER SCHULE: GESELLSCHAFTLICHE, PSYCHOLOGISCHE UND PHILOSOPHISCHE GRUNDLAGEN UND DIDAKTISCHE ANSTZE (GERMAN READ ONLINE AND DOWNLOAD EBOOK : ETHISCHES ARGUMENTIEREN IN DER SCHULE:

Mehr

UltraSPARC T2 Processor

UltraSPARC T2 Processor UltraSPARC T2 Processor Vortrag im Rahmen des Seminars Ausgewählte Themen in Hardwareentwurf und Optik HWS07 Universität Mannheim Janusz Schinke Inhalt Überblick Core Crossbar L2 Cache Internes Netzwerk

Mehr

Quadt Kunststoffapparatebau GmbH

Quadt Kunststoffapparatebau GmbH Quadt Kunststoffapparatebau GmbH Industriestraße 4-6 D-53842 Troisdorf/Germany Tel.: +49(0)2241-95125-0 Fax.: +49(0)2241-95125-17 email: info@quadt-kunststoff.de Web: www.quadt-kunststoff.de Page 1 1.

Mehr

CNC ZUR STEUERUNG VON WERKZEUGMASCHINEN (GERMAN EDITION) BY TIM ROHR

CNC ZUR STEUERUNG VON WERKZEUGMASCHINEN (GERMAN EDITION) BY TIM ROHR (GERMAN EDITION) BY TIM ROHR READ ONLINE AND DOWNLOAD EBOOK : CNC ZUR STEUERUNG VON WERKZEUGMASCHINEN (GERMAN EDITION) BY TIM ROHR PDF Click button to download this ebook READ ONLINE AND DOWNLOAD CNC ZUR

Mehr

Pipelining for DLX 560 Prozessor. Pipelining : implementation-technique. Pipelining makes CPUs fast. pipe stages

Pipelining for DLX 560 Prozessor. Pipelining : implementation-technique. Pipelining makes CPUs fast. pipe stages Pipelining for DLX 560 Prozessor Pipelining : implementation-technique Pipelining makes CPUs fast. pipe stages As many instructions as possible in one unit of time 1 Pipelining can - Reduce CPI - Reduce

Mehr

Computational Models

Computational Models - University of Applied Sciences - Computational Models - CSCI 331 - Friedhelm Seutter Institut für Angewandte Informatik Part I Automata and Languages 0. Introduction, Alphabets, Strings, and Languages

Mehr

Wer bin ich - und wenn ja wie viele?: Eine philosophische Reise. Click here if your download doesn"t start automatically

Wer bin ich - und wenn ja wie viele?: Eine philosophische Reise. Click here if your download doesnt start automatically Wer bin ich - und wenn ja wie viele?: Eine philosophische Reise Click here if your download doesn"t start automatically Wer bin ich - und wenn ja wie viele?: Eine philosophische Reise Wer bin ich - und

Mehr

Karlsruhe Institute of Technology Die Kooperation von Forschungszentrum Karlsruhe GmbH und Universität Karlsruhe (TH)

Karlsruhe Institute of Technology Die Kooperation von Forschungszentrum Karlsruhe GmbH und Universität Karlsruhe (TH) Combining Cloud and Grid with a User Interface Jie Tao Karlsruhe Institute of Technology jie.tao@kit.edu Die Kooperation von Outline Motivation The g-eclipse Project Extending gg-eclipse for a Cloud Framework

Mehr

UltraSPARC T1 (Niagara)

UltraSPARC T1 (Niagara) UltraSPARC T1 (Niagara) Vortrag im Rahmen des Seminars Ausgewählte Themen in Hardwareentwurf und Optik HWS 06 Universität Mannheim Jochen Kinzel 1 Inhalt Überblick Core Crossbar Level 2-Cache DRAM-Controller

Mehr

SPINNER MOBILE COMMUNICATION

SPINNER MOBILE COMMUNICATION KOAXIALE VERTEILER & RICHTKOPPLER COAXIAL SPLITTERS & COUPLERS SPINNER bietet seinen Kunden extrem breitbandige Komponenten, die eine gemeinsame Nutzung eines Verteilersystems für alle Mobilfunkanwendungen

Mehr

FPGA-Based Architecture for Pattern Recognition

FPGA-Based Architecture for Pattern Recognition Institut für Technik der Informationsverarbeitung FPGA-Based Architecture for Pattern Recognition Institut für Prozessdatenverarbeitung und Elektronik - IPE, KIT University of the State of Baden-Wuerttemberg

Mehr

JONATHAN JONA WISLER WHD.global

JONATHAN JONA WISLER WHD.global JONATHAN WISLER JONATHAN WISLER WHD.global CLOUD IS THE FUTURE By 2014, the personal cloud will replace the personal computer at the center of users' digital lives Gartner CLOUD TYPES SaaS IaaS PaaS

Mehr

Fault Tolerant Network on chips Topologies

Fault Tolerant Network on chips Topologies SEMINAR Reliable Networks-On-Chip in the Many Core Era Fault Tolerant Network on chips Topologies Presented by : Mentor : T h a r e s h S h a r m a C l a u s B r a u n Overview Motivation Introduction

Mehr

Stand der Recherche nach publizierten Identity Management Standards - ISO/IEC, DIN, BSI, CEN/ISSS und OASIS

Stand der Recherche nach publizierten Identity Management Standards - ISO/IEC, DIN, BSI, CEN/ISSS und OASIS IT Advisory Group AG Stand der Recherche nach publizierten Identity Management Standards - ISO/IEC, DIN, BSI, CEN/ISSS und OASIS Arslan Brömme Dipl.-Inform., B.Sc. 1 AK GenericIAM Stuttgart, 20. Juni 2006

Mehr

Level 2 German, 2013

Level 2 German, 2013 91126 911260 2SUPERVISOR S Level 2 German, 2013 91126 Demonstrate understanding of a variety of written and / or visual German text(s) on familiar matters 9.30 am Monday 11 November 2013 Credits: Five

Mehr

Level of service estimation at traffic signals based on innovative traffic data services and collection techniques

Level of service estimation at traffic signals based on innovative traffic data services and collection techniques Level of service estimation at traffic signals based on innovative traffic data services and collection techniques Authors: Steffen Axer, Jannis Rohde, Bernhard Friedrich Network-wide LOS estimation at

Mehr

Context-adaptation based on Ontologies and Spreading Activation

Context-adaptation based on Ontologies and Spreading Activation -1- Context-adaptation based on Ontologies and Spreading Activation ABIS 2007, Halle, 24.09.07 {hussein,westheide,ziegler}@interactivesystems.info -2- Context Adaptation in Spreadr Pubs near my location

Mehr

DAS ERSTE MAL UND IMMER WIEDER. ERWEITERTE SONDERAUSGABE BY LISA MOOS

DAS ERSTE MAL UND IMMER WIEDER. ERWEITERTE SONDERAUSGABE BY LISA MOOS Read Online and Download Ebook DAS ERSTE MAL UND IMMER WIEDER. ERWEITERTE SONDERAUSGABE BY LISA MOOS DOWNLOAD EBOOK : DAS ERSTE MAL UND IMMER WIEDER. ERWEITERTE Click link bellow and free register to download

Mehr

AS Path-Prepending in the Internet And Its Impact on Routing Decisions

AS Path-Prepending in the Internet And Its Impact on Routing Decisions (SEP) Its Impact on Routing Decisions Zhi Qi ytqz@mytum.de Advisor: Wolfgang Mühlbauer Lehrstuhl für Netzwerkarchitekturen Background Motivation BGP -> core routing protocol BGP relies on policy routing

Mehr

Top-Antworten im Bewerbungsgespräch für Dummies (German Edition)

Top-Antworten im Bewerbungsgespräch für Dummies (German Edition) Top-Antworten im Bewerbungsgespräch für Dummies (German Edition) Rob Yeung Click here if your download doesn"t start automatically Top-Antworten im Bewerbungsgespräch für Dummies (German Edition) Rob Yeung

Mehr

Accelerating Information Technology Innovation

Accelerating Information Technology Innovation Accelerating Information Technology Innovation http://aiti.mit.edu Ghana Summer 2011 Lecture 05 Functions Weather forecast in Accra Thursday Friday Saturday Sunday 30 C 31 C 29 C 28 C f = 9 5 c + 32 Temperature

Mehr

Titanium The heaviest light metal

Titanium The heaviest light metal Titanium The heaviest light metal Dan Snitkovsky Uniweld Israel FRONIUS International GmbH Buxbaumstr. 2 4600 Wels Titanium The heaviest light metal 0,5g/cm³ 4,5g/cm³ Heavy metal Lithium - light metal

Mehr

Killy Literaturlexikon: Autoren Und Werke Des Deutschsprachigen Kulturraumes 2., Vollstandig Uberarbeitete Auflage (German Edition)

Killy Literaturlexikon: Autoren Und Werke Des Deutschsprachigen Kulturraumes 2., Vollstandig Uberarbeitete Auflage (German Edition) Killy Literaturlexikon: Autoren Und Werke Des Deutschsprachigen Kulturraumes 2., Vollstandig Uberarbeitete Auflage (German Edition) Walther Killy Click here if your download doesn"t start automatically

Mehr

General info on using shopping carts with Ogone

General info on using shopping carts with Ogone Inhaltsverzeichnisses 1. Disclaimer 2. What is a PSPID? 3. What is an API user? How is it different from other users? 4. What is an operation code? And should I choose "Authorisation" or "Sale"? 5. What

Mehr

Unit 1. Motivation and Basics of Classical Logic. Fuzzy Logic I 6

Unit 1. Motivation and Basics of Classical Logic. Fuzzy Logic I 6 Unit 1 Motivation and Basics of Classical Logic Fuzzy Logic I 6 Motivation In our everyday life, we use vague, qualitative, imprecise linguistic terms like small, hot, around two o clock Even very complex

Mehr

SARA 1. Project Meeting

SARA 1. Project Meeting SARA 1. Project Meeting Energy Concepts, BMS and Monitoring Integration of Simulation Assisted Control Systems for Innovative Energy Devices Prof. Dr. Ursula Eicker Dr. Jürgen Schumacher Dirk Pietruschka,

Mehr

Power-Efficient Server Utilization in Compute Clouds

Power-Efficient Server Utilization in Compute Clouds Power-Efficient Server Utilization in Compute Clouds 1/14 Overview 1. Motivation 2. SPECpower benchmark 3. Load distribution strategies 4. Cloud configuration 5. Results 6. Conclusion 2/14 1. Motivation

Mehr

Infrastructure as a Service (IaaS) Solutions for Online Game Service Provision

Infrastructure as a Service (IaaS) Solutions for Online Game Service Provision Infrastructure as a Service (IaaS) Solutions for Online Game Service Provision Zielsetzung: System Verwendung von Cloud-Systemen für das Hosting von online Spielen (IaaS) Reservieren/Buchen von Resources

Mehr

PROFIBUS-DP Repeater 1 to 1 and 1 to 5 with optional level converter module

PROFIBUS-DP Repeater 1 to 1 and 1 to 5 with optional level converter module LSS PROFIBUS-DP Repeater 1 to 1 and 1 to 5 with optional level converter module The LSS PROFIBUS-DP repeaters 1 to 1 and 1 to 5 are used for coupling up to six PROFIBUS bus segments in RS 485 bus technology.

Mehr

IDS Lizenzierung für IDS und HDR. Primärserver IDS Lizenz HDR Lizenz

IDS Lizenzierung für IDS und HDR. Primärserver IDS Lizenz HDR Lizenz IDS Lizenzierung für IDS und HDR Primärserver IDS Lizenz HDR Lizenz Workgroup V7.3x oder V9.x Required Not Available Primärserver Express V10.0 Workgroup V10.0 Enterprise V7.3x, V9.x or V10.0 IDS Lizenz

Mehr

FIVNAT-CH. Annual report 2002

FIVNAT-CH. Annual report 2002 FIVNAT-CH Schweizerische Gesellschaft für Reproduktionsmedizin Annual report 2002 Date of analysis 15.01.2004 Source: FileMaker Pro files FIVNAT_CYC.FP5 and FIVNAT_PAT.FP5 SUMMARY TABLE SUMMARY RESULTS

Mehr

German translation: technology

German translation: technology A. Starter Write the gender and the English translation for each word, using a dictionary if needed. Gender (der/die/das) German English Handy Computer Internet WLAN-Verbindung Nachricht Drucker Medien

Mehr

Logik für Informatiker Logic for computer scientists

Logik für Informatiker Logic for computer scientists Logik für Informatiker Logic for computer scientists Till Mossakowski WiSe 2007/08 2 Rooms Monday 13:00-15:00 GW2 B1410 Thursday 13:00-15:00 GW2 B1410 Exercises (bring your Laptops with you!) either Monday

Mehr

Big Data Analytics. Fifth Munich Data Protection Day, March 23, Dr. Stefan Krätschmer, Data Privacy Officer, Europe, IBM

Big Data Analytics. Fifth Munich Data Protection Day, March 23, Dr. Stefan Krätschmer, Data Privacy Officer, Europe, IBM Big Data Analytics Fifth Munich Data Protection Day, March 23, 2017 C Dr. Stefan Krätschmer, Data Privacy Officer, Europe, IBM Big Data Use Cases Customer focused - Targeted advertising / banners - Analysis

Mehr

Lehrstuhl für Allgemeine BWL Strategisches und Internationales Management Prof. Dr. Mike Geppert Carl-Zeiß-Str. 3 07743 Jena

Lehrstuhl für Allgemeine BWL Strategisches und Internationales Management Prof. Dr. Mike Geppert Carl-Zeiß-Str. 3 07743 Jena Lehrstuhl für Allgemeine BWL Strategisches und Internationales Management Prof. Dr. Mike Geppert Carl-Zeiß-Str. 3 07743 Jena http://www.im.uni-jena.de Contents I. Learning Objectives II. III. IV. Recap

Mehr

NOREA Sprachführer Norwegisch: Ein lustbetonter Sprachkurs zum Selbstlernen (German Edition)

NOREA Sprachführer Norwegisch: Ein lustbetonter Sprachkurs zum Selbstlernen (German Edition) NOREA Sprachführer Norwegisch: Ein lustbetonter Sprachkurs zum Selbstlernen (German Edition) Click here if your download doesn"t start automatically NOREA Sprachführer Norwegisch: Ein lustbetonter Sprachkurs

Mehr

Corporate Digital Learning, How to Get It Right. Learning Café

Corporate Digital Learning, How to Get It Right. Learning Café 0 Corporate Digital Learning, How to Get It Right Learning Café Online Educa Berlin, 3 December 2015 Key Questions 1 1. 1. What is the unique proposition of digital learning? 2. 2. What is the right digital

Mehr

Registration of residence at Citizens Office (Bürgerbüro)

Registration of residence at Citizens Office (Bürgerbüro) Registration of residence at Citizens Office (Bürgerbüro) Opening times in the Citizens Office (Bürgerbüro): Monday to Friday 08.30 am 12.30 pm Thursday 14.00 pm 17.00 pm or by appointment via the Citizens

Mehr

Warum nehme ich nicht ab?: Die 100 größten Irrtümer über Essen, Schlanksein und Diäten - Der Bestseller jetzt neu!

Warum nehme ich nicht ab?: Die 100 größten Irrtümer über Essen, Schlanksein und Diäten - Der Bestseller jetzt neu! Warum nehme ich nicht ab?: Die 100 größten Irrtümer über Essen, Schlanksein und Diäten - Der Bestseller jetzt neu! (German Edition) Susanne Walsleben Click here if your download doesn"t start automatically

Mehr

Priorities (time independent and time dependent) Different service times of different classes at Type-1 nodes -

Priorities (time independent and time dependent) Different service times of different classes at Type-1 nodes - E.6 Approximate Analysis of Non-product-Form Queueing Networks Non exponentially distributed service times Priorities (time independent and time dependent) Different service times of different classes

Mehr

Tube Analyzer LogViewer 2.3

Tube Analyzer LogViewer 2.3 Tube Analyzer LogViewer 2.3 User Manual Stand: 25.9.2015 Seite 1 von 11 Name Company Date Designed by WKS 28.02.2013 1 st Checker 2 nd Checker Version history Version Author Changes Date 1.0 Created 19.06.2015

Mehr

Hazards and measures against hazards by implementation of safe pneumatic circuits

Hazards and measures against hazards by implementation of safe pneumatic circuits Application of EN ISO 13849-1 in electro-pneumatic control systems Hazards and measures against hazards by implementation of safe pneumatic circuits These examples of switching circuits are offered free

Mehr

Field-Circuit Coupling for Mechatronic Systems: Some Trends and Techniques

Field-Circuit Coupling for Mechatronic Systems: Some Trends and Techniques Field-Circuit Coupling for Mechatronic Systems: Some Trends and Techniques Stefan Kurz Robert Bosch GmbH, Stuttgart Now with the University of the German Federal Armed Forces, Hamburg stefan.kurz@unibw-hamburg.de

Mehr

Dynamic Hybrid Simulation

Dynamic Hybrid Simulation Dynamic Hybrid Simulation Comparison of different approaches in HEV-modeling GT-SUITE Conference 12. September 2012, Frankfurt/Main Institut für Verbrennungsmotoren und Kraftfahrwesen Universität Stuttgart

Mehr

HIR Method & Tools for Fit Gap analysis

HIR Method & Tools for Fit Gap analysis HIR Method & Tools for Fit Gap analysis Based on a Powermax APML example 1 Base for all: The Processes HIR-Method for Template Checks, Fit Gap-Analysis, Change-, Quality- & Risk- Management etc. Main processes

Mehr

GridMate The Grid Matlab Extension

GridMate The Grid Matlab Extension GridMate The Grid Matlab Extension Forschungszentrum Karlsruhe, Institute for Data Processing and Electronics T. Jejkal, R. Stotzka, M. Sutter, H. Gemmeke 1 What is the Motivation? Graphical development

Mehr

Overview thermostat/ temperature controller

Overview thermostat/ temperature controller Thermostat TR-238 The Thermostat TR-238 is a electronic two-level controller for controlling of and in climate control units and vehicles. Voltage range (12V): Voltage range (24V): Control range: Hystereses:

Mehr

Call Centers and Low Wage Employment in International Comparison

Call Centers and Low Wage Employment in International Comparison Wissenschaftszentrum Nordrhein-Westfalen Kulturwissenschaftliches Institut Wuppertal Institut für Klima, Umwelt, Energie Institut Arbeit und Technik Call Centers and Low Wage Employment in International

Mehr

ATEX-Check list. Compiled by: Date: Signature: Acceptable practice at the determination of flash point: Closed cup according to ISO 2719

ATEX-Check list. Compiled by: Date: Signature: Acceptable practice at the determination of flash point: Closed cup according to ISO 2719 Fire and explosion hazard ATEX 137 1999/92/EG und ATEX 95 2014/34/EU Danger assessment and determination of explosion protection zone for the test space as well as the installation site ATEX-Check list

Mehr

FACHKUNDE FüR KAUFLEUTE IM GESUNDHEITSWESEN FROM THIEME GEORG VERLAG

FACHKUNDE FüR KAUFLEUTE IM GESUNDHEITSWESEN FROM THIEME GEORG VERLAG FACHKUNDE FüR KAUFLEUTE IM GESUNDHEITSWESEN FROM THIEME GEORG VERLAG DOWNLOAD EBOOK : FACHKUNDE FüR KAUFLEUTE IM GESUNDHEITSWESEN Click link bellow and free register to download ebook: FACHKUNDE FüR KAUFLEUTE

Mehr

ZWISCHEN TRADITION UND REBELLION - FRAUENBILDER IM AKTUELLEN BOLLYWOODFILM (GERMAN EDITION) BY CHRISTINE STöCKEL

ZWISCHEN TRADITION UND REBELLION - FRAUENBILDER IM AKTUELLEN BOLLYWOODFILM (GERMAN EDITION) BY CHRISTINE STöCKEL Read Online and Download Ebook ZWISCHEN TRADITION UND REBELLION - FRAUENBILDER IM AKTUELLEN BOLLYWOODFILM (GERMAN EDITION) BY CHRISTINE STöCKEL DOWNLOAD EBOOK : ZWISCHEN TRADITION UND REBELLION - FRAUENBILDER

Mehr

RECHNUNGSWESEN. KOSTENBEWUßTE UND ERGEBNISORIENTIERTE BETRIEBSFüHRUNG. BY MARTIN GERMROTH

RECHNUNGSWESEN. KOSTENBEWUßTE UND ERGEBNISORIENTIERTE BETRIEBSFüHRUNG. BY MARTIN GERMROTH RECHNUNGSWESEN. KOSTENBEWUßTE UND ERGEBNISORIENTIERTE BETRIEBSFüHRUNG. BY MARTIN GERMROTH DOWNLOAD EBOOK : RECHNUNGSWESEN. KOSTENBEWUßTE UND Click link bellow and free register to download ebook: RECHNUNGSWESEN.

Mehr

Wozu dient ein Logikanalysator?

Wozu dient ein Logikanalysator? Wozu dient ein Logikanalysator? Beispiel: Microcontroller Microcontroller kommen vor in Haushaltsgeräten (Waschmaschine,...) in Fahrzeugen (ABS, Motorsteuerung, Radio,...) in Computern (Tastatur, Festplatte,

Mehr

Datasheet. Page 1 of 7

Datasheet. Page 1 of 7 Features 20 Encoder Positions 4-way Joystick LED-Illumination high quality signal processing Benefits Tactile multi purpose application premium design Hall Effect technology Applications Multiple switch

Mehr

EtherNet/IP Topology and Engineering MPx06/07/08VRS

EtherNet/IP Topology and Engineering MPx06/07/08VRS EtherNet/IP Topology and Engineering MPx06/07/08VRS 3 1. Engineering via free EtherNet/IPTM-Port of a device on Bus from MPx07V10 2. Engineering via optional Industrial-Ethernet-Switch 3. Engineering via

Mehr

Sinn und Aufgabe eines Wissenschaftlers: Textvergleich zweier klassischer Autoren (German Edition)

Sinn und Aufgabe eines Wissenschaftlers: Textvergleich zweier klassischer Autoren (German Edition) Sinn und Aufgabe eines Wissenschaftlers: Textvergleich zweier klassischer Autoren (German Edition) Click here if your download doesn"t start automatically Sinn und Aufgabe eines Wissenschaftlers: Textvergleich

Mehr

Produktinformation Access-Gateway. Product information Access gateway AGW 670-0

Produktinformation Access-Gateway. Product information Access gateway AGW 670-0 Produktinformation Access-Gateway Product information Access gateway AGW 670-0 1 2 3 4 2 Deutsch Anwendung Access-Gateway zur physikalischen Trennung von 2 Netzwerken an einem Access-Server. Durch den

Mehr

Cycling and (or?) Trams

Cycling and (or?) Trams Cycling and (or?) Trams Can we support both? Experiences from Berne, Switzerland Roland Pfeiffer, Departement for cycling traffic, City of Bern Seite 1 A few words about Bern Seite 2 A few words about

Mehr

1. Hardware Configuration Hardware-Konfiguration Software-Konfiguration Software Configuration...4

1. Hardware Configuration Hardware-Konfiguration Software-Konfiguration Software Configuration...4 Einzel- und Verbundkonfiguration Stand-alone and Multi-unit Configuration Inhaltsverzeichnis 1. Hardware-Konfiguration... 2 1.1 Netzwerkadressen...2 1.2 Verkabelung...2 Contents 1. Hardware Configuration...2

Mehr

Radio Frequency Systems

Radio Frequency Systems Radio Frequency Systems by Manfred Thumm and Werner Wiesbeck Forschungszentrum Karlsruhe in der Helmholtz - Gemeinschaft Universität Karlsruhe (TH) Research University founded 1825 Receiver Forschungszentrum

Mehr

Aufbau eines IT-Servicekataloges am Fallbeispiel einer Schweizer Bank

Aufbau eines IT-Servicekataloges am Fallbeispiel einer Schweizer Bank SwissICT 2011 am Fallbeispiel einer Schweizer Bank Fritz Kleiner, fritz.kleiner@futureways.ch future ways Agenda Begriffsklärung Funktionen und Aspekte eines IT-Servicekataloges Fallbeispiel eines IT-Servicekataloges

Mehr

Level 1 German, 2016

Level 1 German, 2016 90886 908860 1SUPERVISOR S Level 1 German, 2016 90886 Demonstrate understanding of a variety of German texts on areas of most immediate relevance 2.00 p.m. Wednesday 23 November 2016 Credits: Five Achievement

Mehr

Copyright by Max Weishaupt GmbH, D Schwendi

Copyright by Max Weishaupt GmbH, D Schwendi Improving Energy Efficiency through Burner Retrofit Overview Typical Boiler Plant Cost Factors Biggest Efficiency Losses in a boiler system Radiation Losses Incomplete Combustion Blowdown Stack Losses

Mehr

Sporadischer Neustart von WPC-Geräten FINALE LÖSUNG

Sporadischer Neustart von WPC-Geräten FINALE LÖSUNG 1 von 8 Sporadischer Neustart von WPC-Geräten FINALE LÖSUNG Leon, der bekannte Experte aus Belgien, hatte bereits vor einiger Zeit einen originellen "quick n dirty" Ansatz zur Lösung des Problems veröffentlicht

Mehr

Quiz. Gegeben sei ein 16KB Cache mit 32 Byte Blockgröße. Wie verteilen sich die Bits einer 32 Bit Adresse auf: Tag Index Byte Offset.

Quiz. Gegeben sei ein 16KB Cache mit 32 Byte Blockgröße. Wie verteilen sich die Bits einer 32 Bit Adresse auf: Tag Index Byte Offset. Quiz Gegeben sei ein 16KB Cache mit 32 Byte Blockgröße. Wie verteilen sich die Bits einer 32 Bit Adresse auf: Tag Index Byte Offset 32 Bit Adresse 31 3 29... 2 1 SS 212 Grundlagen der Rechnerarchitektur

Mehr

Die besten Chuck Norris Witze: Alle Fakten über den härtesten Mann der Welt (German Edition)

Die besten Chuck Norris Witze: Alle Fakten über den härtesten Mann der Welt (German Edition) Die besten Chuck Norris Witze: Alle Fakten über den härtesten Mann der Welt (German Edition) Click here if your download doesn"t start automatically Die besten Chuck Norris Witze: Alle Fakten über den

Mehr

Level 1 German, 2014

Level 1 German, 2014 90886 908860 1SUPERVISOR S Level 1 German, 2014 90886 Demonstrate understanding of a variety of German texts on areas of most immediate relevance 9.30 am Wednesday 26 November 2014 Credits: Five Achievement

Mehr