CN110780840A - Method and system for implementing multi-path sequencer - Google Patents

Method and system for implementing multi-path sequencer Download PDF

Info

Publication number
CN110780840A
CN110780840A CN201911047883.0A CN201911047883A CN110780840A CN 110780840 A CN110780840 A CN 110780840A CN 201911047883 A CN201911047883 A CN 201911047883A CN 110780840 A CN110780840 A CN 110780840A
Authority
CN
China
Prior art keywords
data
minimum value
value data
register
minimum
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.)
Granted
Application number
CN201911047883.0A
Other languages
Chinese (zh)
Other versions
CN110780840B (en
Inventor
魏世朋
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.)
Hunan Goke Microelectronics Co Ltd
Original Assignee
Hunan Goke Microelectronics Co Ltd
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 Hunan Goke Microelectronics Co Ltd filed Critical Hunan Goke Microelectronics Co Ltd
Priority to CN201911047883.0A priority Critical patent/CN110780840B/en
Publication of CN110780840A publication Critical patent/CN110780840A/en
Application granted granted Critical
Publication of CN110780840B publication Critical patent/CN110780840B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F7/00Methods or arrangements for processing data by operating upon the order or content of the data handled
    • G06F7/06Arrangements for sorting, selecting, merging, or comparing data on individual record carriers
    • G06F7/08Sorting, i.e. grouping record carriers in numerical or other ordered sequence according to the classification of at least some of the information they carry
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y02TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
    • Y02DCLIMATE CHANGE MITIGATION TECHNOLOGIES IN INFORMATION AND COMMUNICATION TECHNOLOGIES [ICT], I.E. INFORMATION AND COMMUNICATION TECHNOLOGIES AIMING AT THE REDUCTION OF THEIR OWN ENERGY USE
    • Y02D10/00Energy efficient computing, e.g. low power processors, power management or thermal management

Abstract

The application discloses a method and a system for realizing a multi-channel sequencer, wherein the method comprises the following steps: respectively putting data to be sorted into different registers; respectively reading data in the registers; solving the minimum value in the data to obtain the minimum value data and the position corresponding to the minimum value data; respectively storing the minimum value data and the positions corresponding to the minimum value data to a shift register; judging whether the cycle number is smaller than a preset value, wherein the cycle number is the number of times of solving the minimum value data; if the cycle number is smaller than the preset value, excluding the register where the minimum data is located, and continuously solving the minimum value in the data; and if the circulation times are larger than or equal to the preset value, stopping circulation to obtain the sequenced data. The method adopts the minimum value to replace the actual sequencing operation, and the shift register carries out shift register on the minimum value obtained each time, so that the method consumes less logic resources, well balances the calculation delay and the logic resources, and greatly reduces the cost.

Description

