COSC 6374 Parallel Computation. Communication Performance Modeling. Edgar Gabriel Fall Motivation

Size: px
Start display at page:

Download "COSC 6374 Parallel Computation. Communication Performance Modeling. Edgar Gabriel Fall Motivation"

Transcription

1 COSC 6374 Parallel Cmputatin Cmmunicatin Perfrmance Mdeling Edgar Gabriel Fall 2015 Mtivatin Can we estimate the csts fr a parallel cde in rder t Evaluate quantitative and qualitative differences between different implementatin alternatives Understand the parameters effecting the perfrmance f the applicatin Understanding relevant hardware characteristics Restrictins: Any analytical mdel can nt replace real measurements since parallel systems are t cmplex and unpredictable 1

2 Hw t mdel cllective peratins? Eg MPI_Bcast: strngly depending n the algrithm used t implement the peratin One prcess (rt prcess) distributes the same data items t all members within a prcess grup (cmmunicatr) Linear Algrithm: the rt prcess sends ne message t each prcess in the cmmunicatr if (rank == rt ) { fr (i=0; i<size; i++ ) if ( i!= rt ) MPI_Send (buf, cnt, dat, i, TAG, cmm); } else MPI_Recv (buf, cnt, dat, rt, TAG, cmm, &stat); Linear Algrithm (I) 1 Hckney s Mdel: t( s) l s b s: message size l: latency b: bandwidth Estimate f the executin time accrding t Hckney s mdel fr p prcesses: 1 ( s, p) ( l s)*( p 1) b t (4:1) 2

3 Linear Algrithm (II) Using nn-blcking peratins: if (rank == rt ) { fr (i=0; i<size; i++ ) MPI_Isend (buf, cnt, dat, i, TAG, cmm, &req[i]); } MPI_Recv (buf, cnt, dat, rt, TAG, cmm, &stat); if (rank == rt ) { MPI_Waitall ( size, req, statuses); } Frmula (4:1) is nw arbitrarily wrng Several cmmunicatins simultaneusly nging Maximum (ptimal) number f messages depending n message size and netwrk parameters Binary and Binmial Trees Number f messages increase with every iteratin netwrk saturated starting frm a certain number f messages message segmenting can imprve the perfrmance as well 3

4 Chain Algrithms Segment a message and pass them frm ne prcess t anther Perfrms very well fr very large messages n n n n n eg k=5 k-chain Algrithm

