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.

What is the circular addressing in DSP?

Status
Not open for further replies.

elecs_gene

Member level 2
Joined
Dec 20, 2005
Messages
52
Helped
3
Reputation
6
Reaction score
1
Trophy points
1,288
Activity points
1,797
circular addressing!!

hi
what is "circular addressing" in dsp?where is it used?:?:

regards
 

Re: circular addressing!!

Hi,
Circular addressing is actually used in DSP processors while performing circular convolution..

Linear convolution is done using Circular convolution by two techniques:
Overlap add and overlap save.

Circular addresing is actually a technique that suits storage and manipulation results during a circular convolution process.

regards
 

    elecs_gene

    Points: 2
    Helpful Answer Positive Rating
Re: circular addressing!!

hi,
Circular addressing is the techniques which is used in the digital signal processors to optimize the code since it has zero overhead. Actually it is very usefull in the calculations which require multiply and accumulate instructions within a loop. It is mainly used in the computation of FFTs, IFFTs and correlations.
 

Re: circular addressing!!

suppose you have a number of data stored at some memory locations.
think of this as a vector of data having a start and an end.
to do circular addressing, we atach the end to the start so that the vector turns into a ring.
here you can access the last data to be attached to the first data.
this is used in e.g. convolution where you shift the data to have overlapping and then you do the multiplication.
 

Re: circular addressing!!

circulare addressing can be used to efficiently use the simulataneous read and write pointers on some Buffers... like in case of Video Encoding in the Bitstream Buffer
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top