polynomial roots

Hi,

Does anyone know is there any functions for finding polynomial roots implemented on CUDA? I didn’t find any topics on forum related to this

Thanks

I’m not really aware of the algorithms used to do this. My first impression is that this is not a particularly data-parallel kind of task (and therefore not suited to CUDA), but I’m not really sure. Do you need to find the roots of many polynomials simultaneously?

Finding the roots of polynomials is only the one part of overall computations i need to do. and yes it should be done simultaneously. I assume that there is no big parallelization in this case but i just need to implement this on cuda and i was wandering is there already such algorithm.