Array comparison and swap operations
11 claims: 3 independent, 8 dependent
- 1A method for executing a multi-word compare and swap operation conditionally upon the successful acquisition of associated write locks, the method comprising:during a transaction, attempting (225) to acquire a write lock provided by an implementation of a software transactional memory, STM, system for each of a set of memory locations of the STM;characterized in that if (235) a write lock is acquired for each of the memory locations, comparing (230) a current value in each memory location of the set of memory locations to a corresponding expected value for each memory location;if the comparing yields the same, predetermined result for each of the set of memory locations, storing (245) in each memory location a corresponding new value;after storing the new values in the memory locations, committing the transaction;and wherein the STM system stores the new value in the memory locations and commits the transaction without recording the current values of the memory locations in a log and without buffering the new values in a buffer.
- 8A system for executing a multi-word compare and swap operation conditionally upon the successful acquisition of associated write locks, the system comprising:a processor (105) ;a memory (115) communicatively coupled to the processor;a software transactional memory (100), STM, system loadable in the memory;and a multi-word compare and swap, MCAS, module loadable in the memory, the MCAS module configured to: during a transaction, attempt (225) to acquire a write lock provided by an implementation of the STM system for each of a set of memory locations of the STM;characterized in that if a write lock is acquired for each of the set of memory locations, to compare (230) a current value in each memory location of the set of memory locations to a corresponding expected value for each memory location;and if the comparing yields the same, predetermined result for each of the set of memory locations, to store (245) in each memory location a corresponding new value;after storing the new values in the memory locations, committing the transaction;and wherein the system is further configured to: store the new values in the memory locations and commit the transaction without recording the current values stored in the memory locations in a log and without buffering the new values in a buffer.
Independent claims3
33 paragraphs, as filed
<u>Background</u>
0001Software Transactional Memory (STM) Systems are known in the art. In general, these systems provide primitives useful for concurrent programming and other applications that allow a program to designate a set of actions as a transaction, in that the actions within the transaction execute atomically. Typically, the primitives include commands or calls to begin a transaction, to terminate a transaction normally, and to abort a transaction and roll back all effects of the aborted transaction. Many known implementations of STM systems exist. STM systems are implemented in software and so may be distinguished from hardware-based transactional memory (HTM) systems.
0002A useful primitive for use in concurrent programs is atomic Multi-Word Compare and Swap (MCAS). This primitive executes atomically. It compares the values in a set of memory locations in memory with a provided corresponding set of values. If each provided value matches the corresponding value in memory, the MCAS primitive then stores a provided set of new values into the set of memory locations, and returns a completion code indicating success; otherwise, no changes are made to memory and MCAS returns a completion code indicating failure. Existing implementations of MCAS such as Fraser, Practical Lock Freedom (Keir Fraser, Practical Lock Freedom, PhD. dissertation) use pointer values, and either logging or buffering of updates (during the MCAS operation) to ensure atomicity. Such buffering or logging adds overhead to such MCAS implementations.
0003<nplcit id="ncit0001" npl-type="s"><text>SAHA, B. et al: "McRT-STM: A High Performance Software Transactional Memory System for a Multi-Core Runtime" ACM 2 PENN PLAZA, SUITE 701 New York USA, 29 March 2006</text></nplcit> XP040036975 discloses a software transactional memory (STM) that is part of McRT, an experimental Multi-Core Run Time. A MCAS implementation that works on arbitrary values, coexists with the STM, and can be used as a more efficient form of transactional memory is disclosed. The document notes that having an efficient MCAS is important for two reasons: (1) MCAS can be used by expert programmers to write concurrent data structures, and (2) MCAS can be a convenient interface to a hardware transactional memory (HTM) implementation.
0004Aspects of the present invention are set out in the appended independent claims.
<u>Brief Description of the Drawings</u>
0005<ul id="ul0001" list-style="none"><li><figref idref="f0001"><b>Figure 1</b></figref> depicts a processor-based system in one embodiment.</li><li><figref idref="f0002"><b>Figure 2</b></figref> depicts the flow of processing in one embodiment.</li></ul>
<u>Detailed Description</u>
0006Referring to <figref idref="f0001">Figure 1</figref>, a processor based system as shown may include one or more processors 105 coupled to a bus 110. Alternatively the system may have a processor that is a multi-core processor, or in other instances, multiple multi-core processors. In some embodiments the processor may be hyperthreaded, or able to perform in a manner as if it is a multi-core processor despite having only a single core. In a simple example, the bus 110 may be coupled to system memory 115, storage devices such as disk drives or other storage devices 120, and peripheral devices 145. The storage 120 may store various software or data. The system may be connected to a variety of peripheral devices 145 via one or more bus systems. Such peripheral devices may include displays and printing systems, among many others, as is known.
0007The system of <figref idref="f0001">figure 1</figref> is only an example and the present invention is not limited to any particular architecture. Variations on the specific components of the systems of other architectures may include the inclusion of transactional memory as a component of a processor or processors of the system in some instances; in others, it may be a separate component on a bus connected to the processor. In other embodiments, the system may have additional instructions to manage lock free transactions. The actual form or format of the instructions in other embodiments may vary. Additional memory or storage components may be present. A large number of other variations are possible.
0008In one embodiment, functionality provided to support a general software transactional memory (STM) implementation, may be used to provide an MCAS operation as part of the software of a system such as that depicted in <figref idref="f0001">Figure 1</figref>. Specifically, the MCAS operation may use reader-writer locks maintained by an STM to implement the underlying concurrency control required for transactions.
0009Some features of an instance of an STM system used in this embodiment are next described at a high level. This STM implementation maintains an array of reader-writer locks. A reader-writer lock is a lock that allows multiple readers to acquire access to the lock and then to read a memory location; but only allows a single writer to obtain access to the lock and then to write to the memory location. Every memory location in use by the STM is mapped to a unique reader-writer lock. The number of unique reader-writer locks maintained by the STM will depend on the mapping function. In one instance, an implementation may use a hashing function that masks off the lower bits of an address, e.g. six bits, as a mapping function to get a cache line address corresponding to a memory location at that address. The cache line address can then be used as an index into an array of reader-writer locks..
0010Thus, for example, if a program being executed by a processor attempts a transactional read from a memory location using the services of the STM, at an address A, the STM system first computes a hash of the address of that memory location. The STM system then computes the reader-writer lock corresponding to the hash, <i>L.</i> The system then tries to acquire a read lock on <i>L.</i> If the STM system succeeds,the STM system then returns the value at location <i>A</i> and stores an indication into the transaction-local read set that the STM system has obtained a read lock on <i>L.</i> Similarly, if the program attempts a transactional write to a memory location using the services of an STM, at an address <i>A</i>, the STM computes the reader-writer lock, <i>L</i> as before, and then tries to acquire an exclusive write lock on <i>L.</i> If STM system succeeds, the STM system then updates the memory location A and keeps a copy of the old value of <i>A</i> in a log, in case the transaction has to be rolled back. In addition, the STM system also stores an indication into a transaction-local write set that the STM system has acquired a write lock on <i>L.</i>
0011If implementation of a transaction by the STM system fails to acquire either a reader or writer lock in this implementation, the STM system retries after a back-off period, which may be a randomly determined period of time. A fixed number of retries is allowed, after which the STM system aborts the transaction and all locks are released. A counter may be used to track the number of retries in some embodiments. Any memory locations modified after the start of the transaction are also returned to their original value, based on the logs that have been maintained by the STM system for this transaction. This abort mechanism is intended to prevent deadlocks.
0012If the transaction successfully acquires all necessary locks and completes processing, the STM system then releases all locks, and discards all logged values. This marks a successful commit of the transaction in this STM system.
0013As previously discussed, an MCAS primitive provides an atomic way for a program to test whether a set of values in-memory matches a predetermined set of values provided as a parameter to the MCAS function, and to swap out the values in the in-memory set for a replacement set of values passed in as a parameter if the comparison yields a positive result, i.e. the predetermined set of values is the same as the set of values in memory. In one embodiment, an MCAS primitive may be implemented by a system that also provides a STM, using the underlying mechanisms that are used to implement the STM system. In the following, an STM system with reader-writer locks such as the one described above is presumed to underlie an MCAS implementation in one embodiment. One feature of this embodiment is that the MCAS implementation uses the same reader-writer locks as are used by the STM mechanism.
0014The implementation in this embodiment has several features. First, the embodiment comprises a generalized implementation of MCAS, in that the embodiment is an implementation that may be expanded to arbitrarily sized set of locations.. Second, the embodiment comprises an implementation of MCAS that does not have the excess overhead associated with existing implementations of MCAS due to logging or buffering at intermediate stages of execution. Finally this implementation of MCAS coexists without interference with the underlying STM, because the same locking mechanisms that provide concurrency control and synchronization for the STM are used to implement MCAS, and thus, interference between STM transactions and MCAS operations is unlikely to occur.
0015The flowchart in <figref idref="f0002">figure 2</figref> depicts, at a high level, the implementation of MCAS using an STM mechanism in this embodiment. The figure depicts an implementation of an MCAS primitive which may be considered to have an interface that may be represented as the following function call: <ul id="ul0002" list-style="none" compact="compact"><li>Bool MCAS(int k, void* addr[], uint32 oldValue[], uint32 newValue[]);</li></ul>
0016This call, which is presented in a C-like syntax, provides a function MCAS which takes as parameters an integer <i>k</i>; a reference or pointer parameter <i>addr</i> which provides the set of <i>k</i> memory addresses that will be used for the MCAS operation; and two value parameters, an array of integers <i>oldValue</i> for comparison, and an array of integers <i>newValue</i> for swapping into the memory array, each of size <i>k</i>. When this function executes, the effect is as follows: If the values in the set of memory locations specified through the addresses in <i>addr</i> match the corresponding value in the array parameter <i>oldValue,</i> then the function stores the new values in the array <i>newValue</i> in the set of memory locations specified through the addresses in <i>addr</i> and returns the logical value <u>true</u>; otherwise, the function leaves the memory locations unchanged and returns <u>false</u>.
0017To achieve the functionality of MCAS, the underlying operation as shown in <figref idref="f0002">figure 2</figref> begins, 215, by first computing reader-writer lock addresses for each of the <i>k</i> locations involved in MCAS at 220. The implementation then, at 225, attempts to acquire write locks on all <i>k</i> reader-writer locks. If a lock is not acquired at the first attempt, in some embodiments, the implementation may retry lock acquisition a fixed number of times, and a counter may be used to keep track of the number of attempts. If all locks are acquired 235, then the implementation checks if all <i>k</i> locations in the array have the expected values (i.e., those provided in the parameter <i>oldValue</i>)<i>.</i> If not all locks are acquired even after retries (if any) (path 235-240), or if not all locations in the array have the expected values (path 230-240), then all acquired locks are released and the function returns a value of <u>false</u> at 240 and terminates, 255. If however, all locks are acquired and the <i>k</i> locations all have the expected values, then the new values in the <i>newValue</i> array are stored at 245, and in this path through the flow, all locks are released at 250 and the function returns the value of <u>true</u>, terminating at 255.
0018In this embodiment, the actions at 220 in <figref idref="f0002">figure 2</figref>, specifically, the computation of reader-writer locks for the locations involved in MCAS, may be further explained with reference to the mechanism of reader-writer locks described earlier. The implementation of MCAS performs the same actions as the underlying STM system in attempting to acquire a lock. Specifically, just like the STM, implementation of the MCAS call computes the index of a lock in an array of reader-writer locks by starting with the address of each of the <i>k</i> memory locations specified through <i>addr,</i> first masking of the lowest six bits of the address of each memory location to obtain a cache line address for the location; and implementation of the MCAS then uses the cache line address as an index into the array of reader-writer locks.
0019One feature of the implementation described above is that the embodiment does not require the logging or check pointing of the values in the memory locations specified through <i>addr</i> before the new values are written at 245. This is because when the MCAS implementation reaches 245, several assertions may be seen to be true. First, because parameters <i>oldValue</i> and <i>newValue</i> are passed by value, no address exceptions are likely to occur with reference to those parameters. Because all comparisons are complete, no arithmetic exceptions are likely to occur at this stage. Furthermore, because each address in the <i><u>k</u></i>-element set of addresses specified through <i>addr</i> has already been used to compute a cache line address and thus to reference a lock, no access to an address in the array is likely to generate a memory exception because the lock array computation has effectively also validated all the addresses in the array. It may thus be presumed that the storing of new values in the in-memory array will complete without error and thus it is possible to avoid logging or check pointing the old values at this stage, thereby reducing potentially delaying overhead.
0020While the above description pertains to the above-described embodiment, many variations are possible. First, the MCAS function is typically described, as it is above, with reference to a comparison for equality between a set of values in memory and a set of predetermined values passed to the function, and the values passed into the function are only swapped if each value in the set of memory locations is equal to the corresponding value passed as a parameter. In other embodiments, however, functions similar to MCAS that use comparisons other than equality may be used. Many such comparisons and results are known in the art. For example, an artisan may readily envisage an operation in which the comparison between the in-memory set of locations and the parameter array is a "less than" or a "greater than" comparison, and the swap only occurs if the in memory values are "less than" or "greater than" the corresponding parameter values. Such an MCAS-like function may readily be implemented by processing analogous to that shown in <figref idref="f0002">figure 2</figref> for MCAS. Other comparisons and actions dependent on the results of the comparison are similarly possible.
0021Furthermore, the values stored in the arrays may be arbitrary data types, and are not restricted to fixed size data. For example, each element in the arrays could be a text string, graphic image, or other multi-part data type, for which some data-dependent comparison predicate is defined. Thus for example, an MCAS-like operation that swaps out an array of text strings may readily be envisaged.
0022For generality, all of the above-discussed variations are referred to as MCAS-like in the following.
0023Furthermore, while the above implementation of MCAS and MCAS-like operations is described with reference to an underlying mechanism that is shared with an STM, the processing described with reference to <figref idref="f0002">figure 2</figref> may be possible even in the absence of an STM. If an array of reader-writer locks is available that satisfies the requirements of the MCAS operation, the above processing may be implemented despite the absence of an STM in the system. Moreover, in some instances, a hardware-based transactional memory system may provide the locking mechanism required to implement MCAS, in a manner analogous to that provided by the STM implementation in the preceding description of embodiments.
0024As may readily be understood by one in the art, the actual computation of the reader-writer lock reference based on a memory address may be done in a practically unlimited number of ways, many of which do not relate to the cache line computation described with reference to embodiments referenced above. For example, an arbitrary hashing function and hash table may be used to compute lock addresses and to store the locks for memory locations.
0025Finally, it should be clear to an artisan that the representative interface to the MCAS function and the processing depicted in <figref idref="f0002">figure 2</figref> are merely those in one exemplary embodiment. As is known, many variations in syntax and naming are possible in expressing the interface to MCAS, and furthermore processing flow may be altered in an unlimited number of ways without affecting the basic input-output functionality of an implementation of a software functions. Thus, many alternatives to the implementation of MCAS and other MCAS-like primitives discussed above are possible.
0026Some portions of the detailed description above are presented in terms of algorithms and symbolic representations of operations on data bits within a processor-based system. These algorithmic descriptions and representations are the means used by those skilled in the art to most effectively convey the substance of their work to others in the art. The operations are those requiring physical manipulations of physical quantities. These quantities may take the form of electrical, magnetic, optical or other physical signals capable of being stored, transferred, combined, compared, and otherwise manipulated. It has proven convenient at times, principally for reasons of common usage, to refer to these signals as bits, values, elements, symbols, characters, terms, numbers, or the like.
0027It should be borne in mind, however, that all of these and similar terms are to be associated with the appropriate physical quantities and are merely convenient labels applied to these quantities. Unless specifically stated otherwise as apparent from the description, terms such as "executing" or "processing" or "computing" or "calculating" or "determining" or the like, may refer to the action and processes of a processor-based system, or similar electronic computing device, that manipulates and transforms data represented as physical quantities within the processor-based system's storage into other data similarly represented or other such information storage, transmission or display devices.
0028In the description of the embodiments, reference may be made to accompanying drawings. In the drawings, like numerals describe substantially similar components throughout the several views. Other embodiments may be utilized and structural, logical, and electrical changes may be made. Moreover, it is to be understood that the various embodiments, although different, are not necessarily mutually exclusive. For example, a particular feature, structure, or characteristic described in one embodiment may be included within other embodiments.
0029Further, a design of an embodiment that is implemented in a processor may go through various stages, from creation to simulation to fabrication. Data representing a design may represent the design in a number of manners. First, as is useful in simulations, the hardware may be represented using a hardware description language or another functional description language. Additionally, a circuit level model with logic and/or transistor gates may be produced at some stages of the design process. Furthermore, most designs, at some stage, reach a level of data representing the physical placement of various devices in the hardware model. In the case where conventional semiconductor fabrication techniques are used, data representing a hardware model may be the data specifying the presence or absence of various features on different mask layers for masks used to produce the integrated circuit. In any representation of the design, the data may be stored in any form of a machine-readable medium. An optical or electrical wave modulated or otherwise generated to transmit such information, a memory, or a magnetic or optical storage such as a disc may be the machine readable medium. Any of these mediums may "carry" or "indicate" the design or software information. When an electrical carrier wave indicating or carrying the code or design is transmitted, to the extent that copying, buffering, or re-transmission of the electrical signal is performed, a new copy is made. Thus, a communication provider or a network provider may make copies of an article (a carrier wave) that constitute or represent an embodiment.
0030Embodiments may be provided as a program product that may include a machine-readable medium having stored thereon data which when accessed by a machine may cause the machine to perform a process according to the claimed subject matter. The machine-readable medium may include, but is not limited to, floppy diskettes, optical disks, DVD-ROM disks, DVD-RAM disks, DVD-RW disks, DVD+RW disks, CD-R disks, CD-RW disks, CD-ROM disks, and magneto-optical disks, ROMs, RAMs, EPROMs, EEPROMs, magnet or optical cards, flash memory, or other type of media / machine-readable medium suitable for storing electronic instructions. Moreover, embodiments may also be downloaded as a program product, wherein the program may be transferred from a remote data source to a requesting device by way of data signals embodied in a carrier wave or other propagation medium via a communication link (e.g., a modem or network connection).
2 sheets
Sheet 1 Sheet 2
Every citation, both ways
| Document | Relation | Office |
|---|---|---|
| US2004006674A1 | Cites | United States of America |
| US2006010077A1 | Cites | United States of America |
| US6466825B1 | Cites | United States of America |
| US6644495B2 | Cites | United States of America |
| SAHA, B. ET AL.: "McRT-STM: A High Performance Software TransactionalMemory System for a Multi-Core Runtime" ACM, 2 PENN PLAZA, SUITE 701 - NEW YORK USA, 29 March 2006 (2006-03-29), XP040036975 | Non-patent | – |
| KEIR FRASER: "Practical lock-freedom" INTERNET CITATION 1 February 2004 (2004-02-01), pages 1-116, XP002556510 Retrieved from the Internet: URL:http://www.cl.cam.ac.uk/techreports/UC AM-CL-TR-579.html [retrieved on 2004-02-01] | Non-patent | – |
8 members in 4 offices
Priority claims7
| Document | Office | Kind | Date |
|---|---|---|---|
| 39541006 | United States of America | A | |
| 395410 | United States of America | – | |
| 2007008009 | United States of America | W | |
| WO2007US08009 | – | – | – |
| US20060395410 | – | – | – |
| 395410 | – | – | – |
| 2007008009 | – | – | – |
Members8
| Document | Office | Kind | |
|---|---|---|---|
| US2007233970A1 | United States of America | A1 | |
| WO2007123756A1 | World Intellectual Property Organization (WIPO) | A1 | |
| EP2005306A1 | European Patent Office (EPO) | A1 | |
| CN101416168A | China | A | |
| EP2005306A4 | European Patent Office (EPO) | A4 | |
| CN101416168B | China | B | |
| US8108627B2 | United States of America | B2 | |
| EP2005306B1This record | European Patent Office (EPO) | B1 |
68 legal events, as 9 offices reported them to INPADOC
Over the term
Point at a mark for the eventEvents
| Event | Code | Office | |
|---|---|---|---|
| Annual fee paid to national office [announced via postgrant information from national office to epo]GrantedPGFP | PGFP | EP | |
| Annual fee paid to national office [announced via postgrant information from national office to epo]GrantedPGFP | PGFP | EP | |
| Annual fee paid to national office [announced via postgrant information from national office to epo]GrantedPGFP | PGFP | EP | |
| Annual fee paid to national office [announced via postgrant information from national office to epo]GrantedPGFP | PGFP | EP | |
| Opt-out of the competence of the unified patent court (upc) registeredP01 | P01 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Patent lapsedLapsedMM4A | MM4A | IE | |
| Notification of lapseLapsedST | ST | FR | |
| No opposition filed against granted patent, or epo opposition proceedings concluded without decisionGrantedR097 | R097 | DE | |
| No opposition filedOpposition26N | 26N | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Patent ceasedCeasedPL | PL | CH | |
| No opposition filed within time limitOppositionORIGINAL CODE: 0009261PLBE | PLBE | EP | |
| Information on the status of an ep patent application or granted ep patentGrantedSTATUS: NO OPPOSITION FILED WITHIN TIME LIMITSTAA | STAA | EP | |
| No opposition filed against granted patent, or epo opposition proceedings concluded without decisionGrantedR097 | R097 | DE | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Invalidated european patentMG4D | MG4D | LT | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Deletion acc. to par. 5 (withdrawal of the translation of the ep patent)MK05 | MK05 | AT | |
| Dpma publication of mentioned ep patent grantGrantedR096 | R096 | DE | |
| European patents granted designating irelandGrantedFG4D | FG4D | IE | |
| Reference to at number (ep patent validated in austria)REF | REF | AT | |
| Translation filed for an european patent granted for nl, confirming art. 52 par. 1 or 6 of the patents act 1995GrantedT3 | T3 | NL | |
| European patent takes effect as a national patent in ch/liEP | EP | CH | |
| Designated contracting statesAK | AK | EP | |
| European patent grantedGrantedFG4D | FG4D | GB | |
| (expected) grantORIGINAL CODE: 0009210GRAA | GRAA | EP | |
| Grant fee paidORIGINAL CODE: EPIDOSNIGR3GRAS | GRAS | EP | |
| Intention to grant announcedINTG | INTG | EP | |
| Information provided on ipc code assigned before grantRIC1 | RIC1 | EP | |
| Information provided on ipc code assigned before grantRIC1 | RIC1 | EP | |
| Information provided on ipc code assigned before grantRIC1 | RIC1 | EP | |
| Information provided on ipc code assigned before grantRIC1 | RIC1 | EP | |
| Despatch of communication of intention to grant a patentORIGINAL CODE: EPIDOSNIGR1GRAP | GRAP | EP | |
| Request for extension of the european patent (deleted)DAX | DAX | EP | |
| First examination report despatched17Q | 17Q | EP | |
| Supplementary search report drawn up and despatchedA4 | A4 | EP | |
| Information provided on ipc code assigned before grantRIC1 | RIC1 | EP | |
| Information provided on ipc code assigned before grantRIC1 | RIC1 | EP | |
| Information provided on ipc code assigned before grantRIC1 | RIC1 | EP | |
| Request for examination filed17P | 17P | EP | |
| Designated contracting statesAK | AK | EP | |
| Public reference made under article 153(3) epc to a published international application that has entered the european phaseORIGINAL CODE: 0009012PUAI | PUAI | EP |
Numbers
- Publication
- 2005306
- Publication, DOCDB
- 2005306
- Publication, EPODOC
- EP2005306
- Application
- 7754521
- Application, DOCDB
- 07754521
- Application, EPODOC
- EP20070754521
Titles3
- German
- ARRAY-VERGLEICHS- UND AUSTAUSCH-OPERATIONEN
- English
- ARRAY COMPARISON AND SWAP OPERATIONS
- French
- OPÉRATIONS DE COMPARAISON ET DE PERMUTATION DE MATRICES
Classification
- CPC, 1
- G06F9/526
- IPC, 4
- G06F13 00
- G06F9 52
- G06F12 02
- G06F17 30
Designated states32
- Contracting states, 32
- Austria
- Belgium
- Bulgaria
- Switzerland
- Cyprus
- Czechia
- Germany
- Denmark
- Estonia
- Spain
- Finland
- France
- United Kingdom
- Greece
- Hungary
- Ireland
- Iceland
- Italy
- Liechtenstein
- Lithuania
- Luxembourg
- Latvia
- Monaco
- Malta
and 8 moreShow fewer
- Netherlands (Kingdom of the)
- Poland
- Portugal
- Romania
- Sweden
- Slovenia
- Slovakia
- Türkiye
