WO2003005219A2 - Multiprocessor system and method for operating a multiprocessor system - Google Patents
Multiprocessor system and method for operating a multiprocessor system Download PDFInfo
- Publication number
- WO2003005219A2 WO2003005219A2 PCT/IB2002/002337 IB0202337W WO03005219A2 WO 2003005219 A2 WO2003005219 A2 WO 2003005219A2 IB 0202337 W IB0202337 W IB 0202337W WO 03005219 A2 WO03005219 A2 WO 03005219A2
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- processor
- synchronization
- counter
- multiprocessor system
- processors
- Prior art date
Links
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F5/00—Methods or arrangements for data conversion without changing the order or content of the data handled
- G06F5/06—Methods or arrangements for data conversion without changing the order or content of the data handled for changing the speed of data flow, i.e. speed regularising or timing, e.g. delay lines, FIFO buffers; over- or underrun control therefor
- G06F5/10—Methods or arrangements for data conversion without changing the order or content of the data handled for changing the speed of data flow, i.e. speed regularising or timing, e.g. delay lines, FIFO buffers; over- or underrun control therefor having a sequence of storage locations each being individually accessible for both enqueue and dequeue operations, e.g. using random access memory
- G06F5/12—Means for monitoring the fill level; Means for resolving contention, i.e. conflicts between simultaneous enqueue and dequeue operations
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/46—Multiprogramming arrangements
- G06F9/52—Program synchronisation; Mutual exclusion, e.g. by means of semaphores
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F2205/00—Indexing scheme relating to group G06F5/00; Methods or arrangements for data conversion without changing the order or content of the data handled
- G06F2205/10—Indexing scheme relating to groups G06F5/10 - G06F5/14
- G06F2205/102—Avoiding metastability, i.e. preventing hazards, e.g. by using Gray code counters
Definitions
- the invention relates to a multiprocessor system.
- the invention further relates to a method for operating a multiprocessor system.
- Signal-processing functions determine the performance requirements for many products based on standards like MPEG-x, DVB, DAB, and UMTS. This calls for efficient implementations of the signal processing components of these products. However, because of evolving standards and changing market requirements, the implementation requires flexibility and scalability as well.
- a macropipeline setup is a natural way to model these applications, since streams of data are processed; in this setup the functions (tasks) are the stages and there are buffers between the stages to form the pipeline. This is a way to exploit task-level parallelism (TLP), because all stages can operate in parallel.
- TLP task-level parallelism
- a multiprocessor system comprising a plurality of processors is very suitable for implementation of such a macropipeline.
- a multiprocessor system may comprise several types of processors, such as programmable processors, e.g. RISC-processors or VLIW processors, or dedicated hardware.
- processors such as programmable processors, e.g. RISC-processors or VLIW processors, or dedicated hardware.
- One processor may execute a particular task, or more than one task in a time-shared fashion.
- a multiprocessor according to the invention in accordance with this purpose is claimed in claim 1.
- a method according to the invention in accordance with this purpose is claimed in claim 8.
- data has to be exchanged between the processors, e.g. via a buffer.
- a synchronization protocol is necessary to synchronize data generation of a first processor with data consumption of a second processor succeeding the first one in the pipeline.
- Such a synchronization protocol uses synchronization information, e.g. a pair of semaphores. For example, a first semaphore indicates the number of buffer elements available to the first processor for writing new data, and a second semaphore indicates the number of buffer elements available to the second processor to be read.
- the administrating information is preferably stored where it is most essential.
- the dedicated processor is arranged for writing data to the buffer the first semaphore should be quickly accessible to that processor e.g. in the form of a dedicated register.
- the invention therefore a copy of at least part of this administrating information is maintained in the shared memory. In this way analysis of the operation of the system is strongly simplified as more relevant information is available in a clustered fashion. And since this information resides in memory, it is accessible by a software debugger.
- US 6,173,307 Bl discloses a multiprocessor system comprising circular queue shared by multiple producers and multiple consumers. Any producer or consumer can be permitted to preempt any producer or consumer at any time without interfering with the correctness of the queue.
- US 4,916,658 describes an apparatus comprising a dynamically controlled buffer.
- the buffer is suitable for storing data words consisting of several storage locations together with circuitry providing a first indicator that designates the next storage location to be stored into, a second indicator designating the next storage location to be retrieved from, and circuitry that provides the number of locations available for storage and the number of locations available for retrieval.
- the processors may carry out more than one task, because the number of tasks can be greater than the number of processors.
- the multiprocessor system may be dynamically reconfigured, e.g. to adapt to a changing bitrate of a data stream processed by the system.
- an embodiment of the multiprocessor system according to the invention as claimed in claim 2 is advantageous.
- changing a certain task's communication partner from a hardware task using distributed info, for example stored in a shell
- a software task using centralized info in shared memory
- each task has its private copy of the administration information of the buffers it uses stored in the shell (in registers).
- Claim 3 describes a first implementation of the synchronization protocol.
- each of the processors maintains a respective synchronization counter.
- a producing processor i.e. writing tokens
- Np a first synchronization counter
- Nc a second synchronization counter
- the buffer used for exchanging information has a size Nb, the number Nl of tokens available to the first processor is
- Nl Nc-Np mod Nb, and the number of tokens N2 available to the second processor is
- N2 Np-Nc mod Nb.
- a processor can check the number of tokens which it can use by issuing a first command (claim). This results in a verification whether an amount of buffer space is available to it by comparing both synchronization counters.
- the first processor uses equation 1 and the second processor uses equation 2 for verification.
- the second command (release) results in an increment of the synchronization counter assigned to the processor with the number of released tokens.
- the first and the second command may be implemented in the form of a function call in software or by means of dedicated signal in hardware.
- the at least one processor can reserve a zone within the buffer which it can arbitrarily use, e.g. for random access or for temporary storage of data.
- the at least one processor can reserve a zone within the buffer which it can arbitrarily use, e.g. for random access or for temporary storage of data.
- the counter for the number of tokens available for writing will be incremented by the consuming processor, and will be decremented by the producing processor.
- the counter for the number of tokens available for reading will be incremented by the producing processor, and will be decremented by the consuming processor. This embodiment is described in claim 5.
- the dedicated processor also updates the copy in shared memory.
- the dedicated processor 'knows' at which moment the changes in the administration information occur.
- the buffer is preferably located in shared memory e.g. using the same memory used for the copy of the administrating information.
- a shell coupled to a processor facilitates multitasking, in that it may reduce the number of interrupts which has to be handled by the processor itself. This reduces the number of times that an idle processor has to be activated unecessarily, or that a processor has to interrupt an other task which it is processing. In this way the efficiency of the processor is improved.
- the interrupt signals are indicative for a data channel of the processor.
- a practical way to iplement this is by assigning bits in a register to respective input channels of the processor. For example a 32 bit register could support 32 input channels, wherein for example channel 0 is assigned bit 0, channe 1 is assigned bit 1 of the register etc.
- channe 1 is assigned bit 1 of the register etc.
- an other processor sents an interrupt signal destinated for channel k of the processor the corresponding bit k of the signal register is set.
- the shell of the receiving processor can select specific interrupt signals by means of a mask register, wherein each bit represents for a particular channel whether the processor wants to ignore the interrupt or not.
- this signal will not cause an interrupt in the processor, and no wake up will happen.
- the processor could be busy with processing, in which all bits will be masked, or the processor /task could be waiting for a full/empty token on channel 1, in which case it is not interested on what happens on channel 2.
- the signal and the mask register could have an arbitary number of bits depending on the number of channel which should be supported. Alternatively it is possible to support each channel by a number and use a list or look-up table to determine whether the processor should be interrupted for that channel or not. This is however a more complex solution. Instead of identifying a interrupt signal by its channel number it could be identified by a task number instead. In this embodiment all channels with signals for a specific task set the same bit in the signal register of the shell. In this way, a number of tasks equal to the number of bits in the signal register could be uniquely addressed, whereas each task may have more than one channel. The waiting is a little less specific than with unique channel identification, but the number of unnneccessary wake-ups is still small and more channels can be supported with limited hardware.
- the taks numbers do not have to be identical to the bit numbers, (it is just simple to do it that way) as long as the relation is defined. Furthermore, it also possible that (groups of) tasks share the same signal-interrupt-number.
- the senders task identification number could be signalled.
- the receiving processor can select interrupt signals from a specific task instead of for a specific task. It may depend of the number of external tasks and the number of tasks on the processor personal preference or what seems the most usefull/efficient.
- FIG. 1 schematically shows a data processing apparatus
- Figure 2 schematically shows a way in which synchronization counters indicate partitions of a buffer
- Figure 3 illustrates a synchronization shell for a processor
- Figure 4 illustrates a channel controller
- Figure 1 shows a data processing apparatus comprising at least a first 1.6 and a second processing means 1.3.
- the first processing means, an application specific processor 1.6 is capable of providing data by making tokens available in a buffer means, located in memory 1.5.
- the tokens are readable by the second processing means 1.3, a digital signal processor, for further processing.
- the data processing apparatus further comprises a RISC processor 1.1, a VLIW processor 1.2, and an ASIP 1.4.
- the VLIW processor 1.2, the DSP 1.3, the ASIP 1.4, the memory 1.5 and the ASIC 1.6 are mutually coupled via a first bus 1.7.
- the RISC processor 1.1 is coupled to a second bus 1.8 which is coupled on its turn to the first bus 1.7 via a bridge 1.9.
- a further memory 1.10 and peripherals 1.11 are connected to the second bus 1.8.
- the processors may have auxiliary units.
- the RISC-processor 1.1 comprises an instruction cache 1.1.1 and data cache 1.1.2.
- the VLIW processor has an instruction cache 1.2.1 and data cache 1.2.2.
- the DSP 1.3 comprises an instruction cache 1.3.1, a local memory 1.3.2, and an address decoder 1.3.3.
- the ASIP 1.4 comprises a local memory 1.4.1 and address decoder 1.4.2.
- the ASIC 1.6 comprises a local memory 1.6.1 and address decoder 1.6.2.
- the processing means 1.6, 1.3 are each assigned a respective synchronization indicator. Both synchronization indicators are accessible by both the first 1.6 and the second processing means 1.3.
- the first synchronization indicator is at least modifiable by the first processing means 1.6 and readable by the second processing means 1.3.
- the second synchronization indicator is at least modifiable by the second processing means 1.3, and readable by the first processing means 1.6
- Each of the synchronization indicators is represented by a counter.
- the counter which represents the first synchronization indicator (writec) is indicative for a number of tokens being written by the first processing means 1.6.
- the counter which represents the second synchronization indicator (readc) is indicative for a number of tokens being read by the second processing means 1.3.
- the counter value could be equal to the number of tokens mod n, wherein n is an integer value. Otherwise each step of the counter could represent a fixed number of tokens, or a token could be represented by a number of steps of the counter value.
- the counters are a pointer to the address up to which the buffer means is made available to the other processor.
- This Figure schematically shows a buffer space 2.1 within the memory 1.5 which is used by the first processing means 1.2 for providing data to the second processing means 1.3.
- the buffer space 2.1 is arranged as a cyclical buffer.
- the buffer space 2.1 comprises a first zone 2.2 and a second zone 2.4 which contains data written by the first processing means 1.2, which is now available to the second processing means 1.3.
- the buffer space 2.1 further comprises a third zone 2.3 which is available to the first processing means 1.2 to write new data.
- the producer-counter writec indicates the end of the first zone 2.2, and the consumer- counter readc points to the end of the second zone 2.3.
- a portion 2.6 within the first zone 2.2 and the second zone 2.4 is reserved by the reservation counter readrsvc in combination with the synchronization counter readc.
- a portion 2.5 within the third zone 2.3 is reserved by the reservation counter writersvc in combination with the synchronization counter writec.
- the synchronization information comprising the first synchronization counter writec, the second synchronization counter readc, and the reservation counters readrsvc and writersvc are stored in combination with other information in a channel controller of a synchronization shell coupled to the application specific device 1.6 (indicated in Figure 3 as 3.1).
- the application specific device 3.1 is coupled to the bus 3.3 via a synchronization shell 3.2.
- the application specific device 3.1 is responsible for the computational tasks, and the synchronization shell performs the communication tasks.
- the synchronization shell 3.2 comprises a bus adapter 3.4, a signal register 3.5 for storing the identity of tasks for which the synchronization shell
- the synchronization shell 3.2 has received a message.
- the synchronization shell 3.2 further comprises channel controllers 3.6, 3.7. These serve to convert commands of the processor 3.1 in signals to the bus 3.3.
- channel controllers 3.6, 3.7 serve to convert commands of the processor 3.1 in signals to the bus 3.3.
- an application specific device 3.1 will execute less tasks in parallel than is the case for a programmable processor 3.1.
- FIG. 4 shows a channel controller 4.1 of the synchronization shell in more detail.
- the channel controller 4.1 comprises a generic bus master slave unit 4.2, a register file
- the bus adapter 3.4 and the generic bus master slave unit 4.2 together couple the channel controller 4.1 to the bus.
- the bus adapter 3.4 provides an adaptation from a particular interconnection network, e.g. a Pi-bus or an AHB-bus to a generic interface.
- the generic bus master slave unit 4.2 provides for an adaptation of the synchronization signals to said generic interface. In this way it is possible to support different channel controller types and different buses with a relatively low number of different components.
- the register file 4.3 stores the synchronization information. In case the device synchronization interface of a processor 3.1 issues the signal Claim in order to claim a number of writable or readable tokens in the buffer, the control unit
- the notation remotec signifies writec for an input channel and readc for an output channel.
- the notation localrsvc refers to readrsvc for an input channel and writersvc for an output channel.
- the address of a token Token Address is returned. Otherwise, the upper boundary address of the buffer space reserved for the processor 3.1 could be returned.
- the signal Token Valid indicates if the claim for tokens was acknowledged, and the processor's synchronization interface can rise the signal Claim again. In this way a token address can be provided to the processor at each cycle. If the outcome of the first verification is negative, the channel controller 4.1 reads the remote counter indicated by the address remotecaddr and replaces the locally stored value remotec by the value stored at that address. The control unit 4.4 now again verifies whether the claimed number of tokens is available.
- the channel controller 4.1 could either poll the remote counter regularly in a polling mode or wait for an interrupt by the processor with which it communicates in an interrupt mode. In the mean time it may proceed with another task.
- the register file in the channel controller comprises the pointer sgnl_reg_addr indicating the signal register address of the other device with which the processor is communicating.
- An interrupting processor may leave in the signal register of a device an indication of the task or of the channel for which the interrupt took place.
- the variable inputchannel in the register indicates to the channel controller whether the present channel is an input or an output channel and which of these modes is selected for this channel.
- the variables maxtoken and tokensize respectively indicate the total number of tokens available in the buffer and the size of the tokens in bytes.
- variable localrsvc is updated in conformance with the number of tokens that was claimed.
- the register file could comprise a variable indicating the number of available tokens calculated with the last verification.
- the processor 3.1 signals Release_req the local counter locale is updated in accordance with this request.
- This local counter locale is readc for an input channel and writec for an output channel.
- the signal Release_req may be kept high so that the processor 3.1 is allowed to release tokens at any time.
- this signal could be used to prevent flooding the controller when it is hardly able to access the bus.
- the synchronization process could be implemented in software by using a claim and a release function.
- a claim function a processor claims a number of tokens for a particular channel and waits until the function returns with the token address.
- the release function the processor releases a number of tokens for a particular channel.
- Separate functions could exist for claiming tokens for writing or tokens for reading. Likewise separate functions may be used for releasing. According to the invention a copy of at least part of the synchronization information is maintained in the shared memory.
- the information maintained as a copy may comprise any information which is useful to trace the operation of the dedicated processor, for example a value of the synchronization counter which is maintained by that processor.
- copy in shared memory could be arranged according to the following datastructure as specified in the C-language: typedef struct
- CHP__taskT* consumer //consumer task pointer int tokensize; //size of tokens char* bufbaseaddr; //base address of the buffer in memory unsigned writec; //write counter unsigned readc; //read counter unsigned writersvc; //write reserve counter unsigned readrsvc; //read reserve counter
- this data structure comprises the following data.
- id is a value identifying the channel, so as to enable a processing scheme including a plurality of channels, for example a first channel for transferring data from a first processing means to a second processing means, a second channel for transferring data from the second processing means to the first processing means and a third channel for transferring data from the second processing means to a third processing means.
- the value maxtokens indicates the size of the buffer, i.e. as the number of tokens which can be stored in the buffer.
- the value flags indicates properties of the channel, e.g. if the synchronization is polling or interrupt based, and whether the channel buffers are allocated directly or indirectly. As an alternative it can be decided to give the channel predetermined properties, e.g. restrict the implementation to interrupt based synchronization with directly allocated buffers. In that case the value flags may be omitted.
- producer and consumer are pointers to the structure describing the task of the first processing means, the producer, and the task of the second processing means, the consumer.
- the task structure may contain for example - an identifier for the task (whose task structure is it) a function pointer (if it is a task on the embedded processor; then after booting the root_task can jump to this function and start the application. Void otherwise.
- a device type to indicate on what type of device the task should be running.
- a task running on a DSP or on an Embedded processor has to be initialized in a different way than a task running on dedicated hardware.
- a device number This enable to distinguish between e.g. the first hardware coprocessor from the second, this can be done by giving them a unique number. the number of channels - a list of pointers to channel datastructures.
- the integer token_size indicates the size of the tokens which is exchanged via the channel.
- the pointer bufbaseaddr refers to the base address of the buffer in memory
- the pointers CHP_channel_hwT* pchanregs and CHP_channel_h T* cchanregs facilitate access to the registers of a channel controller by software. These are simply pointers to the physical locations of the hardware registers. If any of the fields is 0, then this means that the corresponding task is a software task.
- the most interesting scenario in this context is when a certain channel is reconnected on one side (producer or consumer) to another task, and it is of a different implementation.
- a producer task hardware
- the software task can use the channel immediately because the channel record is already present and up to date.
- signaladdr is set to the signal controller address of the CPU the new software task is running on.
- remotecaddr is set to the address of the readc field in the channel record. Note that this step is not needed if previously it was already the case even though two hardware tasks were communicating.
- Switching a task's communication partner from a hardware task to another hardware task is also easily done with a channel record in memory.
- the new task's channel controller registers are simply uploaded from shared memory before being started.
- DCT and IDCT Multiple tasks may be mapped on one single hardware device, e.g. DCT and IDCT. Both tasks may have different input and output channels and therefore need separate channel controllers and registers. Or, we can use the same set of registers in the device shell to implement the channels for both tasks, thereby reducing the silicon area. Without a copy of the administrative information in memory, this requires that when a task is scheduled out, the administrative information of its channels must be explicitly saved in memory, and once it is scheduled again, the administrative information of the corresponding channels can be restored from memory into the registers.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Software Systems (AREA)
- Multi Processors (AREA)
- Hardware Redundancy (AREA)
- Synchronisation In Digital Transmission Systems (AREA)
- Advance Control (AREA)
- Communication Control (AREA)
- Computer And Data Communications (AREA)
Abstract
Description
Claims
Priority Applications (4)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
EP02735883A EP1405175B1 (en) | 2001-06-29 | 2002-06-20 | Multiprocessor system and method for operating a multiprocessor system |
JP2003511119A JP2004534323A (en) | 2001-06-29 | 2002-06-20 | Multiprocessor system and method of operating multiprocessor system |
US10/481,875 US20040153524A1 (en) | 2001-06-29 | 2002-06-20 | Multiprocessor system and method for operating a multiprocessor system |
DE60215007T DE60215007T2 (en) | 2001-06-29 | 2002-06-20 | MULTIPROCESSOR SYSTEM AND METHOD FOR OPERATING A MULTIPROCESSOR SYSTEM |
Applications Claiming Priority (2)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
EP01202517 | 2001-06-29 | ||
EP01202517.7 | 2001-06-29 |
Publications (2)
Publication Number | Publication Date |
---|---|
WO2003005219A2 true WO2003005219A2 (en) | 2003-01-16 |
WO2003005219A3 WO2003005219A3 (en) | 2003-06-05 |
Family
ID=8180570
Family Applications (3)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
PCT/IB2002/002340 WO2003005196A2 (en) | 2001-06-29 | 2002-06-20 | Data processing apparatus |
PCT/IB2002/002417 WO2003003232A2 (en) | 2001-06-29 | 2002-06-20 | Data processing apparatus and a method of synchronizing a first and a second processing means in a data processing apparatus |
PCT/IB2002/002337 WO2003005219A2 (en) | 2001-06-29 | 2002-06-20 | Multiprocessor system and method for operating a multiprocessor system |
Family Applications Before (2)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
PCT/IB2002/002340 WO2003005196A2 (en) | 2001-06-29 | 2002-06-20 | Data processing apparatus |
PCT/IB2002/002417 WO2003003232A2 (en) | 2001-06-29 | 2002-06-20 | Data processing apparatus and a method of synchronizing a first and a second processing means in a data processing apparatus |
Country Status (7)
Country | Link |
---|---|
US (2) | US20040193693A1 (en) |
EP (3) | EP1421506A2 (en) |
JP (3) | JP2004522233A (en) |
CN (3) | CN100533370C (en) |
AT (1) | ATE341027T1 (en) |
DE (1) | DE60215007T2 (en) |
WO (3) | WO2003005196A2 (en) |
Cited By (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JP2007504555A (en) * | 2003-09-02 | 2007-03-01 | サーフ テクノロジー インコーポレイテッド | Signal processing system control method and apparatus |
Families Citing this family (49)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US7293155B2 (en) * | 2003-05-30 | 2007-11-06 | Intel Corporation | Management of access to data from memory |
TW587374B (en) * | 2003-06-03 | 2004-05-11 | Acer Labs Inc | Method and related apparatus for generating high frequency signals by a plurality of low frequency signals with multiple phases |
US7714870B2 (en) | 2003-06-23 | 2010-05-11 | Intel Corporation | Apparatus and method for selectable hardware accelerators in a data driven architecture |
JP4148223B2 (en) * | 2005-01-28 | 2008-09-10 | セイコーエプソン株式会社 | Processor and information processing method |
US20060253662A1 (en) * | 2005-05-03 | 2006-11-09 | Bass Brian M | Retry cancellation mechanism to enhance system performance |
US8817029B2 (en) * | 2005-10-26 | 2014-08-26 | Via Technologies, Inc. | GPU pipeline synchronization and control system and method |
US20080052527A1 (en) * | 2006-08-28 | 2008-02-28 | National Biometric Security Project | method and system for authenticating and validating identities based on multi-modal biometric templates and special codes in a substantially anonymous process |
US7822889B2 (en) | 2007-08-27 | 2010-10-26 | International Business Machines Corporation | Direct/indirect transmission of information using a multi-tiered full-graph interconnect architecture |
US8014387B2 (en) | 2007-08-27 | 2011-09-06 | International Business Machines Corporation | Providing a fully non-blocking switch in a supernode of a multi-tiered full-graph interconnect architecture |
US8140731B2 (en) | 2007-08-27 | 2012-03-20 | International Business Machines Corporation | System for data processing using a multi-tiered full-graph interconnect architecture |
US8185896B2 (en) * | 2007-08-27 | 2012-05-22 | International Business Machines Corporation | Method for data processing using a multi-tiered full-graph interconnect architecture |
US7904590B2 (en) | 2007-08-27 | 2011-03-08 | International Business Machines Corporation | Routing information through a data processing system implementing a multi-tiered full-graph interconnect architecture |
US7793158B2 (en) | 2007-08-27 | 2010-09-07 | International Business Machines Corporation | Providing reliability of communication between supernodes of a multi-tiered full-graph interconnect architecture |
US7958182B2 (en) | 2007-08-27 | 2011-06-07 | International Business Machines Corporation | Providing full hardware support of collective operations in a multi-tiered full-graph interconnect architecture |
US8108545B2 (en) | 2007-08-27 | 2012-01-31 | International Business Machines Corporation | Packet coalescing in virtual channels of a data processing system in a multi-tiered full-graph interconnect architecture |
US7958183B2 (en) | 2007-08-27 | 2011-06-07 | International Business Machines Corporation | Performing collective operations using software setup and partial software execution at leaf nodes in a multi-tiered full-graph interconnect architecture |
US7769892B2 (en) | 2007-08-27 | 2010-08-03 | International Business Machines Corporation | System and method for handling indirect routing of information between supernodes of a multi-tiered full-graph interconnect architecture |
US7840703B2 (en) | 2007-08-27 | 2010-11-23 | International Business Machines Corporation | System and method for dynamically supporting indirect routing within a multi-tiered full-graph interconnect architecture |
US7809970B2 (en) | 2007-08-27 | 2010-10-05 | International Business Machines Corporation | System and method for providing a high-speed message passing interface for barrier operations in a multi-tiered full-graph interconnect architecture |
US7769891B2 (en) | 2007-08-27 | 2010-08-03 | International Business Machines Corporation | System and method for providing multiple redundant direct routes between supernodes of a multi-tiered full-graph interconnect architecture |
US7827428B2 (en) | 2007-08-31 | 2010-11-02 | International Business Machines Corporation | System for providing a cluster-wide system clock in a multi-tiered full-graph interconnect architecture |
US7921316B2 (en) | 2007-09-11 | 2011-04-05 | International Business Machines Corporation | Cluster-wide system clock in a multi-tiered full-graph interconnect architecture |
US20090198956A1 (en) * | 2008-02-01 | 2009-08-06 | Arimilli Lakshminarayana B | System and Method for Data Processing Using a Low-Cost Two-Tier Full-Graph Interconnect Architecture |
US8077602B2 (en) | 2008-02-01 | 2011-12-13 | International Business Machines Corporation | Performing dynamic request routing based on broadcast queue depths |
US7779148B2 (en) | 2008-02-01 | 2010-08-17 | International Business Machines Corporation | Dynamic routing based on information of not responded active source requests quantity received in broadcast heartbeat signal and stored in local data structure for other processor chips |
DE102008018951A1 (en) | 2008-04-15 | 2009-10-22 | Carl Zeiss Microimaging Gmbh | Microscope with holding focus unit |
US8082426B2 (en) * | 2008-11-06 | 2011-12-20 | Via Technologies, Inc. | Support of a plurality of graphic processing units |
US8843682B2 (en) * | 2010-05-18 | 2014-09-23 | Lsi Corporation | Hybrid address mutex mechanism for memory accesses in a network processor |
US8417778B2 (en) | 2009-12-17 | 2013-04-09 | International Business Machines Corporation | Collective acceleration unit tree flow control and retransmit |
US9037907B2 (en) * | 2011-06-10 | 2015-05-19 | International Business Machines Corporation | Operator message commands for testing a coupling facility |
US8689240B2 (en) | 2011-06-10 | 2014-04-01 | International Business Machines Corporation | Transmitting operator message commands to a coupling facility |
US8918797B2 (en) | 2011-06-10 | 2014-12-23 | International Business Machines Corporation | Processing operator message commands |
US8799522B2 (en) | 2011-06-10 | 2014-08-05 | International Business Machines Corporation | Executing a start operator message command |
US8560737B2 (en) | 2011-06-10 | 2013-10-15 | International Business Machines Corporation | Managing operator message buffers in a coupling facility |
US8745291B2 (en) * | 2011-10-04 | 2014-06-03 | Qualcomm Incorporated | Inter-processor communication apparatus and method |
CN103186501A (en) * | 2011-12-29 | 2013-07-03 | 中兴通讯股份有限公司 | Multiprocessor shared storage method and system |
US9304880B2 (en) * | 2013-03-15 | 2016-04-05 | Freescale Semiconductor, Inc. | System and method for multicore processing |
US9928117B2 (en) * | 2015-12-11 | 2018-03-27 | Vivante Corporation | Hardware access counters and event generation for coordinating multithreaded processing |
US10437748B1 (en) * | 2015-12-29 | 2019-10-08 | Amazon Technologies, Inc. | Core-to-core communication |
US10042677B2 (en) * | 2016-05-25 | 2018-08-07 | Bank Of America Corporation | Maintenance conflict tool |
US10963183B2 (en) * | 2017-03-20 | 2021-03-30 | Intel Corporation | Technologies for fine-grained completion tracking of memory buffer accesses |
CN107342853B (en) * | 2017-05-25 | 2019-12-06 | 兴唐通信科技有限公司 | Counter synchronization method with low interaction overhead |
WO2019001418A1 (en) | 2017-06-26 | 2019-01-03 | 上海寒武纪信息科技有限公司 | Data sharing system and data sharing method therefor |
CN109426553A (en) | 2017-08-21 | 2019-03-05 | 上海寒武纪信息科技有限公司 | Task cutting device and method, Task Processing Unit and method, multi-core processor |
CN109214616B (en) | 2017-06-29 | 2023-04-07 | 上海寒武纪信息科技有限公司 | Information processing device, system and method |
CN110413551B (en) | 2018-04-28 | 2021-12-10 | 上海寒武纪信息科技有限公司 | Information processing apparatus, method and device |
CN109117415B (en) * | 2017-06-26 | 2024-05-14 | 上海寒武纪信息科技有限公司 | Data sharing system and data sharing method thereof |
JP7407653B2 (en) * | 2020-04-27 | 2024-01-04 | 株式会社平和 | gaming machine |
US11842056B2 (en) * | 2021-10-25 | 2023-12-12 | EMC IP Holding Company, LLC | System and method for allocating storage system resources during write throttling |
Citations (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US4916658A (en) * | 1987-12-18 | 1990-04-10 | International Business Machines Corporation | Dynamic buffer control |
US5915128A (en) * | 1997-01-29 | 1999-06-22 | Unisys Corporation | Serial speed-matching buffer utilizing plurality of registers where each register selectively receives data from transferring units or sequentially transfers data to another register |
Family Cites Families (11)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US5584037A (en) * | 1994-03-01 | 1996-12-10 | Intel Corporation | Entry allocation in a circular buffer |
DE69525531T2 (en) * | 1995-09-04 | 2002-07-04 | Hewlett-Packard Co. (N.D.Ges.D.Staates Delaware), Palo Alto | Data processing system with a ring-shaped queue in a page memory |
US5729765A (en) * | 1995-12-07 | 1998-03-17 | Samsung Electronics Co., Ltd. | Method and apparatus for determining the status of a shared resource |
US5951657A (en) * | 1996-06-19 | 1999-09-14 | Wisconsin Alumni Research Foundation | Cacheable interface control registers for high speed data transfer |
US6173307B1 (en) * | 1998-08-20 | 2001-01-09 | Intel Corporation | Multiple-reader multiple-writer queue for a computer system |
US6212543B1 (en) * | 1998-12-10 | 2001-04-03 | Intel Corporation | Asymmetric write-only message queuing architecture |
US6389489B1 (en) * | 1999-03-17 | 2002-05-14 | Motorola, Inc. | Data processing system having a fifo buffer with variable threshold value based on input and output data rates and data block size |
US6606666B1 (en) * | 1999-11-09 | 2003-08-12 | International Business Machines Corporation | Method and system for controlling information flow between a producer and a buffer in a high frequency digital system |
DE60022186T2 (en) * | 2000-08-17 | 2006-06-08 | Texas Instruments Inc., Dallas | Maintaining a remote queue using two counters in the Move Control with hubs and ports |
US6424189B1 (en) * | 2000-10-13 | 2002-07-23 | Silicon Integrated Systems Corporation | Apparatus and system for multi-stage event synchronization |
KR100484134B1 (en) * | 2002-02-16 | 2005-04-18 | 삼성전자주식회사 | Asynchronous data interface apparatus using a FIFO |
-
2002
- 2002-06-20 AT AT02735883T patent/ATE341027T1/en not_active IP Right Cessation
- 2002-06-20 US US10/481,983 patent/US20040193693A1/en not_active Abandoned
- 2002-06-20 JP JP2003511098A patent/JP2004522233A/en not_active Withdrawn
- 2002-06-20 WO PCT/IB2002/002340 patent/WO2003005196A2/en not_active Application Discontinuation
- 2002-06-20 WO PCT/IB2002/002417 patent/WO2003003232A2/en not_active Application Discontinuation
- 2002-06-20 EP EP02735906A patent/EP1421506A2/en not_active Withdrawn
- 2002-06-20 JP JP2003509339A patent/JP2004531002A/en active Pending
- 2002-06-20 CN CNB028130588A patent/CN100533370C/en not_active Expired - Fee Related
- 2002-06-20 EP EP02738454A patent/EP1405184A2/en not_active Withdrawn
- 2002-06-20 CN CNA028130510A patent/CN1522405A/en active Pending
- 2002-06-20 WO PCT/IB2002/002337 patent/WO2003005219A2/en active IP Right Grant
- 2002-06-20 EP EP02735883A patent/EP1405175B1/en not_active Expired - Lifetime
- 2002-06-20 US US10/481,875 patent/US20040153524A1/en not_active Abandoned
- 2002-06-20 JP JP2003511119A patent/JP2004534323A/en not_active Ceased
- 2002-06-20 DE DE60215007T patent/DE60215007T2/en not_active Expired - Lifetime
- 2002-06-20 CN CNA028130553A patent/CN1531684A/en active Pending
Patent Citations (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US4916658A (en) * | 1987-12-18 | 1990-04-10 | International Business Machines Corporation | Dynamic buffer control |
US5915128A (en) * | 1997-01-29 | 1999-06-22 | Unisys Corporation | Serial speed-matching buffer utilizing plurality of registers where each register selectively receives data from transferring units or sequentially transfers data to another register |
Non-Patent Citations (2)
Title |
---|
VAN DER WAL A J ET AL: "Efficient interprocessor communication in a tightly-coupled homogeneous multiprocessor system" DISTRIBUTED COMPUTING SYSTEMS, 1990. PROCEEDINGS., SECOND IEEE WORKSHOP ON FUTURE TRENDS OF CAIRO, EGYPT 30 SEPT.-2 OCT. 1990, LOS ALAMITOS, CA, USA,IEEE COMPUT. SOC, US, 30 September 1990 (1990-09-30), pages 362-368, XP010021448 ISBN: 0-8186-2088-9 * |
YOUNG S J: "INTER-PROCESS COMMUNICATION PRIMITIVES FOR DSM MULTIPROCESSORS" IMPLEMENTING FUNCTIONS: MICROPROCESSORS AND FILMWARE. PARIS, SEPTEMBER 8 - 10 1981, EUROMICRO SYMPOSIUM ON MICROPROCESSING AND MICROPROGRAMMING, AMSTERDAM, NORTH HOLLAND PUBLISHING CO, NL, vol. SYMP. 7, 8 September 1981 (1981-09-08), pages 327-332, XP002166142 * |
Cited By (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JP2007504555A (en) * | 2003-09-02 | 2007-03-01 | サーフ テクノロジー インコーポレイテッド | Signal processing system control method and apparatus |
Also Published As
Publication number | Publication date |
---|---|
WO2003003232A2 (en) | 2003-01-09 |
EP1405184A2 (en) | 2004-04-07 |
EP1405175B1 (en) | 2006-09-27 |
EP1405175A2 (en) | 2004-04-07 |
WO2003003232A3 (en) | 2004-03-18 |
JP2004522233A (en) | 2004-07-22 |
WO2003005219A3 (en) | 2003-06-05 |
DE60215007D1 (en) | 2006-11-09 |
WO2003005196A3 (en) | 2004-01-15 |
CN1531684A (en) | 2004-09-22 |
CN1522402A (en) | 2004-08-18 |
US20040193693A1 (en) | 2004-09-30 |
DE60215007T2 (en) | 2007-05-03 |
CN1522405A (en) | 2004-08-18 |
JP2004531002A (en) | 2004-10-07 |
JP2004534323A (en) | 2004-11-11 |
WO2003005196A2 (en) | 2003-01-16 |
EP1421506A2 (en) | 2004-05-26 |
US20040153524A1 (en) | 2004-08-05 |
ATE341027T1 (en) | 2006-10-15 |
CN100533370C (en) | 2009-08-26 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
EP1405175B1 (en) | Multiprocessor system and method for operating a multiprocessor system | |
CN1991768B (en) | Instruction set architecture-based inter-sequencer communicating with a heterogeneous resource | |
TWI541725B (en) | Resource management in a multicore architecture | |
US5442789A (en) | System and method for efficiently loading and removing selected functions on digital signal processors without interrupting execution of other functions on the digital signal processors | |
KR101400286B1 (en) | Method and apparatus for migrating task in multi-processor system | |
US7698373B2 (en) | Method, processing unit and data processing system for microprocessor communication in a multi-processor system | |
CN103221936A (en) | Shared function-memory circuitry for a processing cluster | |
EP1064600A2 (en) | Interrupt/software-controlled thread processing | |
US4725946A (en) | P and V instructions for semaphore architecture in a multiprogramming/multiprocessing environment | |
JP2001142842A (en) | Dma handshake protocol | |
AU603876B2 (en) | Multiple i/o bus virtual broadcast of programmed i/o instructions | |
US20030018680A1 (en) | Smart internetworking operating system for low computational power microprocessors | |
US6581089B1 (en) | Parallel processing apparatus and method of the same | |
US20040039884A1 (en) | System and method for managing the memory in a computer system | |
JP2022079764A (en) | Synchronous control system and synchronous control method | |
CN117149471B (en) | Communication method, device, embedded system, storage medium and electronic equipment | |
Guo et al. | Research on inter-process communication based on multi-core MCUs | |
CN114816701B (en) | Thread management method, electronic device and storage medium | |
US10235225B2 (en) | Data processing system having messaging | |
US9753765B1 (en) | Multi-processor integrated circuits | |
Rivas et al. | Early experience with an implementation of the POSIX. 13 minimal real-time operating system for embedded applications | |
Avula et al. | SplitThreads-Split-C threads |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
AK | Designated states |
Kind code of ref document: A2 Designated state(s): CN JP US |
|
AL | Designated countries for regional patents |
Kind code of ref document: A2 Designated state(s): AT BE CH CY DE DK ES FI FR GB GR IE IT LU MC NL PT SE TR |
|
WWE | Wipo information: entry into national phase |
Ref document number: 2002735883 Country of ref document: EP |
|
121 | Ep: the epo has been informed by wipo that ep was designated in this application | ||
WWE | Wipo information: entry into national phase |
Ref document number: 10481875 Country of ref document: US |
|
WWE | Wipo information: entry into national phase |
Ref document number: 028130588 Country of ref document: CN |
|
WWE | Wipo information: entry into national phase |
Ref document number: 2003511119 Country of ref document: JP |
|
WWP | Wipo information: published in national office |
Ref document number: 2002735883 Country of ref document: EP |
|
WWG | Wipo information: grant in national office |
Ref document number: 2002735883 Country of ref document: EP |