convolution in time domain, runtime improvement by padding
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaire
Matt J
le 31 Mai 2023
Modifié(e) : Matt J
le 1 Juin 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.
Réponses (1)
Dinesh
le 6 Juin 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.
Voir également
Catégories
En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!