Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Exploiting the parallel nature of FPGA to implement Sorting Algorithms

Status
Not open for further replies.

electrobuz

Member level 2
Member level 2
Joined
May 20, 2013
Messages
46
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Visit site
Activity points
1,638
I want to implement basic Sorting Algorithms in VHDL. I have done so and found out how ineffective a serially executing program (having loops and processes) can be. Now I would like to exploit the parallel nature of FPGA to do the same in a more efficient and time-saving manner. How can I go about deciding how to parallelise the code. Can someone suggest some reading material on parallel programming in VHDL.

Thank You
 

As a starting point, you may want to google for "sorting networks in FPGA"
 

    V

    Points: 2
    Helpful Answer Positive Rating
As a starting point, you may want to google for "sorting networks in FPGA"

Thank you for the start. As I was reading I came across a concept called Hardware Software Co-design. I think this relates to effective parallelisation. Thinking in terms of smaller logical blocks instead of the loops is a way indeed but can I use the above concept. That is dividing the program in a way to use the resources of both parallel and serial parts. Can I get some help in this direction?
 

Co-design presumes that beside the FPGA hardware there's a software component in the design, e.g. a processor. That's quite different from implementing an algorithm purely in FPGA hardware.
 

I understand the difference. But what do you really mean by a software component? How can I partition one program to run on 2 different devices to give me a combined result?
 

Same way as always. You can have a processor and a co-processor. The main processor would be your main cpu/mcu. And the co-processor doing some specialized task (in this case sorting, either in part or in whole) would be done by the fpga.
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top