Simplify the FDD dedisperse_kernel without inline PTX and operator device functions
The FDD dedisperse_kernel
used a some custom operator functions or helper functions with inline assembly to perform complex multiplications and to compute sine/cosine. This has been simplified by using the built-in __sinf
and __cosf
functions and with two plain helpers: cmac
and cmul
.