Method and system for implementing multi-path sequencer
Technical Field
The present application relates to the field of electronic circuits and semiconductor technologies, and in particular, to a method and a system for implementing a multi-way sequencer.
Background
Sorting is an operation that arranges a string of records in ascending or descending order according to the size of some keyword or keywords, and is widely used in automatic control, web searching, office document operation and the like. A sorting algorithm is how to make the records arranged as desired.
Classical sorting algorithms are bubble sorting, selection sorting, insertion sorting, etc., wherein bubble sorting is a simple sorting algorithm that repeatedly walks through the series to be sorted, compares two elements at a time, swaps them if their order is wrong, and repeats the task of walking through the series until no more elements need to be swapped, i.e., the series has been sorted; the selection sorting is one of the most stable sorting algorithms, and the working principle is as follows: firstly, finding the minimum (large) element in the unsorted sequence, storing the minimum (large) element to the initial position of the sorted sequence, then continuously searching the minimum (large) element from the rest unsorted elements, then placing the minimum (large) element to the tail of the sorted sequence, and so on until all the elements are sorted; the insert sorting is a simple and intuitive sorting algorithm, and the working principle of the insert sorting is as follows: by constructing an ordered sequence, for the data that is not ordered, the data is scanned from back to front in the ordered sequence, and the corresponding position is found and inserted.
However, most of these sorting algorithms are suitable for being implemented by software, and if these algorithms are implemented by an RTL hardware circuit, a contradiction between processing delay and logic resources occurs, that is, the sorting algorithm with a small computation delay consumes very large logic resources, and the sorting algorithm with a small computation delay consumes very large computation delay, so that the classical sorting algorithm cannot achieve a good balance between logic resources and computation delay.
Disclosure of Invention
The application provides a method and a system for realizing a multi-path sequencer, which are used for solving the problem that the conventional sequencing algorithm cannot achieve good balance between logic resources and calculation delay.
In order to solve the technical problem, the embodiment of the application discloses the following technical scheme:
in a first aspect, an embodiment of the present application discloses a method for implementing a multi-way sequencer, where the method includes:
s1: respectively putting data to be sorted into different registers;
s2: respectively reading the data in the registers;
s3: solving the minimum value in the data to obtain the minimum value data and the position corresponding to the minimum value data;
s4: storing the positions corresponding to the minimum value data and the minimum value data to a shift register respectively;
s5: judging whether the cycle number is smaller than a preset value, if so, executing step S6; if not, go to step S7; wherein the cycle number is the number of times of obtaining minimum value data;
s6: excluding the register where the minimum data is located, and continuing to execute S2, S3, S4 and S5;
s7: and stopping circulation to obtain the sequenced data.
Optionally, the obtaining of the minimum value in the data to obtain the minimum value data and the position corresponding to the minimum value data includes:
acquiring the minimum value of the data in the register;
and acquiring the position corresponding to the minimum data according to the minimum data.
Optionally, storing the minimum value data and the corresponding positions of the minimum value data to a shift register respectively includes:
acquiring cycle times corresponding to the minimum data;
and respectively storing the minimum value data and the positions corresponding to the minimum value data to a first shift register and a second shift register according to the cycle times.
Optionally, the excluding processing is performed on the register where the minimum value data is located, and includes:
and replacing the data in the register where the minimum value data is located with an infinite value.
Optionally, the excluding processing is performed on the register where the minimum value data is located, and includes:
and deleting the data in the register of the minimum data.
In a second aspect, an embodiment of the present application further discloses an implementation system of a multi-way sequencer, including:
the register is used for storing data to be sorted;
the minimum value acquisition module is used for solving the minimum value in the data to obtain the minimum value data and the position corresponding to the minimum value data;
the shift register is used for respectively storing the minimum value data and the position corresponding to the minimum value data;
the judging module is used for judging whether the cycle number is smaller than a preset value, wherein the cycle number is the number of times of solving minimum value data;
the exclusion processing module is used for excluding the register where the minimum data is located when the cycle number is smaller than the preset value;
and the circulation stopping module is used for stopping circulation when the circulation times are greater than or equal to the preset value to obtain the sequenced data.
Optionally, the shift register includes:
the first shift register is used for storing the minimum value data according to the cycle number corresponding to the minimum value data;
and the second shift register is used for storing the position corresponding to the minimum value data according to the cycle number corresponding to the minimum value data.
Optionally, the excluding processing module includes:
and the replacing module is used for replacing the data in the register where the minimum value data is located with an infinite value.
Optionally, the excluding processing module includes:
and the deleting module is used for deleting the data in the register where the minimum data is located.
Compared with the prior art, the beneficial effect of this application is:
the implementation method of the multi-way sequencer provided by the embodiment of the application comprises the following steps: respectively putting data to be sorted into different registers; respectively reading data in the registers; solving the minimum value in the data to obtain the minimum value data and the position corresponding to the minimum value data; storing the minimum value data and the positions corresponding to the minimum value data to a register respectively; judging whether the cycle number is smaller than a preset value, wherein the cycle number is the number of times of solving minimum value data; if the cycle number is smaller than the preset value, excluding the register where the minimum value data is located, and continuously obtaining the minimum value data and other operations; and if the circulation times are larger than or equal to the preset value, stopping circulation to obtain the sequenced data. The implementation method of the multi-channel sequencer provided by the application adopts the multi-channel minimum value acquisition to replace the actual sequencing operation, and the minimum value acquired each time is subjected to shift register by the shift register, so that the method consumes less logic resources, has moderate logic processing delay, can well balance the calculation delay and the logic resources, and greatly reduces the cost.
It is to be understood that both the foregoing general description and the following detailed description are exemplary and explanatory only and are not restrictive of the application.
Drawings
In order to more clearly explain the technical solution of the present application, the drawings needed to be used in the embodiments will be briefly described below, and it is obvious to those skilled in the art that other drawings can be obtained according to the drawings without creative efforts.
Fig. 1 is a flowchart of an implementation method of a multi-way sequencer according to an embodiment of the present application;
fig. 2 is a block diagram of an implementation system of a multi-way sequencer according to an embodiment of the present application;
fig. 3 is a block diagram of an implementation system of another multi-way sequencer according to an embodiment of the present application.
Detailed Description
In order to make those skilled in the art better understand the technical solutions in the present application, the technical solutions in the embodiments of the present application will be clearly and completely described below with reference to the drawings in the embodiments of the present application, and it is obvious that the described embodiments are only a part of the embodiments of the present application, and not all the embodiments. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present application.
Referring to fig. 1, a flowchart of an implementation method of a multi-way sequencer according to an embodiment of the present application is provided.
As shown in fig. 1, an implementation method of a multi-way sequencer provided in the embodiment of the present application includes:
s1: and respectively putting the data to be sorted into different registers.
The present application is explained with a 64-way sequencer, and 64 data1-data64 are respectively temporarily stored in 64 registers.
S2: the data in the registers are read separately.
And reading the data in the registers as required, and if 64 data are required to be sequenced, respectively reading 64 data from the 64 registers.
S3: and calculating the minimum value in the data to obtain the minimum value data and the position corresponding to the minimum value data.
The read data (64 data) are input to the minimum value obtainer, and the minimum value data min _ data and the position min _ data _ id corresponding to the minimum value data in the 64 data are obtained, and if the minimum value is 2, the minimum value is located in the 15 th register.
S4: and respectively storing the positions corresponding to the minimum value data and the minimum value data to the shift register.
After the positions corresponding to the minimum value data and the minimum value data in the 64 data are obtained, the positions are respectively stored into a shift register, the positions can be stored to the first bit or the last bit of the shift register according to the sorting requirement, and if 64 paths of data are sorted from large to small, the positions corresponding to the minimum value data and the minimum value data in the 64 paths of data are respectively stored to the last bit of the shift register; and sequencing the 64 paths of data from small to large, and respectively storing the positions corresponding to the minimum value data and the minimum value data in the 64 paths of data to the first bit of the shift register.
In this example, the minimum value data and the position corresponding to the minimum value data can be respectively stored in the first shift register and the second shift register through the cycle number corresponding to the minimum value data, if the cycle number corresponding to the minimum value data obtained this time is 2, that is, the minimum value of the data is obtained for the second time, if 64-channel data are sorted from large to small, the minimum value data is stored to the 2 nd bit on the right of the first shift register, and the position corresponding to the minimum value data is stored to the 2 nd bit on the right of the second shift register; if 64-path data are sorted from small to large, the minimum value data is stored to the 2 nd bit on the left side of the first shift register, and the position corresponding to the minimum value data is stored to the 2 nd bit on the left side of the second shift register.
S5: judging whether the cycle number is smaller than a preset value, if so, executing step S6; if not, go to step S7; the number of cycles is the number of times of obtaining the minimum value data.
Adding 1 to the cycle number each time the minimum value data and the position corresponding to the minimum value data are obtained, if 64 data are to be sequenced, setting the preset value to 64, and judging whether the cycle number is smaller than 64; if the data does not need to be sorted, only a part of the data needs to be selected to obtain the minimum value, for example, 24 data, the preset value is only required to be set to 24. If the cycle number is less than the preset value, executing S6; if the number of cycles is greater than or equal to the preset value, S7 is executed.
S6: the exclusion processing is performed on the register where the minimum value data is located, and the execution continues to S2, S3, S4, and S5.
If the cycle number of the minimum value data is less than the preset value, if the minimum value is first obtained for 64 paths of data, namely the cycle number is less than the preset value 64, the register where the minimum value data is located is excluded, S2, S3, S4 and S5 are continuously executed, namely the data in the register are read again, the minimum value in the data is obtained, the position corresponding to the minimum value data and the position corresponding to the minimum value data are obtained, the positions corresponding to the minimum value data and the position corresponding to the minimum value data are respectively stored in the first shift register and the second shift register, and whether the cycle number is less than the preset value or not is judged.
When the exclusion processing is performed on the register in which the minimum value data is located, the data in the register in which the minimum value data is located may be replaced with an infinite value. If the data in the register where the minimum value data is obtained for the first time is replaced by the infinite value, then 64 paths of data containing the infinite value in the register are read, the minimum value in the 64 paths of data is obtained again, the position corresponding to the minimum value data and the minimum value data for the second time is obtained, and the position corresponding to the minimum value data and the minimum value data for the second time is respectively stored to the second bit or the second last bit of the first shift register and the second shift register according to the sorting requirement.
When the exclusion processing is performed on the register in which the minimum value data is located, the data in the register in which the minimum value data is located may be deleted. If the data in the register where the minimum value data is obtained for the first time is deleted, only 63 registers have data, then the data in the 63 registers are read, the minimum value in 63 paths of data is obtained, the positions corresponding to the minimum value data and the minimum value data for the second time are obtained, and the positions corresponding to the minimum value data and the minimum value data for the second time are respectively stored to the second bit or the last but one bit of the first shift register and the second shift register according to the sorting requirement.
And performing 64 cycles on S2, S3, S4, S5 and S6 according to the method to obtain 64 minimum value data and positions corresponding to the minimum value data, and storing the 64 minimum value data and the minimum value data into the first shift register and the second shift register respectively according to the sorting requirement.
The method for acquiring the minimum value data and the corresponding position of the minimum value data64 times is not limited to the above method, and the method only needs to circularly obtain the minimum value data and the corresponding position of the minimum value data each time, and all the methods belong to the protection scope of the embodiment of the present application.
S7: and stopping circulation to obtain the sequenced data.
If the cycle number of the acquired minimum value data is larger than or equal to a preset value, stopping the cycle, and at the moment, the content in the shift register is the sequenced data, thus finishing the sequencing of 64 paths of data.
The implementation method of the multi-channel sequencer provided by the embodiment of the application adopts the mode of obtaining 64 paths of minimum values to replace actual sequencing operation, only the minimum value in 64 paths of data is obtained each time, the minimum value obtained each time is subjected to shift register by a shift register, the content of the corresponding position of the register is required to be modified in time (the data in the corresponding register is replaced or deleted by infinity) after the minimum value is obtained each time, so that consumed logic resources are few, only 64 registers, 1 64 paths of minimum value obtainers and 2 rows of shift registers are needed, the logic processing delay is moderate, the calculation delay and the logic resources are well balanced, the structure is novel and simple, the area is saved, and the cost is greatly reduced.
Based on the implementation method of the multi-way sorter described in the above embodiment, the embodiment of the present application further provides an implementation system of the multi-way sorter.
As shown in fig. 2 and fig. 3, an implementation system of a multi-way sequencer provided in the embodiment of the present application includes:
and the register is used for storing the data to be sorted. In this example, 64 registers are needed to temporarily store 64 data1-data64 respectively.
And the minimum value acquisition module is used for solving the minimum value in the data to obtain the minimum value data and the position corresponding to the minimum value data.
And the shift register is used for respectively storing the minimum value data and the position corresponding to the minimum value data. In this example, the shift register includes a first shift register and a second shift register, wherein,
and the first shift register is used for storing the minimum value data according to the cycle number corresponding to the minimum value data. In this example, after the cycle number corresponding to the minimum value data is obtained, the minimum value data is stored in the first shift register according to the cycle number, and if 64-way data is sorted from small to large, the minimum value data is stored in a corresponding position on the left side of the first shift register according to the cycle number. If 64-path data are sorted from large to small, the minimum value data are stored to the corresponding position on the right side of the first shift register according to the cycle times.
And the second shift register is used for storing the position corresponding to the minimum value data according to the cycle number corresponding to the minimum value data. In this example, after the cycle number corresponding to the minimum value data is obtained, the position corresponding to the minimum value data is stored in the second shift register according to the cycle number, and if 64-way data is sorted from small to large, the position corresponding to the minimum value data is stored in the corresponding position on the left side of the second shift register according to the cycle number. And if the 64-path data are sorted from large to small, storing the position corresponding to the minimum data to the corresponding position on the right side of the second shift register according to the cycle times.
And the judging module is used for judging whether the cycle number is smaller than a preset value, wherein the cycle number is the number of times of solving the minimum value data.
And the exclusion processing module is used for performing exclusion processing on the register where the minimum data is located when the cycle number is smaller than a preset value. The exclusion processing module may include a replacement module or a deletion module.
And the replacing module is used for replacing the data in the register with the minimum value data into an infinite value, namely replacing the data in the register with the minimum value data into the infinite value according to the obtained minimum value data, then reading the data in the replaced register, re-obtaining the minimum value in the data, obtaining the positions corresponding to the minimum value data and the minimum value data, and respectively storing the positions corresponding to the minimum value data and the minimum value data into the first shift register and the second shift register.
And the deleting module is used for deleting the data in the register in which the minimum value data is located, namely deleting the data in the register in which the minimum value data is located according to the obtained minimum value data, reading the data in the rest registers, re-obtaining the minimum value in the data to obtain the minimum value data and the position corresponding to the minimum value data, and respectively storing the positions corresponding to the minimum value data and the minimum value data to the first shift register and the second shift register.
The implementation system of the multi-channel sequencer provided by the embodiment of the application consumes less logic resources, only a plurality of registers, 1 minimum value acquirer and 2 rows of shift registers are needed, the logic processing delay is moderate, the delay and the logic resources can be well balanced and calculated, and the cost is greatly reduced.
Other embodiments of the present application will be apparent to those skilled in the art from consideration of the specification and practice of the disclosure herein. This application is intended to cover any variations, uses, or adaptations of the invention following, in general, the principles of the application and including such departures from the present disclosure as come within known or customary practice within the art to which the invention pertains. It is intended that the specification and examples be considered as exemplary only, with a true scope and spirit of the application being indicated by the following claims.
The above-described embodiments of the present application do not limit the scope of the present application.

