US20090158075A1 - Synchronization of independent clocks - Google Patents

Synchronization of independent clocks Download PDF

Info

Publication number
US20090158075A1
US20090158075A1 US12/249,082 US24908208A US2009158075A1 US 20090158075 A1 US20090158075 A1 US 20090158075A1 US 24908208 A US24908208 A US 24908208A US 2009158075 A1 US2009158075 A1 US 2009158075A1
Authority
US
United States
Prior art keywords
events
timestamps
event
constraints
clocks
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US12/249,082
Inventor
Marina Biberstein
Yuval Harel
Andre Heilper
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
International Business Machines Corp
Original Assignee
International Business Machines Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by International Business Machines Corp filed Critical International Business Machines Corp
Priority to US12/249,082 priority Critical patent/US20090158075A1/en
Publication of US20090158075A1 publication Critical patent/US20090158075A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04JMULTIPLEX COMMUNICATION
    • H04J3/00Time-division multiplex systems
    • H04J3/02Details
    • H04J3/06Synchronising arrangements
    • H04J3/0635Clock or time synchronisation in a network
    • H04J3/0638Clock or time synchronisation among nodes; Internode synchronisation
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F1/00Details not covered by groups G06F3/00 - G06F13/00 and G06F21/00
    • G06F1/04Generating or distributing clock signals or signals derived directly therefrom
    • G06F1/12Synchronisation of different clock signals provided by a plurality of clock generators
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F1/00Details not covered by groups G06F3/00 - G06F13/00 and G06F21/00
    • G06F1/04Generating or distributing clock signals or signals derived directly therefrom
    • G06F1/14Time supervision arrangements, e.g. real time clock

Abstract

A system and method to synchronize independent local clocks in multi-core processing system are disclosed. A shared counter or a shared memory/file is provided to establish a partial happened-before relationship (e1<e2 in the happened-before order if we know that the event e1 happened before the event e2) and a synchronizer device is utilized to generate a global time of events in threads or processes. The synchronizer device estimates each clock's start time and approximates elapsed time between events in threads or processes by executing an all-pair shortest-path algorithm