5 Hckney s Mdel t(s) = l + s/b (14:1) l: latency f the netwrk b: bandwidth f the netwrk Hw can we determine the latency and the bandwidth? Ping-png benchmark: prcess A sends a message t prcess B, prcess B sends message back Advantage: des nt require synchrnized clcks between A and B Disadvantage: assumes symmetric cmmunicatin perfrmance ( csts (A->B) == csts (B->A) T determine latency: execute ping-png benchmark fr cnt=0 Ping png benchmark cmm = MPI_COMM_WORLD; fr (i=1; i< MAX_MSG_LEN; i*=2 ) { t1 = MPI_Wtime(); fr ( j=0; j<max_measurements; j++ ) { if ( rank == 0 ) { MPI_Send (buf, i, MPI_INT, 1, 1, cmm); MPI_Recv (buf, i, MPI_INT, 1, 1, cmm, &status); } else if ( rank == 1 ) { MPI_Recv (buf, i, MPI_INT, 0, 1, cmm, &status); MPI_Send (buf, i, MPI_INT, 0, 1, cmm ); } } t2 = MPI_Wtime(); if ( rank == 0 ) { printf( Msg len: %d avg exec%lf bandw %d \n, i, (t2-t1)/(2*max_measurements), i*sizef(int)/((t2-t1)/(2*max_measurements)); } } 14 5

6 Ping-png benchmark (II) Ping-png benchmark (II) T determine bandwidth: have t determine the saturatin pint Required message length des depend n the netwrk bandwidth 16 6

7 LgP Mdel published by Culler et al Parameters: L: upper bund n the latency Hardware parameter : verhead, defined as the length f the time that a prcess is engaged in the transmissin r receptin f a message During this time, the prcess can nt perfrm ther peratins Sftware parameter g: gap, defined as the minimum time interval between cnsecutive message transmissins r receptins The reciprcal time f g crrespnds t the per-prcess cmmunicatin bandwidth Hardware parameter P: number f prcessrs Sender Start sending LgP (II) Message enters netwrk Receiver L Message leaves netwrk End receiving Csts fr sending a messages: t L 2 (19:1) 7

8 Start sending g Sender g LgP (III) Receiver L End receiving Csts fr sending tw messages: t L g 2 (20:1) LgP(IV) Please nte: Latency in the LgP mdel is different than the latency in the Hckney mdel Hardware latency (capital L) vs end-t-end latency (l) The latency in Hckney s mdel includes the verhead f the LgP Mdel In the frmula (20:1), we assumed that < g which is typically crrect The frmulas shuld hwever be instead (21:1) t L max( g, ) 2 8

9 LgP(III) LgP assumes, that any large message can be decmpsed t a series f shrt messages eg sending a message f k bytes takes k / w 1)*max( g, L t ) ( (22:1) with w being the size f the netwrk package in bytes fr which LgP still hlds LgP assumes, that the verhead is equal fr the sender and the receiver side Mre fine grained appraches use different values, eg s and r LgGP Extensin f LgP taking int accunt, that large message can ften be transferred mre efficiently than what LgP predicts, due t special hardware supprt Additinal parameter: G: Gap per bytes fr lng messages Sending a k byte message with LgGP: cycles until the first byte enters the netwrk G cycles fr each subsequent byte cycles n the receiver side t k 1) G L ( (23:1) 9

10 LgGP g Sender GGG GGG Receiver L End receiving Csts fr sending tw k-byte messages: t ( k 1) G g ( k 1) G L 2( k 1) G g L 2 (24:1) PLgP Extensin f the PLgP mdel making the parameters g, s and r dependent n the message length m g(m), s (m) and r (m) Latency L is cnsidered t be an end-t-end latency LgP/LgGP PLgP L L+g(1)- s (1)- r (1) ( s (1)+ r (1))/2 g G P g(1) g(m)/m, fr sufficiently large m P 10

11 PLgP(III) Hw can we determine the parameters f LgP, LgGP and PLgP Design a series f measurements Determine LgP/LgGP/PLgP mdels/equatins fr each series Equatins have t lead t a a set f linearly independent equatins N equatins fr n parameters Perfrm measurements Determine the parameters frm the equatins by slving the set f linearly independent equatins PLgP(IV) Test 1: Send n very small messages (m=0) and wait fr a single acknwledgement Measure the Time t send n messages f length 0: n*g(0) (7) (8) RundTripTime (RTT n ) = 2(L+g(0)) Test 2: Send a message f length m and wait fr an ack f length 0 Measure the Time t send a message f length m : s (m) (9) RTT(m) = L+g(m)+L+g(0) (10) Test 3: send a message f length 0, wait fr Δ>RTT(m) and receive than a message f length m Since Δ>RTT(m) we knw that the message is available, and thus we really measure r (m) (11) 11

12 Example: linear bradcast g 0 GGG GGG 1 L 2 L Example: linear bradcast Executin time accrding t LgP: First message takes cycles t push int the netwrk All subsequent messages take g cycles The last message takes L+ cycles t be received t(p) = +(P-2)g+L+ Executin time accrding t LgGP: First message takes +(k-1)g cycles Subsequent messages take g+(k-1)g cycles Last message takes L+ cycles t be received t(k,p) = +(P-2)g+(P-1)(k-1)G+L+ 12

13 Example: nn-segmented chain bradcast 0 GGG 1 L GGG 2 L Example: nn-segmented chain bradcast Executin time accrding t LgP: Rt prcess takes cycles t push the message int the netwrk A prcess takes L+ cycles t receive the message and cycles t push the message int the netwrk Last prcess takes L+ cycles t receive the message t(p)=+(p-2)(l+2)+l+ = (P-1)(L + 2) Similarly fr LgGP: t(k,p)=+(k-1)g+(p-2)(l+2+(k-1)g)+l+ = (P-1)(L+2+(k-1)G) 13

14 Hw cmmunicatin really wrks Tw prtcls usually used internally by mst MPI libraries: Eager prtcl: message is sent immediately t the receiver, withut waiting fr the accrding receive t be psted Usually used fr shrt messages ( ~32KB 128KB depending n netwrk intercnnect) If the message has t be buffered n the receiver side, it is cnsidered acceptable ( since it is shrt) Rendezvus prtcl: Avids having t buffer large messages n the receiver prcess ( unexpected messages) Send a header t receiver Wait fr an acknwledgment receive peratin has started Send message data LgGPS LgP, LgGP, PLgP d nt handle prtcl switch between eager and rendezvus prtcl LGGPS: add switching pint between eager and rendezvus prtcl L: upper bund n the hardware latency : sftware verhead Separated int a cnstant part and a byte-dependent part as well as int send and receive verhead + k O r r + k O s g: gap between messages G: gap per byte, distinguished between shrt Gap G s and lng Gap G l S: threshld fr eager vs rendezvus message lengths 14

15 LgGPS shrt messages Sender + ko s G s G s G s Receiver L + k O r Csts fr sending ne shrt message f k < S bytes (uses eager prtcl): t = + ko s + L + k G s + + ko r = 2 + k (O s + O r + G s ) + L LgGPS lng messages Sender + ko s SG s (k-s)g l Receiver L L + k O r t d Csts fr sending ne lng message f k > S bytes (rendezvus prtcl): t = + max(l+, t d ) + + L ko s + L + S G s + (k-s) G l + + ko r request t send acknwledgment actual data transfer t d : time that the receiver is delayed If t d = 0 : t = 6 + 3L + ko s + S G s + (k-s) G l + ko r 15

16 MPI Cmmunicatin csts in LgGPS MPI_Send: k<= S: + ko s k > S : + max(l+, t d ) + + L ko s MPI_Isend: MPI_Recv: k <= S: max{0, +ko s +L+kG s -t d } + + ko r k > S : max{0, +L-t d } L+kO s +SG s +(k-s)g+ko r MPI_Irecv: 16

Software Engineering

Software Engineering What Is Sftware Engineering? Sftware Engineering Sftware engineering is the study and an applicatin f engineering t the, develpment, and maintenance f sftware. The applicatin f a systematic, disciplined,

More information

What is a Customer Service Model?

What is a Customer Service Model? What is a Custmer Service Mdel? Qin Wu IETF 97 Seul Krean L2SM WG meeting 1 Mtivatin Mtivatin: Nt everybdy understand the difference between the device mdel and service mdel Clarify what a service mdel

More information

National Curriculum Programme of Study:

National Curriculum Programme of Study: Natinal Curriculum Prgramme f Study: Cunt in steps f 2, 3, and 5 frm 0, and in tens frm any number, frward and backward. Recall and use multiplicatin and divisin facts fr the 2, 5 and 10 multiplicatin

More information

Martel LC-110H Loop Calibrator and HART Communications/Diagnostics

Martel LC-110H Loop Calibrator and HART Communications/Diagnostics Martel LC-110H Lp Calibratr and HART Cmmunicatins/Diagnstics Abstract Martel Electrnics Crpratin This white paper describes the basic functins f HART cmmunicatins and the diagnstic capability f the Martel

More information

DIMACS Working Group on Measuring Anonymity Notes from Session 3: Information Theoretic and Language-based Approaches

DIMACS Working Group on Measuring Anonymity Notes from Session 3: Information Theoretic and Language-based Approaches DIMACS Wrking Grup n Measuring Annymity Ntes frm Sessin 3: Infrmatin Theretic and Language-based Appraches Scribe: Matthew Wright In this sessin, we had three 15-minute talks based n submitted abstracts

More information

Network Working Group. Category: Informational Cisco Systems A. Shaikh AT&T Labs (Research) April 2005

Network Working Group. Category: Informational Cisco Systems A. Shaikh AT&T Labs (Research) April 2005 Netwrk Wrking Grup Request fr Cmments: 4062 Categry: Infrmatinal V. Manral SiNett Crp. R. White Cisc Systems A. Shaikh AT&T Labs (Research) April 2005 Status f This Mem OSPF Benchmarking Terminlgy and

More information

MIT-CTR-III TWG-1. On-Board Very Short Interconnects Medium-term. October 12, Petre Popescu. communications technology roadmap

MIT-CTR-III TWG-1. On-Board Very Short Interconnects Medium-term. October 12, Petre Popescu. communications technology roadmap MIT-CTR-III TWG-1 On-Bard Very Shrt Intercnnects Medium-term Octber 12, 2011 Petre Ppescu cmmunicatins technlgy radmap Medium-term Based n cmmercially available cmpnents develped fr telecm and/r datacm.

More information

FIRMWARE RELEASE NOTES. Versions V2.0.0 to V Model HDL-32E. High Definition LiDAR Sensor

FIRMWARE RELEASE NOTES. Versions V2.0.0 to V Model HDL-32E. High Definition LiDAR Sensor FIRMWARE RELEASE NOTES Versins V2.0.0 t V2.2.21.0 Mdel HDL-32E High Definitin LiDAR Sensr HDL-32E Firmware Release Ntes Page 2 Fr all new features and changes, refer t the dcumentatin that accmpanies the

More information

Switched and Sectored Beamforming 1 c Raviraj Adve,

Switched and Sectored Beamforming 1 c Raviraj Adve, Switched and Sectred Beamfrming c Raviraj Adve, 2005. rsadve@cmm.utrnt.ca Intrductin Having investigated the use f antenna arrays fr directin f arrival estimatin we nw turn t the use f arrays fr data prcessing.

More information

Connection tariffs

Connection tariffs Cnnectin tariffs 2016-2019 A. TARIFF CONDITIONS FOR GRID USERS DIRECTLY CONNECTED TO THE ELIA GRID AND FOR DISTRIBUTION GRID OPERATORS, EXCEPTED FOR DISTRIBUTION GRID OPERATORS CONNECTED AT TRANSFORMER

More information

LED wdali MC Switch Input Modul Set - User Manual

LED wdali MC Switch Input Modul Set - User Manual LED wli MC Switch Input Mdul Set - User Manual Buttn mdul (Transmitter) 1. Prduct Descriptin Item N.: LC-004-302 Receive mdul (Receiver) The wli MC Switch Input Mdul Set is a cmpact wireless Multi Cntrl

More information

CSEN 601: Computer System Architecture Summer 2014

CSEN 601: Computer System Architecture Summer 2014 CSEN 601: Cmputer System Architecture Summer 2014 Practice Assignment 7 Slutin Exercise 7-1: Based n the MIPS pipeline implementatin yu studied, what are the cntrl signals that have t be stred in the ID/EX

More information

Comparative analysis of influence of the type line supplying nonlinear load on deformation of voltage and current in the power system

Comparative analysis of influence of the type line supplying nonlinear load on deformation of voltage and current in the power system Cmputer Applicatins in Electrical Engineering Cmparative analysis f influence f the type line supplying nnlinear lad n defrmatin f vltage and current in the pwer system tanisław Blkwski, Wiesław Brciek

More information

Hospital Task Scheduling using Constraint Programming

Hospital Task Scheduling using Constraint Programming Hspital Task Scheduling using Cnstraint Prgramming Authr: Chaman Chahal Supervisr: Dr. P. Bse, Schl f Cmputer Science Organizatin: Carletn University Curse: COMP4905 Date: Dec. 11, 2012 1 Abstract Hspitals

More information

AccuBuild Version 9.3 Release 05/11/2015. Document Management Speed Performance Improvements

AccuBuild Version 9.3 Release 05/11/2015. Document Management Speed Performance Improvements AccuBuild Versin 9.3 Release 05/11/2015 Dcument Management Speed Perfrmance Imprvements The entire dcument management system and security system design was retled which shuld result in majr speed imprvements

More information

START UPS DO NOT HAVE TO BE DIFFICULT

START UPS DO NOT HAVE TO BE DIFFICULT Cpyright 2011 ISA. All Rights Reserved START UPS DO NOT HAVE TO BE DIFFICULT Michel Ruel 1 1 BBA Tp Cntrl Inc., Green Bay, WI, USA Keywrds: Prcess Mdel, PID Algrithm, Lp Tuning, Cntrl Strategy, Alarm Management,

More information

Security Exercise 12

Security Exercise 12 Security Exercise 12 Asynchrnus Serial Digital Baseband Transmissin Discussin: In this chapter, yu learned that bits are transmitted ver a cpper wire as a series f vltage pulses (a prcess referred t as

More information

SVT Tab and Service Visibility Tool Job Aid

SVT Tab and Service Visibility Tool Job Aid Summary This Jb Aid cvers: SVT Tab Overview Service Visibility Tl (SVT) Area Overview SVT Area: Satellite Mdem Status (Frm Mdem) Clumn SVT Area: Satellite Mdem Status (Frm SMTS) Clumn SVT Area: Prvisining

More information

Processors with Sub-Microsecond Response Times Control a Variety of I/O. *Adapted from PID Control with ADwin, by Doug Rathburn, Keithley Instruments

Processors with Sub-Microsecond Response Times Control a Variety of I/O. *Adapted from PID Control with ADwin, by Doug Rathburn, Keithley Instruments PID Cntrl with ADwin Prcessrs with Sub-Micrsecnd Respnse Times Cntrl a Variety f I/O CHESTERLAND OH March 9, 2015 *Adapted frm PID Cntrl with ADwin, by Dug Rathburn, Keithley Instruments By Terry Nagy,

More information

Tee (Not a Coupler) Open Circuit Line. Z Z Z jz d

Tee (Not a Coupler) Open Circuit Line. Z Z Z jz d ECSE-2 Spring 22 Analysis Using Matlab Cable System R2 T2 Tee (Nt a Cupler) T TV Set Input R V 75 75 T3 Open Circuit Line The basic principle f this signal blcker is relatively simple. The CATV cable (T2

More information

Expiration Date: April 2000 October 1999 File name: draft-ietf-ospf-shortcut-abr-01.txt

Expiration Date: April 2000 October 1999 File name: draft-ietf-ospf-shortcut-abr-01.txt Netwrk Wrking Grup A. D. Zinin Internet Draft AMT Grup Expiratin Date: April 2000 Octber 1999 File name: draft-ietf-spf-shrtcut-abr-01.txt OSPF Shrtcut ABR Enhanced OSPF ABR Behavir draft-ietf-spf-shrtcut-abr-01.txt

More information

Introduction. DL Control Signaling Errors in LTE

Introduction. DL Control Signaling Errors in LTE Cntrl Signaling Rbustness in LTE This paper appears in: Vehicular Technlgy Cnference Fall (VTC 2009 Fall), 2009 IEEE 70th, Issue Date: 20 23 Sept. 2009, Written by: Timner, Ylva; Larm, Anna; Wiemann, Henning

More information

Workflow Working Group

Workflow Working Group Wrkflw Wrking Grup June 19, 2007 Chiba University Ann McCarthy Lexmark Internatinal Inc. Chair, Wrkflw Wrking Grup presented by: William Li Wrkflw WG Charter T identify a small number f the mst cmmnly

More information

NATF CIP Requirement R1 Guideline

NATF CIP Requirement R1 Guideline Open Distributin NATF CIP 014-2 Requirement R1 Guideline Disclaimer This dcument was created by the Nrth American Transmissin Frum (NATF) t facilitate industry wrk t imprve physical security. NATF reserves

More information

Dry Contact Sensor. Communications cable - RJ-45 jack to sensor using UTP Cat 5 wire. Power source: powered by the unit. No additional power needed.

Dry Contact Sensor. Communications cable - RJ-45 jack to sensor using UTP Cat 5 wire. Power source: powered by the unit. No additional power needed. Intrductin Dry Cntact Sensr The Dry Cntact sensr is a simple cnnectin t burglar alarms, fire alarms r any applicatin that requires mnitring by the unit. Dry cntact sensrs are user definable and can be

More information

WiFi Lab C. Equipment Needs:

WiFi Lab C. Equipment Needs: WiFi Lab C Event Objective: Teams will cnstruct an antenna prir t the turnament that is designed t transmit a signal at 2.4 GHz and cmplete a written test n the principles f electrmagnetic wave prpagatin.

More information

Exam solutions FYS3240/

Exam solutions FYS3240/ Exam slutins FYS3240/4240 2014 Prblem 1 a) Explain hw the accuracy (cnstant frequency utput) f quartz crystal scillatrs is imprved. The accuracy is imprved using temperature cmpensatin (temperature cmpensated

More information

Creating Gift Card Batches

Creating Gift Card Batches Every active custmer gift card issued is a part f a batch f gift cards. Prir t activating any individual gift card, yu must define a batch f gift cards and any accmpanying rules that apply t each batch.

More information

Hands-Free Music Tablet

Hands-Free Music Tablet Hands-Free Music Tablet Steven Tmer Nate Decker Grup Website: steve@wasatch.cm milamberftheassembly@yah.cm http://www.cs.utah.edu/~ndecker/ce3992/ Abstract The typical musician handles a great deal f sheet

More information

Ten-Tec Model RX-366 Subreceiver 565/566 Subreceiver Installation and Operation Manual-74467

Ten-Tec Model RX-366 Subreceiver 565/566 Subreceiver Installation and Operation Manual-74467 Ten-Tec Mdel RX-366 Subreceiver 565/566 Subreceiver Installatin and Operatin Manual-74467 Tls required: Sldering irn r heat gun (fr shrinking heat shrink tubing) Number 1 Phillips screw driver Number 2

More information

PreLab5 Temperature-Controlled Fan (Due Oct 16)

PreLab5 Temperature-Controlled Fan (Due Oct 16) PreLab5 Temperature-Cntrlled Fan (Due Oct 16) GOAL The gal f Lab 5 is t demnstrate a temperature-cntrlled fan. INTRODUCTION The electrnic measurement f temperature has many applicatins. A temperature-cntrlled

More information

Producing Research Posters

Producing Research Posters Dr Keith E. Fildes 21/23 Octber 2014 (with acknwledgments t Dr Lyuba Albul, CARR) Objectives This sessin will cver: The purpse f psters What shuld be included Design cnsideratins Getting started The fllw-up

More information

Operating Instructions

Operating Instructions TC 60/8 THERMOCOMPUTER TC 60/8 temp / time s s temp / time k start stp Operating Instructins Cntents General Infrmatin...1 Security Advice...1 Firing Curves...1 Typical Firing Curves...2 Entering a Firing

More information

LED DALI MC+ Switch Input Module - User Manual

LED DALI MC+ Switch Input Module - User Manual LED MC+ Switch Input Mdule - User Manual Item n.: LC-004-301 1. Prduct Descriptin The MC+ is a Cmpact Multi Cntrl mdule with 4 freely prgramable swithcing inputs (ptential-free clsing cntacts). The supply

More information

IntesisBox IS-IR-KNX-1i v1.0. User's Manual Issue Date: 06/2017 r1.0 eng

IntesisBox IS-IR-KNX-1i v1.0. User's Manual Issue Date: 06/2017 r1.0 eng IntesisBx IS-IR-KNX-1i v1.0 User's Manual Issue Date: 06/2017 r1.0 eng IntesisBx KNX IR Universal AC Intesis Sftware S.L.U. 2017 All Rights Reserved. Infrmatin in this dcument is subject t change withut

More information

Accurate Time & Frequency System

Accurate Time & Frequency System Mdel AR76A GPS-Disciplined Rubidium / OCXO Clck Key features: Frequency Accuracy : 1E-12 1PPS Accuracy: 20ns RMS Hldver: 1µs/24 hurs, 5E-11/mnth 20 utputs (10MHz, 1PPS, ) LAN IPV4 (NTP V3, Mnitr & Cntrl,

More information

DTTB Frequency Planning

DTTB Frequency Planning DTTB Frequency Planning Apprach and chices made in develping the DTTB frequency plan in Thailand ITU/NBTC Wrkshp 4 December 2014 Jan Deven DTTB frequency planning Tpics 1. Frequency plan Spectrum management

More information

Installing a Squeak-Free Nascor Floor System

Installing a Squeak-Free Nascor Floor System Nascr s precise manufacturing tlerances deliver a prduct that resists shrinking, warping and twisting the mst cmmn causes f squeaks in flr systems built with dimensinal lumber. Ensuring a squeak-free flr,

More information

your resumes & indicate job title in subject to:

your resumes & indicate job title in subject to: ENABLING THE DIGITAL WORLD List f Jb Openings: 1) Analyst Prgrammer 2) Payrll Officer 3) Sftware Engineer (Prduct Develpment) 4) Prcess Engineer (Enabling Technlgy) 5) Optics Engineer 6) Mechanical Design