Claims (9)

1. A method for implementing a multi-way sequencer, the method comprising:
s1: respectively putting data to be sorted into different registers;
s2: respectively reading the data in the registers;
s3: solving the minimum value in the data to obtain the minimum value data and the position corresponding to the minimum value data;
s4: storing the positions corresponding to the minimum value data and the minimum value data to a shift register respectively;
s5: judging whether the cycle number is smaller than a preset value, if so, executing step S6; if not, go to step S7; wherein the cycle number is the number of times of obtaining minimum value data;
s6: excluding the register where the minimum data is located, and continuing to execute S2, S3, S4 and S5;
s7: and stopping circulation to obtain the sequenced data.
2. The method of claim 1, wherein obtaining the minimum value in the data to obtain the minimum value data and a position corresponding to the minimum value data comprises:
acquiring the minimum value of the data in the register;
and acquiring the position corresponding to the minimum data according to the minimum data.
3. The method according to claim 1, wherein storing the positions corresponding to the minimum value data and the minimum value data in shift registers, respectively, comprises:
acquiring cycle times corresponding to the minimum data;
and respectively storing the minimum value data and the positions corresponding to the minimum value data to a first shift register and a second shift register according to the cycle times.
4. The method of claim 1, wherein excluding the register in which the minimum value data is located comprises:
and replacing the data in the register where the minimum value data is located with an infinite value.
5. The method of claim 1, wherein excluding the register in which the minimum value data is located comprises:
and deleting the data in the register of the minimum data.
6. A system for implementing a multi-way sequencer, comprising:
the register is used for storing data to be sorted;
the minimum value acquisition module is used for solving the minimum value in the data to obtain the minimum value data and the position corresponding to the minimum value data;
the shift register is used for respectively storing the minimum value data and the position corresponding to the minimum value data;
the judging module is used for judging whether the cycle number is smaller than a preset value, wherein the cycle number is the number of times of solving minimum value data;
the exclusion processing module is used for excluding the register where the minimum data is located when the cycle number is smaller than the preset value;
and the circulation stopping module is used for stopping circulation when the circulation times are greater than or equal to the preset value to obtain the sequenced data.
7. The system of claim 6, wherein the shift register comprises:
the first shift register is used for storing the minimum value data according to the cycle number corresponding to the minimum value data;
and the second shift register is used for storing the position corresponding to the minimum value data according to the cycle number corresponding to the minimum value data.
8. The system of claim 6, wherein the exclusion processing module comprises:
and the replacing module is used for replacing the data in the register where the minimum value data is located with an infinite value.
9. The system of claim 6, wherein the exclusion processing module comprises:
and the deleting module is used for deleting the data in the register where the minimum data is located.
CN201911047883.0A 2019-10-30 2019-10-30 Method and system for realizing multipath sequencer Active CN110780840B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201911047883.0A CN110780840B (en) 2019-10-30 2019-10-30 Method and system for realizing multipath sequencer

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201911047883.0A CN110780840B (en) 2019-10-30 2019-10-30 Method and system for realizing multipath sequencer

