Synchronization in Digital Logic Circuits Synchronization: Why Care

Total Page:16

File Type:pdf, Size:1020Kb

Synchronization in Digital Logic Circuits Synchronization: Why Care Synchronization: Why care? Synchronization in Digital Digital Abstraction depends on all Logic Circuits signals in a system having a valid logic state Ryan Donohue Therefore, Digital Abstraction depends [email protected] on reliable synchronization of external events The Real World Metastability When asynchronous events enter your Real World does not respect the Digital synchronous system, they can cause bistables Abstraction! to go into metastable states $ Inputs from the Real World are usually asynchronous to your system clock Every real life bistable (such as a D-latch) has a metastable state Vout CLK VTC of '1' state $ Inputs that come from other series inverters synchronous systems are based 8 PORT D Q on a different system clock, which Gigabit Vin Vout Ethernet VTC of metastable feedback is typically asynchronous to your Switch state system clock 0 Vin Q D 1 Vout CLK '0' state Vin 1 Quick Metastability Review Mean Time Between Failures '0' state '1' state '0' state '1' state For a FF we can compute its MTBF, which is a figure of merit related to FF in 'normal' states FF in metastable state metastability. Once a FF goes metastable (due to a setup tr resolution time (time since clock edge) time violation, say) we can_t say when it will (tr/t) f sampling clock frequency MTBF(t ) = e assume a valid logic level or what level it r a asynchronous event frequency T fa t and T FF parameters might eventually assume o o The only thing we know is that the probability For a typical .25um ASIC library FF of a FF coming out of a metastable state For f = 100MHz, t = 2.3ns MTBF = 20.1 days increases exponentially with time r a = 1MHz t = 0.31ns To = 9.6as Synchronizer Requirements Single signal Synchronizer Traditional synchronizer Synchronizers must be designed to $ SIG is asynchronous, and META might go reduce the chances system failure due metastable from time to time $ However, as long as META resolves before the to metastability next clock period SIG1 should have valid logic Synchronizer requirements levels $ Place FFs close together to allow maximum time $ Reliable [high MTBF] for META to reslove CLK $ Low latency [works as quickly as possible] SIG META SIG1 D Q D Q SIG $ Low power/area impact META CLK SIG1 2 Single Synchronizer analysis Flip Flop design is important? MTBF of this system is roughly: Dynamic FFs not suitable for synchronizers since they have no regeneration (tr/t) (tr/t) For a typical .25um MTBF(t ) = e x e r ASIC library FF T fa T f o o CLK CLK f t = 2.3ns Q MTBF = 9.57x1010 years r For f = 100MHz, D t = 0.31ns a = 1MHz f f Age of Earth = 5x109 years T = 9.6as o D Q f Can increase MTBF by adding more series stages CMOS Dynamic FF TSFF (Svenson) SIG META SIG1 SIG2 D Q D Q D Q Special _SYNC_ FFs should be used for the primary synchronizer if available CLK SYNC Flip Flop Synchronization Pitfall SYNC Flip Flops are available in some ASIC libraries Never synchronize the same signal in multiple $ Better MTBF characteristics due to high gain in the places! Inconsistency will result! feedback path SIG1 $ Very large (5x regular FF) and very high power D Q D Q SYNC Vout VTC of SYNC FF '1' state series inverters CLK SIG META SIG1 VTC of SIG D Q D Q regular FF SYNC series inverters SIG2 D Q D Q SYNC CLK '0' state Vin CLK 3 Bus Synchronization Handshaking is the Answer Need a single point of synchronization for the Obvious approach is to use single signal entire bus synchronizers on each bit CLK WRONG! SIG[1:0] REQ SIG[0] SIG1[0] D Q D Q ACK SYNC CLK SIG 2 CLK SIG[0] REQ SIG[1] D Q D Q SIG[1] SIG1[1] Hand Hand D Q D Q SIG1[0] CLK2 shaking shaking SYNC FSM SIG1[1] ACK FSM Q D Q D CLK1 CLK CLK1 CLK2 Handshaking Rules Alternate Handshaking Scheme Sender outputs data and THEN asserts REQ Previous example is known as 4-phase handshaking Receiver latches data and THEN asserts ACK 2-phase (or edge based) handshaking is also Sender deasserts REQ, will not reassert it suitable until ACK deasserts $ Sender outputs data and THEN changes state of Receiver sees REQ deasserted, deasserts ACK REQ, will not change state of REQ again until after when ready to continue ACK changes state. $ Receiver latches data. Once receiver is ready for more it changes state of ACK. CLK SIG[1:0] 2-phase requires one bit of state be kept on REQ each side of transaction. Used when FFs are ACK inexpensive and reliable reset is available. 4 High Bandwidth solutions Abstract FIFO design Handshaking works great, but reduces Ideal dual port FIFO writes with one bandwidth at the clock crossing clock, reads with another interface because each piece of data FIFO storage provides buffering to help has many cycles of series handshaking. rate match load/unload frequency Correctly designed FIFOs can increase Flow control needed in case FIFO gets bandwidth across the interface and still totally full or totally empty maintain reliable communication DATA_IN DATA_OUT FULL EMPTY CLK1 CLK2 FIFO in detail FIFO pointer control FIFO of any significant FIFO is managed as a size is implemented using Dual Port FFh SRAM circular buffer using FEh an on-chip SRAM PORT1 PORT 2 pointers. SRAM must be dual- FULL WR_PTR RD_PTR EMPTY DATA_IN FIFO WR_DATA RD_DATA FIFO DATA_OUT First write will occur at WRITE ported for our design WRITE READ n bits of data LOGIC LOGIC PNTR address 00h. Next write n bits of data [have two independent n bits of data CLK1 CLK2 will occur at 01h. ports] n bits of data n bits of data READ After writing at FFh, next n bits of data We will use a write PNTR write will wrap to 00h. 01h pointer to determine the 00h write address, and a read Reads work the same way. pointer to determine the First read will occur at read address address 00h. 5 FIFO pointers and flow control FIFO in detail Generation of FULL and EMPTY signals. We have a problem! $ FIFO is FULL when write pointer catches read pointer Dual Port SRAM always @(posedge clk1) FULL <= (WR_PNTR == RD_PNTR) && ((OLD_WR_PNTR + 1 == RD_PNTR) || FULL) PORT1 PORT 2 $ FIFO is empty when read pointer catches write pointer FULL WR_PTR RD_PTR EMPTY DATA_IN FIFO WR_DATA RD_DATA FIFO DATA_OUT always @(posedge clk2) WRITE READ EMPTY <= (WR_PNTR == RD_PNTR) && ((OLD_RD_PNTR + 1 == WR_PNTR) || EMPTY) LOGIC LOGIC Write pointer and read pointer must never pass each other. CLK1 CLK2 $ Write passing read overwrites unread data To generate FULL/EMPTY conditions the write $ Read passing write re-reads invalid data logic needs to see the read pointer and the read logic needs to see the write pointer! Pointer Synchronization Pointer Synchronizer module bin2gray (bin,gray); Pointer is stored in gray code. Our pointers change in a very specific way parameter SIZE = 4; A standard single bit input [SIZE-1:0] bin; (when they change, they increment by 1) output [SIZE-1:0] gray; synchronizer is used on each reg [SIZE-1:0] gray; $ Applying a traditional two stage FF synchronizer on bit of PTR_OUT. At most one always @(bin) each bit of a binary pointer could cause a wildly gray = (bin >> 1) ^ bin; invalid pointer value to be produced bit changes per cycle! endmodule $ Gray coding the pointer value means at most one We can still do binary math to module gray2bin (gray,bin); bit will change per cycle _ we can only be _off by increment the pointer. parameter SIZE = 4; one_ input [SIZE-1:0] gray; output [SIZE-1:0] bin; Binary Gray CLK reg [SIZE-1:0] bin; 000 000 BIN[2:0] 011 100 001 001 1 integer i; 010 011 BIN_S[2:0] 011 010 011 XXX 100 bin2gray D Q PTR_OUT always @(gray) 100 110 GRAY[2:0] 010 110 gray2bin for (i=0; i<SIZE; i=i+1) 101 111 bin[i] = ^(gray >> i); 110 101 GRAY_S[2:0] 010 110 or 010 110 CLK 111 100 endmodule 6 Pointer Synchronizer pitfall Answer to pitfall PTR_IN PTR_OUT bin2gray D Q D Q gray2bin Write and read pointers need to be registered SYNC in gray code as shown on previous slide. CLK Don_t be tempted to cheat and register Combinational logic frequently contains pointers in binary. What_s wrong with the hazards at the output (non fully covered synchronizer shown below? Karnaugh map) Avoid this problem by using a registered PTR_IN PTR_OUT value of PTR_IN D Q D Q bin2gray gray2bin CLK SYNC PTR_IN[2:0] 011 100 CLK PTR_IN_G[2:0] 010 110 LOGIC HAZARD (unknown value) Pointer math pitfall Final Synchronizer FIFO When our pointer synchronizer goes Dual Port metastable our new pointer value may not be SRAM PORT1 PORT2 updated until one cycle later. FULL WR_PTR RD_PTR EMPTY DATA_IN FIFO WR_DATA RD_DATA FIFO DATA_OUT We need to be conservative when generating WRITE READ FULL and EMPTY signals to reflect this. LOGIC SYNC LOGIC CLK2 $ Typically FULL = 1 when WRITE catches READ. CLK1 SYNC CLK2 We need FULL = 1 when WRITE catches READ-1. CLK1 $ Typically EMPTY = 1 when READ catches WRITE. Works for any phase/frequency relationship We need EMPTY = 1 when READ catches WRITE-1. between CLK1 and CLK2 7 Mesosynchronous Designs Mesosynchronous Tradeoffs When two systems of bounded frequency Benefits to mesosynchronous designs need communicate, open loop $ Less synchronization circuitry synchronization circuits can be used (no ACK) $ Synchronizer might have lower latency vs.
Recommended publications
  • Synchronization Techniques for DOCSIS® Technology Specification
    Data-Over-Cable Service Interface Specifications Mobile Applications Synchronization Techniques for DOCSIS® Technology Specification CM-SP-SYNC-I02-210407 ISSUED Notice This DOCSIS specification is the result of a cooperative effort undertaken at the direction of Cable Television Laboratories, Inc. for the benefit of the cable industry and its customers. You may download, copy, distribute, and reference the documents herein only for the purpose of developing products or services in accordance with such documents, and educational use. Except as granted by CableLabs® in a separate written license agreement, no license is granted to modify the documents herein (except via the Engineering Change process), or to use, copy, modify or distribute the documents for any other purpose. This document may contain references to other documents not owned or controlled by CableLabs. Use and understanding of this document may require access to such other documents. Designing, manufacturing, distributing, using, selling, or servicing products, or providing services, based on this document may require intellectual property licenses from third parties for technology referenced in this document. To the extent this document contains or refers to documents of third parties, you agree to abide by the terms of any licenses associated with such third-party documents, including open source licenses, if any. Cable Television Laboratories, Inc. 2018–2021 CM-SP-SYNC-I02-210407 Data-Over-Cable Service Interface Specifications DISCLAIMER This document is furnished on an "AS IS" basis and neither CableLabs nor its members provides any representation or warranty, express or implied, regarding the accuracy, completeness, noninfringement, or fitness for a particular purpose of this document, or any document referenced herein.
    [Show full text]
  • Lecture 8: More Pipelining
    Overview n Getting Started with Lab 2 Lecture 8: n Just get a single pixel calculating at one time n Then look into filling your pipeline n Multipliers More Pipelining n Different options for pipelining: what do you need? n 3 Multipliers or put x*x, y*y, and x*y through sequentially? David Black-Schaffer n Pipelining [email protected] n If it won’t fit in one clock cycle you have to divide it EE183 Spring 2003 up so each stage will fit n The control logic must be designed with this in mind n Make sure you need it EE183 Lecture 8 - Slide 2 Public Service Announcement Logistics n n Xilinx Programmable World Lab 2 Prelab due Friday by 5pm n Tuesday, May 6th n http://www.xilinx.com/events/pw2003/index.htm n Guest lecture next Monday n Guest Lectures Synchronization and Metastability n Monday, April 28th These are critical for high-speed systems and Ryan Donohue on Metastability and anything where you’ll be connecting across Synchronization clock domains. n Wednesday, May 7th Gary Spivey on ASIC & FPGA Design for Speed n The content of these lectures will be on the Quiz SHOW UP! (please) EE183 Lecture 8 - Slide 3 EE183 Lecture 8 - Slide 4 1 Easier FSMs Data Path always @(button or current_state) Do this if nothing else is begin Xn Yn write_en <= 0; specified. Mandel X Julia X Mandel X Julia Y output <= 1; next_state <= `START_STATE; Mux * * * Mux case(current_state) Note that the else is not `START_STATE: specified. begin write_en <= 1; - <<1 + if (button) next_state <= `WAIT_STATE; What is the next state? end What do we+ do if the+ wholeIf>4
    [Show full text]
  • Performance Analysis of Audio and Video Synchronization Using Spreaded Code Delay Measurement Technique
    ISSN: 0976-9102 (ONLINE) ICTACT JOURNAL ON IMAGE AND VIDEO PROCESSING, AUGUST 2018, VOLUME: 09, ISSUE: 01 DOI: 10.21917/ijivp.2018.0254 PERFORMANCE ANALYSIS OF AUDIO AND VIDEO SYNCHRONIZATION USING SPREADED CODE DELAY MEASUREMENT TECHNIQUE A. Thenmozhi and P. Kannan Department of Electronics and Communication Engineering, Anna University-Chennai, India Abstract video streams for necessarily maintaining synchronization The audio and video synchronization plays an important role in speech between the audio and video signals. During transmission, the recognition and multimedia communication. The audio-video sync is a audio and video streams are recorded by combining audio and quite significant problem in live video conferencing. It is due to use of video signatures into a synchronization signature. At reception, various hardware components which introduces variable delay and the equivalent signatures are extracted and compared with the software environments. The synchronization loss between audio and reference signature using a hamming distance correlation to video causes viewers not to enjoy the program and decreases the estimate the relative misalignment between the audio and video effectiveness of the programs. The objective of the synchronization is used to preserve the temporal alignment between the audio and video streams. Finally, the calculated delays are recognized to correct signals. This paper proposes the audio-video synchronization using the relative temporal misalignment between the audio and video spreading codes delay measurement technique. The performance of the streams. The synchronization efficiency is high for both audio and proposed method made on home database and achieves 99% video streams. It is applicable for multimedia and networking synchronization efficiency. The audio-visual signature technique technology.
    [Show full text]
  • Timecoder Pro Is Indata's Popular Video and Transcript
    TimeCoder Pro is inData’s popular video and transcript synchronization software. Widely used by legal videographers, court reporters, and law firms, the software automatically synchronizes transcripts and video depositions using advanced speech and pattern recognition technologies. Imagine... in just an hour, you can synchronize up to 20 hours of deposition testimony! Not only is TimeCoder Pro faster than ever before, but it also gives you full control over your synchronization projects. TIMECODER PRO PUTS YOU IN COMPLETE CONTROL OF THE SYNCING PROCESS Control – process transcripts in-house. No data goes out of your office or offshore and you’ll always know the status of a sync job Complete Job History – available online for all jobs processed, including time and accuracy statistics Marketing Tools – create client loyalty and reinforce your branding by distributing videos on a DepoView DVD. You can even personalize the main menu of DepoView DVD with your company logo and contact information. Also, take advantage of inData’s customizable brochures and mailers available exclusively to TimeCoder Pro clients. “Having spent the past 2 months “The RapidSync feature in TimeCoder running hundreds of hours of vid- Pro is amazing!!! I synchronized a 9 eo through TimeCoder Pro 5, I can hour deposition with minimal QC effort say without question that you have in 45 minutes.” a true WINNER on your hands.” Richard E. Katz, Esq. Mark Fowler President/CEO Litigation Support & Multimedia Specialist Katz Consulting Group, LLC Whetstone Myers Perkins & Young 1 www.indatacorp.com | 800.828.8292 Multiple Sync Options With TimeCoder Pro, you have multiple synchronization options.
    [Show full text]
  • The Use of Music in the Cinematic Experience
    Western Kentucky University TopSCHOLAR® Honors College Capstone Experience/Thesis Honors College at WKU Projects Spring 2019 The seU of Music in the Cinematic Experience Sarah Schulte Western Kentucky University, [email protected] Follow this and additional works at: https://digitalcommons.wku.edu/stu_hon_theses Part of the Film and Media Studies Commons, Music Commons, and the Psychology Commons Recommended Citation Schulte, Sarah, "The sU e of Music in the Cinematic Experience" (2019). Honors College Capstone Experience/Thesis Projects. Paper 780. https://digitalcommons.wku.edu/stu_hon_theses/780 This Thesis is brought to you for free and open access by TopSCHOLAR®. It has been accepted for inclusion in Honors College Capstone Experience/ Thesis Projects by an authorized administrator of TopSCHOLAR®. For more information, please contact [email protected]. SOUND AND EMOTION: THE USE OF MUSIC IN THE CINEMATIC EXPERIENCE A Capstone Project Presented in Partial Fulfillment of the Requirements for the Degree Bachelor of Arts with Honors College Graduate Distinction at Western Kentucky Univeristy By Sarah M. Schulte May 2019 ***** CE/T Committee: Professor Matthew Herman, Advisor Professor Ted Hovet Ms. Siera Bramschreiber Copyright by Sarah M. Schulte 2019 Dedicated to my family and friends ACKNOWLEDGEMENTS This project would not have been possible without the help and support of so many people. I am incredibly grateful to my faculty advisor, Dr. Matthew Herman. Without your wisdom on the intricacies of composition and your constant encouragement, this project would not have been possible. To Dr. Ted Hovet, thank you for believing in this project from the start. I could not have done it without your reassurance and guidance.
    [Show full text]
  • Perception of Cuts in Different Editing Styles Celia Andreu-Sánchez; Miguel-Ángel Martín-Pascual
    Perception of cuts in different editing styles Celia Andreu-Sánchez; Miguel-Ángel Martín-Pascual Nota: Este artículo se puede leer en español en: http://www.profesionaldelainformacion.com/contenidos/2021/mar/andreu-martin_es.pdf How to cite this article: Andreu-Sánchez, Celia; Martín-Pascual, Miguel-Ángel (2021). “Perception of cuts in different editing styles”. Profesional de la información, v. 30, n. 2, e300206. https://doi.org/10.3145/epi.2021.mar.06 Manuscript received on 18th May 2020 Accepted on 12th July 2020 Celia Andreu-Sánchez * Miguel-Ángel Martín-Pascual https://orcid.org/0000-0001-9845-8957 https://orcid.org/0000-0002-5610-5691 Serra Húnter Fellow Technological Innovation IRTVE Universitat Autònoma de Barcelona Instituto RTVE (Barcelona) Dep. de Com. Audiovisual i Publicitat Corporación Radio Televisión Española Neuro-Com Research Group Universitat Autònoma de Barcelona Edifici I. Campus Bellaterra. Dep. de Com. Audiovisual i Publicitat 08193 Cerdanyola del Vallès (Barcelona), Spain Neuro-Com Research Group [email protected] [email protected] Abstract The goal of this work is to explain how the cuts and their insertion in different editing styles influence the attention of viewers. The starting hypothesis is that viewers’ response to cuts varies depending on whether they watch a movie with a classical versus a messy or chaotic editing style. To undertake this investigation, we created three videos with the same narrative content and duration but different editing styles. One video was a fixed one-shot movie. Another video followed a classical editing style, based on the rules of classic Hollywood movies, according to David Bordwell’s studies.
    [Show full text]
  • Motion-Based Video Synchronization
    ActionSnapping: Motion-based Video Synchronization Jean-Charles Bazin and Alexander Sorkine-Hornung Disney Research Abstract. Video synchronization is a fundamental step for many appli- cations in computer vision, ranging from video morphing to motion anal- ysis. We present a novel method for synchronizing action videos where a similar action is performed by different people at different times and different locations with different local speed changes, e.g., as in sports like weightlifting, baseball pitch, or dance. Our approach extends the popular \snapping" tool of video editing software and allows users to automatically snap action videos together in a timeline based on their content. Since the action can take place at different locations, exist- ing appearance-based methods are not appropriate. Our approach lever- ages motion information, and computes a nonlinear synchronization of the input videos to establish frame-to-frame temporal correspondences. We demonstrate our approach can be applied for video synchronization, video annotation, and action snapshots. Our approach has been success- fully evaluated with ground truth data and a user study. 1 Introduction Video synchronization aims to temporally align a set of input videos. It is at the core of a wide range of applications such as 3D reconstruction from multi- ple cameras [20], video morphing [27], facial performance manipulation [6, 10], and spatial compositing [44]. When several cameras are simultaneously used to acquire multiple viewpoint shots of a scene, synchronization can be trivially achieved using timecode information or camera triggers. However this approach is usually only available in professional settings. Alternatively, videos can be synchronized by computing a (fixed) time offset from the recorded audio sig- nals [20].
    [Show full text]
  • Virtual Video Editing in Interactive Multimedia Applications
    SPECIAL SECTION Edward A. Fox Guest Editor Virtual Video Editing in Interactive Multimedia Applications Drawing examples from four interrelated sets of multimedia tools and applications under development at MIT, the authors examine the role of digitized video in the areas of entertainment, learning, research, and communication. Wendy E. Mackay and Glorianna Davenport Early experiments in interactive video included surro- video data format might affect these kinds of informa- gate travel, trainin);, electronic books, point-of-purchase tion environments in the future. sales, and arcade g;tme scenarios. Granularity, inter- ruptability, and lixrited look ahead were quickly identi- ANALOG VIDEO EDITING fied as generic attributes of the medium [l]. Most early One of the most salient aspects of interactive video applications restric:ed the user’s interaction with the applications is the ability of the programmer or the video to traveling along paths predetermined by the viewer to reconfigure [lo] video playback, preferably author of the program. Recent work has favored a more in real time. The user must be able to order video constructivist approach, increasing the level of interac- sequences and the system must be able to remember tivity ‘by allowing L.sers to build, annotate, and modify and display them, even if they are not physically adja- their own environnlents. cent to each other. It is useful to briefly review the Tod.ay’s multitasl:ing workstations can digitize and process of traditional analog video editing in order to display video in reel-time in one or more windows on understand both its influence on computer-based video the screen.
    [Show full text]
  • CHAPTER 3. Film Sound Preservation: Early Sound Systems
    CHAPTER 3. Film Sound Preservation: Early Sound Systems 3.1 Film Sound Preservation In the introduction I argued that the nature of film sound consists of different dimensions: the textual and material dimensions, the human and technological dimensions, the institutional, experiential and memorial dimensions. Each of these should be taken into account in preservation and presentation practices. Some of these dimensions were investigated in the first two chapters, where I outlined a set of key concepts related to recorded sound that I derived from social and artistic sound practices as well as media theories: the noise of the material carriers and technological devices, cleaned and cracked sounds, the notion of soundscape and high fidelity, and the concepts of media memory and audiovisual trace. In the following chapters I will further analyze the nature of film sound and its core dimensions beginning with the analysis of film sound preservation and presentation case studies. In this chapter, I examine preservation and restoration projects of films where the issue of sound is particularly relevant, while chapter four analyzes the work of film heritage institutions with respect to film sound presentation. The case studies discussed here are prompted by the following questions: how can we preserve and restore film sound materials? What are the different approaches to film sound preservation and restoration? What are the problems and defects of different film sound carriers and apparatuses? Which kind of actions can be taken to solve those problems? How can the actions undertaken to preserve film sound be recorded and documented? How is it possible to exhibit and display film sound in present-day theatres? The answers to these questions as provided by the case studies will contribute to the definition of the nature of film sound, which will be elaborated in chapter five.
    [Show full text]
  • Modeling Crosscutting Services with UML Sequence Diagrams
    Modeling Crosscutting Services with UML Sequence Diagrams Martin Deubler, Michael Meisinger, Sabine Rittmann Ingolf Krüger Technische Universität München Department of Computer Science Boltzmannstr. 3 University of California, San Diego 85748 München, Germany La Jolla, CA 92093-0114, USA {deubler, meisinge, [email protected] rittmann}@in.tum.de Abstract. Current software systems increasingly consist of distributed interact- ing components. The use of web services and similar middleware technologies strongly fosters such architectures. The complexity resulting from a high de- gree of interaction between distributed components – that we face with web service orchestration for example – poses severe problems. A promising ap- proach to handle this intricacy is service-oriented development; in particular with a domain-unspecific service notion based on interaction patterns. Here, a service is defined by the interplay of distributed system entities, which can be modeled using UML Sequence Diagrams. However, we often face functionality that affects or is spanned across the behavior of other services; a similar con- cept to aspects in Aspect-Oriented Programming. In the service-oriented world, such aspects form crosscutting services. In this paper we show how to model those; we introduce aspect-oriented modeling techniques for UML Sequence Diagrams and show their usefulness by means of a running example. 1 Introduction Today’s software systems get increasingly complex. Complexity is observed in all software application domains: In business information systems, technical and admin- istrative systems, as well as in embedded systems such as in avionics, automotive and telecommunications. Often, major sources of the complexity are interactions between system components. Current software architectures increasingly use distributed com- ponents as for instance seen when using web services [11] and service-oriented archi- tectures [7].
    [Show full text]
  • Cross-Cutting Themes from Tasks 1, 2 and 3: Principles and Guidelines for an Overarching Governance Framework
    Ref. Ares(2020)4052081 - 31/07/2020 D4.4 Cross-cutting themes from tasks 1, 2 and 3: principles and guidelines for an overarching governance framework WP4 Governance and technologies: interrelations and opportunities Grant Agreement n° 822735, Research and Innovation Action This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement nº 822735. This document reflects only the author’s view and the Commission is not responsible for any use that may be made of the information it contains. TRIGGER TRends in Global Governance and Europe's Role Deliverable number: Deliverable name: D4.4 Cross-cutting themes from tasks 1, 2 and 3: principles and guidelines for an overarching governance framework WP4 Governance and technologies : interrelations and WP / WP number: opportunities 31.07.20 Delivery due date: 31.07.20 Actual date of submission: Public Dissemination level: CEPS Lead beneficiary: Andrea Renda Contributor(s): D4.4 Cross-cutting themes from tasks 1, 2 and 3: principles and guidelines for an overarching governance framework Changes with respect to the DoA - Dissemination and uptake Public Evidence of accomplishment Report 1 Table of Contents 1. Anatomy of the digital transformation ....................................................................................... 5 1.1. The ICT ecosystem: foundational elements .................................................................. 6 1.2. The evolving ICT ecosystem: main trends ...................................................................
    [Show full text]
  • Random Talk: Random Walk and Synchronizability in a Moving Neighborhood Network$
    Physica D 224 (2006) 102–113 www.elsevier.com/locate/physd Random talk: Random walk and synchronizability in a moving neighborhood network$ Maurizio Porfiria, Daniel J. Stilwellb,∗, Erik M. Bolltc, Joseph D. Skufcac a Department of Mechanical, Aerospace and Manufacturing Engineering, Polytechnic University, Brooklyn, NY 11201, USA b The Bradley Department of Electrical and Computer Engineering, Virginia Polytechnic Institute and State University, Blacksburg, VA 24061, USA c Department of Mathematics and Computer Science, Clarkson University, Postdam, NY 13699-5815, USA Available online 7 November 2006 Abstract We examine the synchronization problem for a group of dynamic agents that communicate via a moving neighborhood network. Each agent is modeled as a random walker in a finite lattice and is equipped with an oscillator. The communication network topology changes randomly and is dictated by the agents’ locations in the lattice. Information sharing (talking) is possible only for geographically neighboring agents. This complex system is a time-varying jump nonlinear system. We introduce the concept of ’long-time expected communication network’, defined as the ergodic limit of a stochastic time-varying network. We show that if the long-time expected network supports synchronization, then so does the stochastic network when the agents diffuse sufficiently quickly in the lattice. c 2006 Elsevier B.V. All rights reserved. Keywords: Synchronization; Random walk; Stochastic stability; Graph; Fast switching 1. Introduction for the analysis of [11–18]. However, in many real-world complex networks, such as biological, epidemiological, and Over the past few years, synchronization in complex social networks, it is reasonable to assume that the coupling networks has attracted a massive research attention, see strengths and even the network topologies can evolve over time.
    [Show full text]