convolution in time domain, runtime improvement by padding
1 view (last 30 days)
Show older comments
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 Comment
Matt J
on 31 May 2023
Edited: Matt J
on 1 Jun 2023
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.
Answers (1)
Dinesh
on 6 Jun 2023
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.
See Also
Categories
Find more on Get Started with MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!