Publications (2)

Publication Number Publication Date
CN110780840A true CN110780840A (en) 2020-02-11
CN110780840B CN110780840B (en) 2023-10-31

Family

ID=69387896

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201911047883.0A Active CN110780840B (en) 2019-10-30 2019-10-30 Method and system for realizing multipath sequencer

Country Status (1)

Country Link
CN (1) CN110780840B (en)

Citations (14)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5726923A (en) * 1993-09-27 1998-03-10 Ntt Mobile Communications Network Inc. Minimum/maximum data detector
US20040148320A1 (en) * 2003-01-15 2004-07-29 Globespan Virata Incorporated Minimum processor instruction for implementing weighted fair queuing and other priority queuing
CN1947091A (en) * 2004-04-21 2007-04-11 高通股份有限公司 Methods and apparatus for detecting local maximums in a two-dimensional data set
CN1987771A (en) * 2005-12-23 2007-06-27 中兴通讯股份有限公司 Hardware circuit for realizing data sequencing and method
CN101192847A (en) * 2007-08-13 2008-06-04 中兴通讯股份有限公司 A peak search and sorting device and peak sorting method
CN101472055A (en) * 2007-12-24 2009-07-01 深圳迈瑞生物医疗电子股份有限公司 Medium value filtering device and method, and ultrasound imaging system applying the device
CN101620263A (en) * 2008-07-04 2010-01-06 深圳市莱科电子技术有限公司 Low hardware overhead method for capturing GPS satellite signal and realization thereof
US20130086366A1 (en) * 2011-09-30 2013-04-04 Qualcomm Incorporated Register File with Embedded Shift and Parallel Write Capability
CN104317549A (en) * 2014-10-15 2015-01-28 中国航天科技集团公司第九研究院第七七一研究所 Cascade structure circuit and method for realizing data sorting
CN104570144A (en) * 2013-10-24 2015-04-29 展讯通信(上海)有限公司 Self-adaptive induction threshold adjusting system and method for proximity sensor
CN105512179A (en) * 2015-11-25 2016-04-20 中国科学院计算技术研究所 Data sorting device, method and data processing chip achieved by hardware
CN108736861A (en) * 2017-04-19 2018-11-02 英飞凌科技股份有限公司 Use the reduction region median filter of dispatch circuit
CN108763421A (en) * 2018-05-24 2018-11-06 湖南国科微电子股份有限公司 A kind of data search method and system of logic-based circuit
CN109766074A (en) * 2018-12-05 2019-05-17 西安电子科技大学 A kind of data sorting circuit and sort method

