Design Notes - 2024.2 English

Vitis Libraries

Release Date
2024-11-29
Version
2024.2 English

Sample Delay introduces delay into the input data which is often a time series. The unit of delay is ‘number of samples’ which is passed on Run Time Parameter (RTP) port: sampleDelayValue. The legal range of sampleDelayValue is [0, MAX_DELAY-1]. As far as the functionality is concerned, it is a delay filter, however, implementation employs a vectorized circular buffer. The delay passed on the sampleDelayValue RTP port is introduced by converting it into two address offsets: vector offset and element offset. The application of vector offset part (of the delay) is used to adjust the starting read address, whereas the application of the remainder element offset part (of the delay) is a shuffle operation carried out on each vector traversing through the processor registers.