More information

marksolid How to use marksolid for metal marking Spray 114 and Paste 015 V1.0

marksolid How to use marksolid for metal marking Spray 114 and Paste 015 V1.0 markslid Hw t use markslid fr metal marking Spray 114 and Paste 015 V1.0 1. Cntent 1. Cntent... 2 1. What is explained?... 3 Using markslid n plished metal (stainless steel)... 3 Imprtant things t knw...

More information

Softwarisation and Virtualisation of Network Coding Function Link between NWCRG - NFVRG

Softwarisation and Virtualisation of Network Coding Function Link between NWCRG - NFVRG Sftwarisatin and Virtualisatin f Netwrk Cding Functin Link between NWCRG - NFVRG M. Á. Vázquez-Castr, (Autnmus University f Barcelna, Spain) L. M. Cntreras (Telefnica I+D / Glbal CTO Unit / Telefónica,

More information

IEEE Wireless Access Method and Physical Layer Specifications. The potential of Dynamic Power Control

IEEE Wireless Access Method and Physical Layer Specifications. The potential of Dynamic Power Control dc: EEE P82.-92/76 EEE 82. Wireless Access Methd and Physical Layer Specificatins Title: Presented by: The ptential f Dynamic Pwer Cntrl Wim Diepstraten NCR SE-Utrecht NCR/AT&T Netwrk Prduct Grup Nieuwegein

More information

Automated Design of an ASIP for Image Processing Applications

Automated Design of an ASIP for Image Processing Applications Autmated Design f an ASIP fr Image Prcessing Applicatins Henj Scht and Henk Crpraal Delft University f Technlgy Department f Electrical Engineering Sectin Cmputer Architecture and Digital Technique P.O.

More information

Freading for Kindle Fire Using the SlideME app.

Freading for Kindle Fire Using the SlideME app. Harvard Public Library www.harvardpubliclibrary.rg Freading fr Kindle Fire Using the SlideME app. Freading is an e-bk cllectin, available t Harvard Public Library cardhlders, that ffers tens f thusands

More information

UNIVERSAL HARDWARE PLATFORM CARRIER-GRADE VSAT TECHNOLOGY

UNIVERSAL HARDWARE PLATFORM CARRIER-GRADE VSAT TECHNOLOGY UNIVERSAL HARDWARE PLATFORM CARRIER-GRADE VSAT TECHNOLOGY JULY 2018 (SW 3.5) NETWORKS AT A GLANCE Netwrks is a Canadian crpratin with HQ in Mntreal, Quebec Pineered disruptive VSAT technlgy based n sftware-defined

More information

TC 60 THERMOCOMPUTER TC 60. prog. start stop. Operating Instructions

TC 60 THERMOCOMPUTER TC 60. prog. start stop. Operating Instructions TC 60 prg start stp THERMOCOMPUTER TC 60 h C/h C Operating Instructins Cntents General Infrmatin...1 Security Advice...1 Firing Curves...1 Typical Firing Curves...2 Entering a Firing Curve...2 Checing

More information

Renton School District

Renton School District Rentn Schl District Curricular Apprach: Fr elementary, three alignment appraches were presented when develping the Rentn Schl District s transitin plan. The first mdel was keep science kits at their current

More information

A c r o s s t h e S k y l i n e

A c r o s s t h e S k y l i n e A c r s s t h e S k y l i n e D a i s y - C h a i n i n g Y u r N e t w r k W i t h R a v e n s W i r e l e s s T e c h n l g y Using Raven s secure Daisy radi mdems and Skyline System t wirelessly access

More information

Dispatcher Control for MotoTRBO Capacity Plus Systems

Dispatcher Control for MotoTRBO Capacity Plus Systems Dispatcher Cntrl fr MtTRBO Capacity Plus Systems This tutrial prvides brief instructins t set up the dispatch cntrl ver MtTRBO Capacity Plus systems, using SmartPTT dispatch sftware. Bth cases are cnsidered:

More information

T. Sabău Ivan / International Journal of Advanced Statistics and IT&C for Economics and Life Sciences Vol. 6, Issue 1 (2016)

T. Sabău Ivan / International Journal of Advanced Statistics and IT&C for Economics and Life Sciences Vol. 6, Issue 1 (2016) INFORMATION LITERACY IN THE DOCUMENTATION AND INFORMATION CENTRE (DIC) SPECIFIC ACTIVITIES DESIGNED INTO THE DIC FOR INFO- DOCUMENTARY SKILLS TRAINING OF STUDENTS: CASE STUDY AT DIC - C.T. CIBINIUM SIBIU

More information

POWER CHOKE TESTER DPG10 B SERIES

POWER CHOKE TESTER DPG10 B SERIES POWER CHOKE TESTER DPG10 B SERIES Descriptin & Technical Specificatins ed-k, Dipl.-Ing. H. Kreis Lchhamer Strasse 31 D-82152 Planegg Germany Telephne: 0049 / 89 / 85 90 28 19 Fax: 0049 / 89 / 85 90 28

More information

Transmission Substation Field Instructions

Transmission Substation Field Instructions 4.14 Substatin Permits Purpse This instructin deals with the use f permits t wrk in Hrizn Pwer s, and must be read in cnjunctin with FI 4.4 Secndary Islatins. Scpe The persnnel cvered by this instructin

More information

7.3 3 CENTRAL PANEL DISPLAY SYSTEM 3.1 GENERAL 3.2 CONTROLS VEMD COMPLEMENTARY FLIGHT MANUAL

7.3 3 CENTRAL PANEL DISPLAY SYSTEM 3.1 GENERAL 3.2 CONTROLS VEMD COMPLEMENTARY FLIGHT MANUAL 3 CENTRAL PANEL DISPLAY SYSTEM 3.1 GENERAL COMPLEMENTARY FLIGHT MANUAL The CPDS includes the Vehicle and Engine Management Display (VEMD) and the Cautin Advisry Panel (CAD). The CPDS displays the necessary

More information

New Eagle J1939 Library v1.0 New Eagle Products Datasheet

New Eagle J1939 Library v1.0 New Eagle Products Datasheet New Eagle New Eagle Prducts 2012-3-28 New Eagle 3588 Plymuth Rad, Bx #274 Ann Arbr, MI 48105-2603 PH: 877.234.1410 FAX: 928.395.2114 Table f Cntents M E C H A T R O N I C C O N T R O L S O L U T I O N

More information

Throughput Enhancement through Efficient Channel Assignment in Multi-radio Ad Hoc Networks

Throughput Enhancement through Efficient Channel Assignment in Multi-radio Ad Hoc Networks Thrughput Enhancement thrugh Efficient Channel Assignment in Multi-radi Ad Hc Netwrks Ashish Sangwan* Ghanshyam Dass* Pradipta De** Huzur Saran* sangwan@cse. iitd. ernet. in csl 030163#cse. iitd. ernet.

More information

Meteorological Satellites (MetSat) Overview of the global network of Meteorological Satellites. Speaker: Markus Dreis (EUMETSAT)

Meteorological Satellites (MetSat) Overview of the global network of Meteorological Satellites. Speaker: Markus Dreis (EUMETSAT) Meterlgical Satellites (MetSat) Overview f the glbal netwrk f Meterlgical Satellites Speaker: Markus Dreis (EUMETSAT) Secnd ITU/WMO Seminar "Use f Radi Spectrum fr Meterlgy: Weather, Water and Climate

More information

Experiment 7 Digital Logic Devices and the 555-Timer

Experiment 7 Digital Logic Devices and the 555-Timer Experiment 7 Digital Lgic Devices and the 555-Timer Purpse: In this experiment we address the cncepts f digital electrnics and lk at the 555-timer, a device that uses digital devices and ther electrnic

More information

Focus Session on Simulation at Aeronautics Test Facilities

Focus Session on Simulation at Aeronautics Test Facilities Fcus Sessin n Simulatin at Aernautics Test Facilities Octber 15, 2014 Overview f Presentatin Questins t be addressed during presentatin Hw has the ability t d increasingly accurate mdeling and simulatin

More information

study of the IEEE Contention-based Request Mechanism *

study of the IEEE Contention-based Request Mechanism * study f the IEEE 802.16 Cntentin-based Request Mechanism * Jesus Delicad, Francisc M. Delicad and Luis rzc-barbsa Institute de Investigacin en Infrmatica de Albacete (I^A) Universidad de Castilla-La Mancha

More information

Manual Zeiss Axio Zoom.V16 microscope and ZEN 2 Pro software

Manual Zeiss Axio Zoom.V16 microscope and ZEN 2 Pro software Manual Zeiss Axi Zm.V16 micrscpe and ZEN 2 Pr sftware 15-9-2015 Fred Hartjes EMS 3 Caxial illum. Ring illum. Starting up Pwer n Actuate the knb n the EMS 3 cntrl unit Switch n the caxial illuminatin Switch

More information

Operational Amplifiers High Speed Operational Amplifiers

Operational Amplifiers High Speed Operational Amplifiers F Electrnics: Operatinal Amplifiers Page 11.1 Operatinal Amplifiers High Speed Operatinal Amplifiers Operatinal amplifiers with 3 db bandwidths f up t 1.5 GHz are nw available, such peratinal amplifiers

More information

BV4115. RF Packet Transmitter. Product specification. February ByVac 2007 ByVac Page 1 of 5

BV4115. RF Packet Transmitter. Product specification. February ByVac 2007 ByVac Page 1 of 5 Prduct Specificatin Prduct specificatin. February 2007 ByVac 2007 ByVac Page 1 f 5 Prduct Specificatin Cntents 1. Dcument Versins... 2 2. Intrductin... 2 3. Features... 2 4. Battery Life... 2 5. Blck Diagram...

More information

ACTION PLAN TO AVOID FURTHER OUTAGES

ACTION PLAN TO AVOID FURTHER OUTAGES ACTION PLAN TO AVOID FURTHER OUTAGES Paris, Octber 18 th, 2013, These past few mnths, France-IX has undergne a series f utages which highlighted the limits France-IX has recently undergne a series f utages

More information

Selecting Yo r Guitar Notes on the First String: Introducing E Acoustic Guitars and Electric Guitars The Note E with Chords Tuning Your Guitar

Selecting Yo r Guitar Notes on the First String: Introducing E Acoustic Guitars and Electric Guitars The Note E with Chords Tuning Your Guitar Selecting Yur Guitar... 5 Steel Strings and Nyln Strings Acustic Guitars and Electric Guitars... 7 aring fr Yur Guitar Tuning Yur Guitar... 9 Tuning with the Ds Tuning withut the Ds Hw t Hld Yur Guitar...

More information

A Bayesian Overlapping Coalition Formation Game for Device-to-Device Spectrum Sharing in Cellular Networks

A Bayesian Overlapping Coalition Formation Game for Device-to-Device Spectrum Sharing in Cellular Networks 1 A Bayesian Overlapping Calitin Frmatin Game fr Device-t-Device Spectrum Sharing in Cellular Netwrks Yng Xia, Kwang-Cheng Chen, Fellw, IEEE, Chau Yuen, Senir Member, IEEE, Zhu Han, Fellw, IEEE, Luiz A.

More information

David R. Beering Christopher Erickson

David R. Beering Christopher Erickson Spectrum Aggregatin and Interference/Jamming Mitigatin in Pint-t-Pint Satellite Cmmunicatins Systems with the Opprtunistic Mdem TM by Cntinuus Satellite Data David R. Beering drbeering@sprynet.cm +1 630-235-7965

More information

Insertion Loss (db)

Insertion Loss (db) Optical Interleavers Optplex s Optical Interleaver prducts are based n ur patented Step-Phase Interfermeter design. Used as a DeMux (r Mux) device, an ptical interleaver separates (r cmbines) the Even

More information

A Basis for LDO and It s Thermal Design

A Basis for LDO and It s Thermal Design A Basis fr LDO and It s Thermal Design Hawk Chen Intrductin The AIC LDO family device, a 3-terminal regulatr, can be easily used with all prtectin features that are expected in high perfrmance vltage regulatin

More information

Using the Laser Cutter

Using the Laser Cutter Using the Laser Cutter Prerequisites Befre yu will be allwed t use the laser cutter, yu must cmplete these three steps: 1. Yu must have cmpleted the Laser Cutter training at Cyberia 2. Yu must schedule

More information

LINE POWER SUPPLIES Low-Loss Supplies for Line Powered EnOcean Modules

LINE POWER SUPPLIES Low-Loss Supplies for Line Powered EnOcean Modules Lw-Lss Supplies fr Line Pwered EnOcean Mdules A line pwer supply has t ffer the required energy t supply the actuatr electrnic and t supply the EnOcean TCM/RCM radi cntrl mdule. This paper cntains sme

More information

Accurate Time & Frequency System

Accurate Time & Frequency System GPS-Disciplined Rubidium/OCXO Clck Key features: Frequency Accuracy : 1E-12 1PPS Accuracy: 20ns RMS Hldver: 1µs/24 hurs, 5E-11/mnth 20 utputs (10MHz, 1PPS, TOD) LAN ( NTP, Mnitr & Cntrl) External 1PPS

More information

Application of Percents

Application of Percents Grade 7 Mathematics, Quarter 3, Unit 3.1 Applicatin f Percents Overview Number f instructinal days: 15 (1 day = 45 60 minutes) Cntent t be learned Cnvert between different frms f ratinal numbers (psitive

More information

Preparing microwave transport network for the 5G world

Preparing microwave transport network for the 5G world Preparing micrwave transprt netwrk fr the 5G wrld Maris Bugiuks, Ph.D. 18-12-2017 1 Nkia Netwrks 2015 Micrwave technlgy Transmitting infrmatin Micrwave transmissin is the transmissin f infrmatin r energy

More information

Performance Evaluation of Table Driven and Buffer Adaptive WLANs

Performance Evaluation of Table Driven and Buffer Adaptive WLANs 6th WSEAS Internatinal Cnference n CIRCUITS, SYSTEMS, ELECTRONICS,CONTROL & SIGNAL PROCESSING, Cair, Egypt, Dec 9-3, 7 57 Perfrmance Evaluatin f Table Driven and Buffer Adaptive WLANs IMAM MAHMUD TAIFUR

More information

Figure 1: View, connection compartment closed

Figure 1: View, connection compartment closed Radi Management Art. N. : 2700AP Operating instructins 1 Safety instructins Electrical equipment may nly be installed and fitted by electrically skilled persns. Serius injuries, fire r prperty damage pssible.

More information

INTERNATIONAL CIVIL AVIATION ORGANIZATION EASTERN AND SOUTHERN OFFICE

INTERNATIONAL CIVIL AVIATION ORGANIZATION EASTERN AND SOUTHERN OFFICE INTERNATIONAL CIVIL AVIATION ORGANIZATION EASTERN AND SOUTHERN OFFICE First Meeting f the AFI VSAT Netwrks Managers (AFI VSAT/1) (Kwa-Zulu Natal, Suth Africa, 13 t 15 June 2011) Agenda Item 6: Need fr

More information

Project QC Consultation on Proposed Reliability Standards and Supporting Documents. Information session for registered entities

Project QC Consultation on Proposed Reliability Standards and Supporting Documents. Information session for registered entities Prject QC-2015-02 Cnsultatin n Prpsed Reliability Standards and Supprting Dcuments Infrmatin sessin fr registered entities Nvember 26, 2015 Presentatin Overview 1. Meeting bjectives 2. Webinar instructins

More information

Experiment 7 Digital Logic Devices and the 555-Timer

Experiment 7 Digital Logic Devices and the 555-Timer Experiment 7 Digital Lgic Devices and the 555-Timer Purpse: In this experiment we address the cncepts f digital electrnics and lk at the 555-timer, a device that uses digital devices and ther electrnic

More information

VM1AT-R1 INDUSTRIAL MICROCONTROLLER

VM1AT-R1 INDUSTRIAL MICROCONTROLLER VM1AT-R1 INDUSTRIAL MICROCONTROLLER WARNING T avid permanent damage t integrated circuits yu may take precautins t discharge any static electricity frm yur bdy befre handling them. ASSEMBLY INSTRUCTIONS

More information

Implicit Coscheduling:

Implicit Coscheduling: Implicit Cscheduling: Crdinated Scheduling with Implicit Infrmatin in Distributed Systems Andrea Carl Apraci-Dusseau Reprt N. UCBèCSD-99-052 December 998 Cmputer Science Divisin èeecsè University f Califrnia

More information

Experiment 4 Op-Amp Circuits

Experiment 4 Op-Amp Circuits Experiment 4 Op-Amp Circuits Purpse: In this experiment, yu will learn abut peratinal amplifiers (r p-amps). Simple circuits cntaining peratinal amplifiers can be used t perfrm mathematical peratins, such

More information

idcv Isolated Digital Voltmeter User Manual

idcv Isolated Digital Voltmeter User Manual www.akcp.cm idcv Islated Digital Vltmeter User Manual Help Versin updated till firmware SP446 Cpyright 2011, AKCess Pr Limited Prvided by fficial AKCP-Distributr Didactum https://www.didactum-security.cm/en/

More information

Program for EQ2310 Digital Communications

Program for EQ2310 Digital Communications Prgram fr EQ2310 Digital Cmmunicatins August 20 1 Abut This Curse This is an intrductry curse n aspects f mdern digital cmmunicatin systems. Its main purpse is t serve as a first curse in Digital Cmmunicatins

More information

Documentation of the PIC32 Pin Finder

Documentation of the PIC32 Pin Finder App. Versin: 1.1.1.120 Dcument Versin: 1.0 Dcument Create date: 2009-10-16 Dcument Update: 2009-10-19 22:37 Authr: B Gärdmark Cmpany: Spectrn System Develpment AB WEB: www.spectrn.us Cpyright 2009 All

More information

Project Information o Simulating Cumulus Entrainment: A Resolution Problem, or Conceptual? o Sonia Lasher-Trapp, UIUC o

Project Information o Simulating Cumulus Entrainment: A Resolution Problem, or Conceptual? o Sonia Lasher-Trapp, UIUC o Annual Reprt fr Blue Waters Allcatin: Snia Lasher-Trapp, Oct 2016 Prject Infrmatin Simulating Cumulus Entrainment: A Reslutin Prblem, r Cnceptual? Snia Lasher-Trapp, UIUC slasher@illinis.edu Executive

More information

NanoScan v2 Readme Version 2.7. Change log. v2.7 - Added information for new product Pyro/9/5-MIR.

NanoScan v2 Readme Version 2.7. Change log. v2.7 - Added information for new product Pyro/9/5-MIR. NanScan v2 Readme Versin 2.7 Change lg v2.7 - Added infrmatin fr new prduct Pyr/9/5-MIR. v2.6 - Redesigned Messages windw. Imprved readability and ease f use. Mves almst all pp up message bxes int the

More information

CS5530 Mobile/Wireless Systems Key Wireless Physical Layer Concepts

CS5530 Mobile/Wireless Systems Key Wireless Physical Layer Concepts Mbile/Wireless Systems Key Wireless Physical Layer Cncepts Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs Outline Electrmagnetic spectrum Reflectin, diffractin

More information

D a i s y M o d e m s

D a i s y M o d e m s D a i s y M d e m s D a i s y - C h a i n i n g Y u r N e t w r k W i t h R a v e n s W i r e l e s s T e c h n l g y Using Raven s secure Daisy radi mdems t access yur data frm arund the wrld, build yur

More information

ASSEMBLE ALUMINUM TOOLBOX

ASSEMBLE ALUMINUM TOOLBOX ASSEMBLE ALUMINUM TOOLBOX INTRODUCTION In this lessn, yu will assemble an aluminum sheet metal tlbx using rivets. Yu will start with a kit that includes pre cut and pre frmed aluminum tlbx panels. This

More information

Math 3201 Unit 8: SINUSODIAL FUNCTIONS NAME: Up until now we can measure angles using degrees.

Math 3201 Unit 8: SINUSODIAL FUNCTIONS NAME: Up until now we can measure angles using degrees. Math 0 Unit 8: SINUSODIAL FUNCTIONS NAME: Sectin 8.: Understanding Angles p. 8 Hw can we measure things? Eamples: Length - meters (m) r ards (d.) Temperature - degrees Celsius ( C) r Fahrenheit (F) Hw

More information

IN TODAY communication networks such as the Internet

IN TODAY communication networks such as the Internet IEEE JOURAL O SELECTED AREAS I COMMUICATIOS, VOL. 7, O. 5, JUE 009 685 A Hybrid etwrk Cding Technique fr Single-Hp Wireless etwrks Tuan Tran, Thinh guyen, Member, IEEE, Bella Bse, Fellw, IEEE and Vindh

More information

RSB Service Bulletin No.. RSB--E4--003/12

RSB Service Bulletin No.. RSB--E4--003/12 RECOMMENDED SERVICE BULLETIN N.. RSB--E4--003/12 SSUUPPEERRSSEEDEESS SSBB N.. RRSSBB--EE44--000033//1111 1. BASIC INFORMATION 1.1. SUBJECT Sftware and Hardware Versins f the E4 Engine. 1.2. ENGINES AFFECTED

More information

Wireless Networks. On the Scaling Law of Network Coding Gains in

Wireless Networks. On the Scaling Law of Network Coding Gains in On the Scaling Law f Netwrk Cding Gains in Wireless Netwrks Ebad Ahmed, Atilla Eryilmaz, Muriel Medard, and Asuman E. Ozdaglar Labratry fr Infrmatin and Decisin Systems Massachusetts Institute f Technlgy

More information

Prof. Dr. Stefan Funken, Prof. Dr. Alexander Keller, Prof. Dr. Karsten Urban 11. Januar Scientific Computing Parallele Algorithmen

Prof. Dr. Stefan Funken, Prof. Dr. Alexander Keller, Prof. Dr. Karsten Urban 11. Januar Scientific Computing Parallele Algorithmen Prof. Dr. Stefan Funken, Prof. Dr. Alexander Keller, Prof. Dr. Karsten Urban 11. Januar 2007 Scientific Computing Parallele Algorithmen Page 2 Scientific Computing 11. Januar 2007 Funken / Keller / Urban

More information

DesignCon A New Reference Design Development Environment for JPEG 2000 Applications

DesignCon A New Reference Design Development Environment for JPEG 2000 Applications DesignCn 2003 System-n-Chip and ASIC Design Cnference Reference Design Paper A New Reference Design Develpment Envirnment fr JPEG 2000 Applicatins Authrs Bill Finch Vice President, CAST Inc. Warren Miller

More information

JPS Interoperability Solutions SNV-12 Voter Executive Outline

JPS Interoperability Solutions SNV-12 Voter Executive Outline JPS Interperability Slutins SNV-12 Vter Executive Outline December 1, 2017 Prepared by: JPS Interperability Slutins, Inc. 5800 Departure Drive Raleigh, NC 27616 (919) 790-1011 supprt@jpsinterp.cm sales@jpsinterp.cm

More information

Specification for a communicating Panelboard system to monitor, control and maintain LV electrical installations

Specification for a communicating Panelboard system to monitor, control and maintain LV electrical installations Specificatin fr a cmmunicating Panelbard system t mnitr, cntrl and maintain LV electrical installatins A system fr: - Mnitring the prtectin and cntrl devices in an electrical installatin and prviding the

More information

POLICY NUMBER: C539. Guidelines for the implementation of new services, walking distances to transit service and time periods of operation

POLICY NUMBER: C539. Guidelines for the implementation of new services, walking distances to transit service and time periods of operation Page 1 f 5 POLICY NUMBER: C539 REFERENCE: ADOPTED BY: City Cuncil 2 September 2009 SUPERSEDES: New PREPARED BY: Transprtatin Department DATE: 17 August 2009 TITLE: Transit Service Standards Plicy Statement:

More information

C&E Mobility Policy (Standard)

C&E Mobility Policy (Standard) C&E Mbility Plicy (Standard) Originated By: DOCUMENT # VERSION: ISSUE DATE: C&E Mbility Prgram Office ATT-CEM-14001 1 5/16/2014 Title: Upladed t VMT: Last Review Date: Next Review Due By: Raycap Equipment

More information

The Mathematics of the Rubik s Cube

The Mathematics of the Rubik s Cube In this lessn, students will explre the pssible number ways the pieces f a Rubik's Cube can be arranged, and still fit the criteria fr a Rubik's Cube. Clrs are riented in a set way, s sme pieces (such

More information