Description

    CROSS-REFERENCE TO RELATED APPLICATIONS
  • This application is a U.S. continuation application which is filed under 35 U.S.C. 111(a) and claims the benefit under 35 U.S.C. 120 of an allowed U.S. patent application (U.S. patent application Ser. No. 11/958,918), filed on Dec. 18, 2007, the entire contents of which are hereby incorporated by reference.
  • BACKGROUND OF INVENTION
  • 1. Field or invention
  • The present invention relates to a clock synchronization system and method in a multi-core processing system.
  • 2. Description of the Prior Art
  • A problem arises, when tracing programs that run on a multi-core machine having a plurality of processing cores where clocks on each core are not synchronized. This absence of consistent time across the processes complicates program debugging, performance analysis, and visualization. For example, the problem arises in the following situations:
  • At runtime, at each point, each process has access to a clock, but not all processes have access to the same clock.
  • Processes may switch to a different clock without being aware of it, though the information about the switch will be available elsewhere in the system. Some cores cannot run background processes. A partial “happened-before” order can be established between events timestamped by different clocks. (e1<e2 in the happened-before order, if we know that event e1 happened before the event e2.)
  • In the above situations, data generated on different cores comes timestamped with independent timestamps: if event E1 is timestamped with time t1, and event E2, coming from a different core, is timestamped with t2, by comparing t1 and t2, one cannot determine which event occurred first and how much time later the second event occur.
  • The problem of synchronizing clocks has been addressed by Lamport's Virtual Time (“Time, Clocks, and the Ordering of Events in a Distributed Systems”, By L. Lamport, Communications of the ACM 21(7), 1978) and Network Time. In the Lamport's Virtual Time, event ordering is derived from the semantics of events (send must occur beofore recieve). But the distance (elapsed times) between events are defined arbitrarily in Lamport's algorithm. Therefore, it is not sufficient for performance analysis and visualization. The Network Time protocol is an example prior art algorithm used to synchronize clocks running on different machines as an on-line process. This protocol is based on a server device sending out time signals caught by background processes running on the client nodes. Therefore, it cannot be used with the cores that cannot run background processes.
  • It would be desirable to provide a system and a method for synchronizing for independent clocks that overcomes addressed drawbacks.
  • SUMMARY OF THE INVENTION
  • The above disadvantages or drawbacks have been eliminated by the present invention, which includes a processing system to perform synchronization of independent local clocks comprising:
  • a multi-core processor having a plurality of processing cores, the multi-core processor having processes running on the processing cores, wherein each process is executed based on each different core, the processing cores having local clocks;
  • an event tracing component to record events occurring on the each core, to record timestamps of events according to the local clocks, and to record event data to establish a partial happened-before relationship of the events across the processing cores; and
  • an off-line clock synchronizer to establish constraints on the start times of the clocks based on the timestamps and the partial happened-before relationship, to execute an all-pairs shortest-path algorithm on the constraints, while repeatedly relaxing the constraints until no negative cycles is found, to calculate transitive closure of the constraints to improve the constraints, to calculate elapsed times between local clocks' start times based on the transitive closure of the constraints, to assign global timestamps to local clocks' start times based on the elapsed times, and to assign global timestamps to the events based on The global timestamps of the clocks' start times and the timestamps of the events,
  • wherein the assigned global timestamps of the clocks' start times and the assigned global timestamps of the events are used to facilitate one or more of: program debugging, performance analysis and visualization of the processing system.
  • It is therefore a primary object of the present invention to use a resource (in the case of Cell processor, the main memory) that can be accessed with a low overhead by all monitored nodes. The resource is used to establish a partial happened-before relation between events. Alternatively, such a relation may be established, for example, from knowledge of the event semantics (e.g., a message must be sent before it can be received). This relation is used to derive bounds on relative clock start times. Those bounds are incrementally refined until a fixed point is reached, and then used to generate a synchronized timestamps. The precision of this timestamp depends on the temporal proximity of the events, which are used for synchronization.
  • The proposed system and method do not require cooperation at runtime between different nodes, making it applicable to non-preemptive environment such as Cell processor's SPE (Synergistic Processing Element: a type of Cell processor's cores). It has very low runtime overhead and code space requirements. It is completely offline, so that the time synchronization overhead happens completely during post-processing. It can recover from errors due to imprecision in local time measurements and differences in the cost of accessing the synchronizing resources.
  • These and other objects and advantages of the present invention will become more apparent from the detailed description thereof taken with the accompanying drawing.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 is a multi-core processing system that utilizes the clock synchronization scheme of the present invention
  • FIG. 2 depicts an example scenario of clock start constraints for two processors for processing according to the present invention.
  • FIG. 3 is a flow chart depicting a trace (timestamp and happened-before relationship) generation diagram in accordance with the invention.
  • FIG. 4 is a flow chart depicting a trace processing diagram in accordance with the invention.
  • DETAILED DESCRIPTION
  • As an example embodiment in which the present invention is implemented is a multi-core processing system shown in FIG. 1. FIG. 1 shows three processing cores, 130, 140, and 150, executing processes that generate events. However, the present invention is not limited to three cores, but it can be a plurality of cores. Each core, e.g. 130, 140, or 150, receives each different local clock and includes an event tracing component, e.g., 170, 180, or 190. The event tracing component records events occurring each core in an event trace 120 and records event data, e.g. a shared counter value (the shared counter will be described later.) in event trace 120. Timestamps are recorded in event trace 120 by the event tracing components in the cores for each event, based on the clock that is used at the time at the core where the event occurred. The events generated include, but are not limited to, a library event such as a call to a library function. Anything that affects program behavior/status or system state can be considered as an event. A shared resource, e.g, a shared counter, shared memory, or shared file, is an implementation choice for recording a partial “happened-before” relationship. The shared event counter 160 accessed by event tracing components stamps each received event with event identifier (ID) to establish partial “happened-before” relationship. In another embodiment, it is possible to record all the events into same buffer in the shared memory or file to establish partial “happened-before” relationship. The clock synchronizer 110 reads event data, e.g. a shared counter value, from the event trace 120, estimates each local clock start time and approximates elapsed time between the events using an all-pairs shortest-path algorithm such as Floyd-Warshall algorithm, as will be explained in greater detail below. The clock synchronizer 110 can run on the multi-core processor 200 or on a different computer, e.g., 100.
  • Considering an example scenario shown in FIG. 2, there is depicted in the top part 5 of the FIG. 2, a first horizontal line representing the actual (runtime) time axis, growing from left to right. R1, which is associated with a first local clock, shows start time of R clock, and R2 shows the time of an event stamped with an R-clock timestamp. Similarly, B1, which is associated with a second local clock, indicates start time of B clock. B2 indicates the time of an event logged with that a B-clock timestamp.
  • In the bottom part 6 of FIG. 2, the horizontal lines are time axes, again growing from left to right. The location of the timestamp recordation is the data based on timestamps in the log. However, since it is known that R2 event occurred before B2, it is known that B2 timestamp must be shifted to the right at least by the length of the dotted vector C.
  • FIGS. 3-4 is a flow chart depicting the methodology of the present invention. Especially, FIG. 3 shows the trace (timestamp and happened-before relationship) generation for each event. FIG. 4 shows the trace processing. At step 12 in FIG. 3, the core, where the event occurred, records each event's local timestamp according to its local clock. At step 14, a shared counter stamps each event with event ID to establish happened-before relationship of the events. Cores record values of the shared counter, which is incremented automatically. As another embodiment, the events are recorded in a single buffer in a shared memory to establish happened-before relationship of the events. Step 14 is optional implementation. Step 14 can be bypassed for some events. At step 16, all the event data is recorded in event trace 120. The step 12 to 16 is repeated for each event to record timestamp and the happened-before relationship.
  • Based on the local timestamps and recorded happened-before relationship, step 20 in FIG. 4 computes an initial set of constraints on clocks' relative start times. At step 22, an all-pairs shortest-path algorithm improves those constraints on clocks' relative start times by computer the constraints' transitive closure. If a negative cycle is found while running the all-pairs shortest-path algorithm, at step 26, the constraints are relaxed by adding |Weight of the negative loop|/2 (If there are several negative cycles, take the one with largest absolute value of weight) to all constraints. If the all-pair shortest-path algorithm successfully completes, it generates an output, which is a constraint set that is the transitive closure of the original constraints. Based on the output, at step 28, global timestamps are assigned to clocks' start times so that all the constraints are satisfied. At step 30, based on the local timestamps of events and the global timestamps of clocks start times, global timestamps are assigned to events.
  • For some events, the partial “happened-before” relationships may not exist. For example, if a buffer in a shared memory is used to record order of events, it may happen that some events are written to a different buffer. Then, ids of clocks and local timestamps of events exist, but the partial “happened-before” relationships do not exist. Such events that did not establish the partial “happened-before” relationships do not derive constraints on clock's relative start time. In other word, steps 20-28 in FIG. 4 are skipped for such events. Step 30 in FIG. 4 is performed based on such events' clock ids and local timestamps of the events.
  • In operation, the clock synchronizer of the present invention receives a set of event records E such that for each event record e in the set E the following information available:
    • id(e)—unique event id. When an event occurs and is being recorded, it uses a shared resource (e.g. a shared memory) to acquire this id. There are several possible implementations for shared id mechanism: for example, by reserving location in a shared log buffer, or using a shared counter. The only requirement from the shared id mechanism is that if e1 acquires its id before e2, then id(e1)<id(e2). Without loss of generality, it is assumed that the ids of events in E are 0, 1, . . . , |E|−1
    • clock(e)—id of the clock used to timestamp the acquisition of id by e. Without loss of generality, it is assumed that clock ids are 0, 1, . . . , C.
    • time(e)—time (according to clock(e)) at which id(e) was acquired. Without loss of generality, it is assumed that (1) each clock's time is monotonically increasing, i.e., if clock(e)==clock(e2) and id(e1)<id(e2), then time(e1)<time(e2), and (2) each clock's time starts at 0, i.e., if e is the first event with a given clock (clock(e1)==clock(e)
      Figure US20090158075A1-20090618-P00001
      id(e1)>id(e)), then time(e)=0.
  • The goal is to map the events on a global time axis, i.e., to provide a function globaltime(e) such that
    • if clock(e1)==clock(e2),
    • then globaltime(e)−globaltime(e2)=time(e1)−time(e2)
    • if id(e1)<id(e2),
    • then globaltime(e1)<globaltime(e2)
  • The algorithm implemented by the clock synchronizer performs as follows:
    • Use the <relationship (e1<e2, if e1 occurred before e2) and timestamps to compute constraints on clock start times
    • Improve upper bounds on clock start times using an all-pairs shortest path algorithm such as Floyd-Warshall (FW). It is understood that other all-pairs shortest path algorithms could be used instead of Floyd-Warshall.
    • If no solution exists (negative cycles in FW), compute clock imprecision, correct for it and re-compute the bounds
    • Generate a solution
  • To generalize the algorithm, let T(i) denote the globaltime value of the first event with clock i. The method and system to perform clock synchronization computes T(i)'s as follows:
    • Build a (C+1)×(C+1) “bounds matrix” U. Each entry of U will hold an upper bound on the difference between corresponding clock's globaltime values: U(i,j)=T(i)−T(j). U is constructed as follows:
    • Initially, ail U(i,j) are set to infinity
    • For each e1, e2 in E such that id(e1)=id(e2)−1 and clock(e1) !=clock(e2), set U(clock(e1), clock(e2))=min(U(clock(e1), clock(e2)), time(e2)−time(e1))
    • Next, the bounds in U are transitively improved, using the fact that if U(i,j)=T(i)−T(j) and U(j,k)=T(j)−T(k), then U(i,j)+U(j,k)=T(i)−T(j)+T(j)−T(k)=T(j)−T(k), and hence we can improve U(i,k) by setting U(i,k)=min(j,k), U(i,j)+(j,k)). An efficient way to compute this is using the Floyd-Warshall algorithm, by building a directed weighted clique graph size (C+1) with U as the matrix of edge weights, computing the shortest paths, and updating U(i,j) to the weight of the shortest path from i to j.
    • The cases where Floyd-Warshall fails producing negative values on the diagonal) are those where time measurements do not agree with the order of ids, due to imprecision in measuring the time, or due to variation in shared resource access time. Matrix with minimal diagonal value −d reveals measurement imprecision of ±d/2. By adding d/2 to all the entries of U and then running Floyd-Warshall on the resulting matrix, we obtain the solution to the original problem with the best precision allowed by available data.
    • Finally, the earliest solution is computed from the refined matrix U using T(0)=0, T(i)=max[T(j)−U(j,i)|j<i}. More generally, once for some subset of indices I=[0, 1, . . . , C}, the global times {T(i)|i in I} are already selected, then for an index j not in I the value of T(j) can be anywhere between max(T(i)−U(i,j)|i in I} and min {T(i)+U(j,i)|i in
    • Having computed the T(i)s, global times are assigned to all the events as globaltime (e)=time (e)+T(clock(e)), where globaltime(e) is a global time of an event, time(e) is a local time (according to clock (e)) at which local timestamp of the event acquired, T(clock(e)) is a global time of first event with the clock(e).
  • Although the embodiments of the present invention have been described in detail, it should be understood that various changes and substitutions can be made therein without departing from spirit and scope of the inventions as defined by the appended claims. Variations described for the present invention can be realized in any combination desirable for each particular application. Thus particular limitations, and/or embodiment application need not be used for all applications. Also, not all limitations need be implemented in methods, systems and/or apparatus including one or more concepts of the present invention.
  • The present invention can be realized in hardware, software, or a combination of hardware and software. A typical combination of hardware and software could be a general purpose computer system with a computer program that, when being loaded and executed, controls the computer system such that it carries out the methods described herein. The present invention can also be embedded in a computer program product, which comprises all the features enabling the implementation of the methods described herein, and which—when loaded in a computer system—is able to carry out these methods.
  • Computer program means or computer program in the present context include any expression, in any language, code or notation, of a set of instructions intended to cause a system having an information processing capability to perform a particular function either directly or after conversion to another language, code or notation, and/or reproduction in a different material form.
  • Thus the invention includes an article of manufacture which comprises a computer usable medium having computer readable program code means embodied therein for causing a function described above. The computer readable program code means in the article of manufacture comprises computer readable program code means for causing a computer to effect the steps of a method of this invention. Similarly, the present invention may be implemented as a computer program product comprising a computer usable medium having computer readable program code means embodied therein for causing a function described above. The computer readable program code means in the computer program product comprising computer readable program code means for causing a computer to effect one or more functions of this invention. Furthermore, the present invention may be implemented as a program storage device readable by machine, tangibly embodying a program of instructions executable by the machine to perform method steps for causing one or more functions of this invention.
  • It is noted that the foregoing has outlined some of the more pertinent objects and embodiments of the present invention. This invention may be used for many applications. Thus, although the description is made for particular arrangements and methods, the intent and concept of the invention is suitable and applicable to other arrangements and applications. It will be clear to those skilled in the art that modifications to the disclosed embodiments can be effected without departing from the spirit and scope of the invention. The described embodiments ought to be construed to be merely illustrative of some of the more prominent features and applications of the invention. Other beneficial results can be realized by applying the disclosed invention in a different manner or modifying the invention in ways known to those familiar with the art.

Claims (1)

1. A processing system to perform synchronization of independent local clocks comprising:
a multi-core processor having a plurality of processing cores, said multi-core processor having processes running on said processing cores, wherein each process is executed based on each different core, said processing cores having local clocks;
an event tracing component to record events occurring on said each core, to record timestamps of events according to said local clocks, and to record event data to establish a partial happened-before relationship of said events across said processing cores; and
an off-line clock synchronizer to establish constraints on the start times of said clocks based on the timestamps and the partial happened-before relationship, to execute an all-pairs shortest-path algorithm on said constraints, while repeatedly relaxing said constraints until no negative cycles is found, to calculate transitive closure of said constraints to improve said constraints, to calculate elapsed times between local clocks' start times based on said transitive closure of said constraints, to assign global timestamps to local clocks' start times based on said elapsed times, and to assign global timestamps to said events based on said global timestamps of said clocks' start times and said timestamps of said events,
wherein said assigned global timestamps of said clocks' start times and said assigned global timestamps of said events are used to facilitate one or more of: program debugging, performance analysis and visualization of said processing system.
US12/249,082 2007-12-18 2008-10-10 Synchronization of independent clocks Abandoned US20090158075A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US12/249,082 US20090158075A1 (en) 2007-12-18 2008-10-10 Synchronization of independent clocks

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US11/958,918 US7453910B1 (en) 2007-12-18 2007-12-18 Synchronization of independent clocks
US12/249,082 US20090158075A1 (en) 2007-12-18 2008-10-10 Synchronization of independent clocks

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US11/958,918 Continuation US7453910B1 (en) 2007-12-18 2007-12-18 Synchronization of independent clocks

Publications (1)

Publication Number Publication Date
US20090158075A1 true US20090158075A1 (en) 2009-06-18

Family

ID=40000783

Family Applications (2)

Application Number Title Priority Date Filing Date
US11/958,918 Expired - Fee Related US7453910B1 (en) 2007-12-18 2007-12-18 Synchronization of independent clocks
US12/249,082 Abandoned US20090158075A1 (en) 2007-12-18 2008-10-10 Synchronization of independent clocks

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US11/958,918 Expired - Fee Related US7453910B1 (en) 2007-12-18 2007-12-18 Synchronization of independent clocks

Country Status (1)

Country Link
US (2) US7453910B1 (en)

Cited By (21)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20120254468A1 (en) * 2011-03-31 2012-10-04 Microsoft Corporation Relative timestamp when real time clock is unavailable
US20140019793A1 (en) * 2011-03-29 2014-01-16 Claudio Luis De Amorim Strictly increasing virtual clock for high-precision timing of programs in multiprocessing systems
US20140149690A1 (en) * 2012-10-24 2014-05-29 Texas Instruments Incorporated Multi-Processor, Multi-Domain, Multi-Protocol Cache Coherent Speculation Aware Shared Memory Controller and Interconnect
US8813042B2 (en) * 2012-04-06 2014-08-19 Hwlett-Packard Development Company, L. P. Identifying globally consistent states in a multithreaded program
WO2014184614A1 (en) * 2013-05-13 2014-11-20 Freescale Semiconductor, Inc. Method and apparatus for enabling temporal alignment of debug information
US8935511B2 (en) 2010-10-11 2015-01-13 International Business Machines Corporation Determining processor offsets to synchronize processor time values
US9063796B2 (en) 2012-08-02 2015-06-23 GM Global Technology Operations LLC Method and apparatus for improving processing performance of a multi-core processor
WO2015108520A1 (en) * 2014-01-16 2015-07-23 Hewlett-Packard Development Company, L. P. Node cluster synchronization
US20160231769A1 (en) * 2015-02-10 2016-08-11 Red Hat, Inc. Complex event processing using pseudo-clock
US20160299786A1 (en) * 2015-04-10 2016-10-13 Microsoft Technology Licensing, Llc Code examination by scheduler timeline manipulation
US9507374B1 (en) * 2010-03-12 2016-11-29 The Mathworks, Inc. Selecting most compatible synchronization strategy to synchronize data streams generated by two devices
JP2017199117A (en) * 2016-04-26 2017-11-02 日立オートモティブシステムズ株式会社 Information processor, information processing system
US10114726B2 (en) * 2014-06-24 2018-10-30 Virsec Systems, Inc. Automated root cause analysis of single or N-tiered application
US10331888B1 (en) 2006-02-09 2019-06-25 Virsec Systems, Inc. System and methods for run time detection and correction of memory corruption
US10354074B2 (en) 2014-06-24 2019-07-16 Virsec Systems, Inc. System and methods for automated detection of input and output validation and resource management vulnerability
US20190297588A1 (en) * 2018-03-20 2019-09-26 International Business Machines Corporation Synchronization of host and client log timestamps
US10671451B2 (en) 2015-02-10 2020-06-02 Red Hat, Inc. Idempotent mode of executing commands triggered by complex event processing
US10691576B1 (en) * 2017-09-26 2020-06-23 Amazon Technologies, Inc. Multiple reset types in a system
US11119531B2 (en) 2019-12-06 2021-09-14 Oracle International Corporation Parallel pseudo infinite monotonic timeline clock
US11146572B2 (en) 2013-09-12 2021-10-12 Virsec Systems, Inc. Automated runtime detection of malware
US11409870B2 (en) 2016-06-16 2022-08-09 Virsec Systems, Inc. Systems and methods for remediating memory corruption in a computer application

Families Citing this family (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
DE102006039244A1 (en) * 2006-08-22 2008-03-06 Robert Bosch Gmbh Automation system and method for cycle time, process and / or machine optimization
US9098625B2 (en) * 2008-02-29 2015-08-04 International Business Machines Corporation Viral trace
US8165171B2 (en) * 2009-03-19 2012-04-24 Raytheon Bbn Technologies Corp. Methods and systems for distributed synchronization
US8578382B2 (en) * 2009-05-19 2013-11-05 Qualcomm Incorporated Associating data for events occurring in software threads with synchronized clock cycle counters
US8837530B2 (en) * 2010-03-12 2014-09-16 University Of Maryland Method and system for adaptive synchronization of timing information generated by independently clocked communication nodes
CN101848051B (en) * 2010-05-19 2015-04-01 中兴通讯股份有限公司 Method and device for performing clock synchronization between equipment
WO2016105444A1 (en) * 2014-12-27 2016-06-30 Intel Corporation Technologies for synchronized sampling of counters based on a global clock
US9720441B1 (en) * 2016-09-30 2017-08-01 International Business Machines Corporation Generating time-of-day values without causing execution stalls
CN111752335B (en) * 2020-05-23 2022-05-31 苏州浪潮智能科技有限公司 Time synchronization method, system, terminal and storage medium based on hard disk multi-core CPU
US11501380B1 (en) * 2020-07-01 2022-11-15 BlueOwl, LLC Systems and methods for parallelly validating a plurality of policies
US11461851B1 (en) 2020-07-14 2022-10-04 BlueOwl, LLC Systems and methods for determining validation times

Citations (16)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4816989A (en) * 1987-04-15 1989-03-28 Allied-Signal Inc. Synchronizer for a fault tolerant multiple node processing system
US4816990A (en) * 1986-11-05 1989-03-28 Stratus Computer, Inc. Method and apparatus for fault-tolerant computer system having expandable processor section
US5896524A (en) * 1997-02-06 1999-04-20 Digital Equipment Corporation Off-line clock synchronization for multiprocessor event traces
US6246701B1 (en) * 1998-01-14 2001-06-12 Skystream Corporation Reference time clock locking in a remultiplexer for video program bearing transport streams
US20010034223A1 (en) * 1998-10-22 2001-10-25 University Of Maryland, College Park. Method and system for providing location dependent and personal identification information to a public safety answering point
US20020194393A1 (en) * 1997-09-24 2002-12-19 Curtis Hrischuk Method of determining causal connections between events recorded during process execution
US6633835B1 (en) * 2002-01-10 2003-10-14 Networks Associates Technology, Inc. Prioritized data capture, classification and filtering in a network monitoring environment
US20040117682A1 (en) * 2002-12-17 2004-06-17 Jianzhong Xu System and method for synchronizing a plurality of processors in a multiprocessor computer platform employing a global clock counter
US6826752B1 (en) * 1998-12-17 2004-11-30 California Institute Of Technology Programming system and thread synchronization mechanisms for the development of selectively sequential and multithreaded computer programs
US20050080924A1 (en) * 2003-10-09 2005-04-14 Palo Alto Research Center Incorpotated. Node localization in communication networks
US6963747B1 (en) * 2002-01-31 2005-11-08 Bbnt Solutions Llc Globally optimized channel access for wireless networks
US20050265258A1 (en) * 2004-05-28 2005-12-01 Kodialam Muralidharan S Efficient and robust routing independent of traffic pattern variability
US7062762B2 (en) * 2001-12-12 2006-06-13 Texas Instruments Incorporated Partitioning symmetric nodes efficiently in a split register file architecture
US7177853B1 (en) * 2002-02-21 2007-02-13 Emc Corporation Cache management via statistically adjusted time stamp queue
US20070244571A1 (en) * 2005-10-28 2007-10-18 Invensys Systems, Inc. Sequence of events recorder facility for an industrial process control environment
US20080072221A1 (en) * 2006-09-05 2008-03-20 Microsoft Corporation Event stream conditioning

Family Cites Families (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5202998A (en) 1990-08-31 1993-04-13 International Business Machines Corporation Fast, simultaneous multi-processor system status communication interface
US5838894A (en) 1992-12-17 1998-11-17 Tandem Computers Incorporated Logical, fail-functional, dual central processor units formed from three processor units
US6574665B1 (en) * 1999-02-26 2003-06-03 Lucent Technologies Inc. Hierarchical vector clock
AU2003232120A1 (en) * 2002-05-13 2003-11-11 Rensselaer Polytechnic Institute Discrete event simulation system and method
US7529888B2 (en) 2004-11-19 2009-05-05 Intel Corporation Software caching with bounded-error delayed update
US8205200B2 (en) 2005-11-29 2012-06-19 Intel Corporation Compiler-based scheduling optimization hints for user-level threads

Patent Citations (17)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4816990A (en) * 1986-11-05 1989-03-28 Stratus Computer, Inc. Method and apparatus for fault-tolerant computer system having expandable processor section
US4816989A (en) * 1987-04-15 1989-03-28 Allied-Signal Inc. Synchronizer for a fault tolerant multiple node processing system
US5896524A (en) * 1997-02-06 1999-04-20 Digital Equipment Corporation Off-line clock synchronization for multiprocessor event traces
US20020194393A1 (en) * 1997-09-24 2002-12-19 Curtis Hrischuk Method of determining causal connections between events recorded during process execution
US6246701B1 (en) * 1998-01-14 2001-06-12 Skystream Corporation Reference time clock locking in a remultiplexer for video program bearing transport streams
US20010034223A1 (en) * 1998-10-22 2001-10-25 University Of Maryland, College Park. Method and system for providing location dependent and personal identification information to a public safety answering point
US6826752B1 (en) * 1998-12-17 2004-11-30 California Institute Of Technology Programming system and thread synchronization mechanisms for the development of selectively sequential and multithreaded computer programs
US7062762B2 (en) * 2001-12-12 2006-06-13 Texas Instruments Incorporated Partitioning symmetric nodes efficiently in a split register file architecture
US6801940B1 (en) * 2002-01-10 2004-10-05 Networks Associates Technology, Inc. Application performance monitoring expert
US6633835B1 (en) * 2002-01-10 2003-10-14 Networks Associates Technology, Inc. Prioritized data capture, classification and filtering in a network monitoring environment
US6963747B1 (en) * 2002-01-31 2005-11-08 Bbnt Solutions Llc Globally optimized channel access for wireless networks
US7177853B1 (en) * 2002-02-21 2007-02-13 Emc Corporation Cache management via statistically adjusted time stamp queue
US20040117682A1 (en) * 2002-12-17 2004-06-17 Jianzhong Xu System and method for synchronizing a plurality of processors in a multiprocessor computer platform employing a global clock counter
US20050080924A1 (en) * 2003-10-09 2005-04-14 Palo Alto Research Center Incorpotated. Node localization in communication networks
US20050265258A1 (en) * 2004-05-28 2005-12-01 Kodialam Muralidharan S Efficient and robust routing independent of traffic pattern variability
US20070244571A1 (en) * 2005-10-28 2007-10-18 Invensys Systems, Inc. Sequence of events recorder facility for an industrial process control environment
US20080072221A1 (en) * 2006-09-05 2008-03-20 Microsoft Corporation Event stream conditioning

Cited By (34)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US11599634B1 (en) 2006-02-09 2023-03-07 Virsec Systems, Inc. System and methods for run time detection and correction of memory corruption
US10331888B1 (en) 2006-02-09 2019-06-25 Virsec Systems, Inc. System and methods for run time detection and correction of memory corruption
US9507374B1 (en) * 2010-03-12 2016-11-29 The Mathworks, Inc. Selecting most compatible synchronization strategy to synchronize data streams generated by two devices
US8935511B2 (en) 2010-10-11 2015-01-13 International Business Machines Corporation Determining processor offsets to synchronize processor time values
US9811336B2 (en) 2010-10-11 2017-11-07 International Business Machines Corporation Determining processor offsets to synchronize processor time values
US20140019793A1 (en) * 2011-03-29 2014-01-16 Claudio Luis De Amorim Strictly increasing virtual clock for high-precision timing of programs in multiprocessing systems
US9544374B2 (en) * 2011-03-31 2017-01-10 Microsoft Technology Licensing, Llc Relative timestamp when real time clock is unavailable
US20120254468A1 (en) * 2011-03-31 2012-10-04 Microsoft Corporation Relative timestamp when real time clock is unavailable
US8984168B2 (en) * 2011-03-31 2015-03-17 Microsoft Technology Licensing, Llc Relative timestamp when real time clock is unavailable
US20150207886A1 (en) * 2011-03-31 2015-07-23 Microsoft Technology Licensing, Llc Relative timestamp when real time clock is unavailable
US8972607B2 (en) * 2011-03-31 2015-03-03 Microsoft Technology Licensing, Llc Relative timestamp when real time clock is unavailable
US20120254418A1 (en) * 2011-03-31 2012-10-04 Microsoft Corporation Relative timestamp when real time clock is unavailable
US8813042B2 (en) * 2012-04-06 2014-08-19 Hwlett-Packard Development Company, L. P. Identifying globally consistent states in a multithreaded program
US9063796B2 (en) 2012-08-02 2015-06-23 GM Global Technology Operations LLC Method and apparatus for improving processing performance of a multi-core processor
US20140149690A1 (en) * 2012-10-24 2014-05-29 Texas Instruments Incorporated Multi-Processor, Multi-Domain, Multi-Protocol Cache Coherent Speculation Aware Shared Memory Controller and Interconnect
US9208120B2 (en) * 2012-10-24 2015-12-08 Texas Instruments Incorporated Multi-processor, multi-domain, multi-protocol cache coherent speculation aware shared memory controller and interconnect
WO2014184614A1 (en) * 2013-05-13 2014-11-20 Freescale Semiconductor, Inc. Method and apparatus for enabling temporal alignment of debug information
US10169171B2 (en) 2013-05-13 2019-01-01 Nxp Usa, Inc. Method and apparatus for enabling temporal alignment of debug information
US11146572B2 (en) 2013-09-12 2021-10-12 Virsec Systems, Inc. Automated runtime detection of malware
US10212226B2 (en) 2014-01-16 2019-02-19 Hewlett Packard Enterprise Development Lp Node cluster synchronization
WO2015108520A1 (en) * 2014-01-16 2015-07-23 Hewlett-Packard Development Company, L. P. Node cluster synchronization
US11113407B2 (en) 2014-06-24 2021-09-07 Virsec Systems, Inc. System and methods for automated detection of input and output validation and resource management vulnerability
US10114726B2 (en) * 2014-06-24 2018-10-30 Virsec Systems, Inc. Automated root cause analysis of single or N-tiered application
US10354074B2 (en) 2014-06-24 2019-07-16 Virsec Systems, Inc. System and methods for automated detection of input and output validation and resource management vulnerability
US20160231769A1 (en) * 2015-02-10 2016-08-11 Red Hat, Inc. Complex event processing using pseudo-clock
US10671451B2 (en) 2015-02-10 2020-06-02 Red Hat, Inc. Idempotent mode of executing commands triggered by complex event processing
US10423468B2 (en) * 2015-02-10 2019-09-24 Red Hat, Inc. Complex event processing using pseudo-clock
US20160299786A1 (en) * 2015-04-10 2016-10-13 Microsoft Technology Licensing, Llc Code examination by scheduler timeline manipulation
JP2017199117A (en) * 2016-04-26 2017-11-02 日立オートモティブシステムズ株式会社 Information processor, information processing system
US11409870B2 (en) 2016-06-16 2022-08-09 Virsec Systems, Inc. Systems and methods for remediating memory corruption in a computer application
US10691576B1 (en) * 2017-09-26 2020-06-23 Amazon Technologies, Inc. Multiple reset types in a system
US20190297588A1 (en) * 2018-03-20 2019-09-26 International Business Machines Corporation Synchronization of host and client log timestamps
US11012955B2 (en) * 2018-03-20 2021-05-18 International Business Machines Corporation Synchronization of host and client log timestamps
US11119531B2 (en) 2019-12-06 2021-09-14 Oracle International Corporation Parallel pseudo infinite monotonic timeline clock

Also Published As

Publication number Publication date
US7453910B1 (en) 2008-11-18

Similar Documents

Publication Publication Date Title
US7453910B1 (en) Synchronization of independent clocks
US11520753B1 (en) Time reservations for ensuring consistent reads in a distributed database without logging
US9811362B2 (en) Method and system for transaction controlled sampling of distributed heterogeneous transactions without source code modifications
US6125368A (en) Fault-tolerant timestamp generation for multi-node parallel databases
US20190370147A1 (en) Monitoring mobile application performance
US11146668B2 (en) Ensuring properly ordered events in a distributed computing environment
US5964846A (en) System and method for mapping processor clock values in a multiprocessor system
KR101109980B1 (en) Facilitating synchronization of servers in a coordinated timing network
US9231858B1 (en) Completeness detection of monitored globally distributed synchronous and asynchronous transactions
US20050021708A1 (en) Method and framework for tracking/logging completion of requests in a computer system
US11556375B2 (en) Reducing commit wait in a distributed multiversion database by reading the clock earlier
KR20090088381A (en) Facilitating recovery in a coordinated timing network
CN109933632B (en) Data migration method, device and equipment for database
US7454761B1 (en) Method and apparatus for correlating output of distributed processes
CN103532786A (en) Server synchronization detector as well as synchronous detection method and system
Jones et al. An evaluation of the state of time synchronization on leadership class supercomputers
US20090327995A1 (en) Annotation-aided code generation in library-based replay
US20220393888A1 (en) Method for distributed and secure timekeeping
Rabenseifner The controlled logical clock-a global time for trace based software monitoring of parallel applications in workstation clusters
Wingerath et al. Who watches the watchmen? on the lack of validation in nosql benchmarking
CN110750424A (en) Resource inspection method and device
Dissanayake et al. A Review on Message Complexity of the Algorithms for Clock Synchronization in Distributed Systems
CN115269696A (en) Data processing method, unified data processor and readable storage medium
Denis et al. Tracing task‐based runtime systems: Feedbacks from the StarPU case
Becker et al. Synchronizing the timestamps of concurrent events in traces of hybrid MPI/OpenMP applications

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO PAY ISSUE FEE