Borrar filtros
Borrar filtros

convolution in time domain, runtime improvement by padding

1 visualización (últimos 30 días)
Leon Hülsmann
Leon Hülsmann el 31 de Mayo de 2023
Comentada: Leon Hülsmann el 8 de Jun. de 2023
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 comentario
Matt J
Matt J el 31 de Mayo de 2023
Editada: Matt J el 1 de Jun. de 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.

Iniciar sesión para comentar.

Respuestas (1)

Dinesh
Dinesh el 6 de Jun. de 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.

Etiquetas

Productos


Versión

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by