Patent Citations (14)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5726923A (en) * 1993-09-27 1998-03-10 Ntt Mobile Communications Network Inc. Minimum/maximum data detector
US20040148320A1 (en) * 2003-01-15 2004-07-29 Globespan Virata Incorporated Minimum processor instruction for implementing weighted fair queuing and other priority queuing
CN1947091A (en) * 2004-04-21 2007-04-11 高通股份有限公司 Methods and apparatus for detecting local maximums in a two-dimensional data set
CN1987771A (en) * 2005-12-23 2007-06-27 中兴通讯股份有限公司 Hardware circuit for realizing data sequencing and method
CN101192847A (en) * 2007-08-13 2008-06-04 中兴通讯股份有限公司 A peak search and sorting device and peak sorting method
CN101472055A (en) * 2007-12-24 2009-07-01 深圳迈瑞生物医疗电子股份有限公司 Medium value filtering device and method, and ultrasound imaging system applying the device
CN101620263A (en) * 2008-07-04 2010-01-06 深圳市莱科电子技术有限公司 Low hardware overhead method for capturing GPS satellite signal and realization thereof
US20130086366A1 (en) * 2011-09-30 2013-04-04 Qualcomm Incorporated Register File with Embedded Shift and Parallel Write Capability
CN104570144A (en) * 2013-10-24 2015-04-29 展讯通信(上海)有限公司 Self-adaptive induction threshold adjusting system and method for proximity sensor
CN104317549A (en) * 2014-10-15 2015-01-28 中国航天科技集团公司第九研究院第七七一研究所 Cascade structure circuit and method for realizing data sorting
CN105512179A (en) * 2015-11-25 2016-04-20 中国科学院计算技术研究所 Data sorting device, method and data processing chip achieved by hardware
CN108736861A (en) * 2017-04-19 2018-11-02 英飞凌科技股份有限公司 Use the reduction region median filter of dispatch circuit
CN108763421A (en) * 2018-05-24 2018-11-06 湖南国科微电子股份有限公司 A kind of data search method and system of logic-based circuit
CN109766074A (en) * 2018-12-05 2019-05-17 西安电子科技大学 A kind of data sorting circuit and sort method

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
杨绍岩;刘万成;周长春;: "基于IRFPA改进中值滤波算法的FPGA实现", 光电技术应用, no. 02, pages 64 - 70 *

