convolution in time domain, runtime improvement by padding

1 次查看(过去 30 天)
Hey everybody,
I have implemented a convolution algorithm in the time domain as per the mathematical definition.
The algorithm works fine, does exaclty what it is supposed to, conv gives me the same result.
But I have noticed that the speed of my algorithm significantly increases (up to factor 2) when I use the circular or replicate padarray options. I have tried to think of any reasons why this happens, but couldn't come up with anthing.
Does it have to do with cache hits and misses or something similar?
  1 个评论
Matt J
Matt J 2023-5-31
编辑:Matt J 2023-6-1
Who can say? We haven't seen your implementation of the convolution nor your tests of it. Maybe it's not that the speed increases with circular or replicate padding options. Maybe it's that your other options are not well implemented, and slow things down.

请先登录,再进行评论。

回答(1 个)

Dinesh
Dinesh 2023-6-6
Hi Leon,
There might be other factors that might be responsible for the speed boost you are experiencing. But If you just changed the padarray options and not others then the speed boost is most likely because of caching, also Circular and replicate pad options lead to smaller buffer allocations and scalar computations which can result in better vectorization and can improvize the speed.
Hope this helps!
Thank you.

产品


版本

R2023a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by