Is there any current ideas about IIR filter algorithm parallelization with thread count greater than filter order?
Ideally, parallelization method should load GPU efficiently.
|
Is there any current ideas about IIR filter algorithm parallelization with thread count greater than filter order? Ideally, parallelization method should load GPU efficiently. |
|||
|
|
You might be interested in the following paper: Nehab, D; Maximo, A; Lima, R; Hoppe, H: GPU-Efficient Recursive Filtering and Summed-Area Tables. ACM Trans. Graph. 30(6):176 (December 2011). doi://10.1145/2024156.2024210 http://w3.impa.br/~diego/publications/NehEtAl11.pdf The basic idea is to recognize that linear filters are associative (at least in theory) and thus you can
As @jonsca pointed out, you were a bit vague about your use case. The above all assumes that you can do batch processing on your input. If you need some kind of real-time filtering none of what I said is relevant. |
|||
|
|