Also Published As

Publication number Publication date
CN110780840B (en) 2023-10-31

Similar Documents

Publication Publication Date Title
CN108701250B (en) Data fixed-point method and device
US8126911B2 (en) System and method for content-based partitioning and mining
CN109800936B (en) Scheduling method based on tree search and electronic device using the same
CN112364584B (en) Static time sequence analysis method based on distribution
CN111597054B (en) Information processing method, system, electronic equipment and storage medium
CN111651137B (en) Ordering method, ordering device, electronic device and computer equipment
CN109815267A (en) The branch mailbox optimization method and system, storage medium and terminal of feature in data modeling
CN112015366B (en) Data sorting method, data sorting device and database system
CN116522844B (en) Circuit dividing method, circuit node voltage calculating method, terminal and storage medium
US7984415B1 (en) Merging of equivalent logic blocks in a circuit design
US7734456B2 (en) Method and apparatus for priority based data processing
US20230393813A1 (en) Sorting apparatus and method
CN110780840A (en) Method and system for implementing multi-path sequencer
CN110008382B (en) Method, system and equipment for determining TopN data
CN106445960A (en) Data clustering method and device
US6434728B1 (en) Activation path simulation equipment and activation path simulation method
CN109188256B (en) Method, device and equipment for determining power consumption optimization scheme
US10761847B2 (en) Linear feedback shift register for a reconfigurable logic unit
US8037438B2 (en) Techniques for parallel buffer insertion
CN113515495B (en) Data file distribution method and device, intelligent equipment and computer storage medium
US7010765B2 (en) Method for identifying removable inverters in an IC design
CN115357584A (en) Method for quickly establishing dynamic Huffman tree in GZIP
CN112651198A (en) Method for dividing non-causal circuit and method for gate-level circuit parallel simulation
CN116680194A (en) Implementation method of efficient semi-automatic artificial intelligence software
CN115758966A (en) Propagation method, processing method and medium of time sequence exception constraint and time sequence constraint

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant