In some number crunching application, I need to find the multiple (undefined number, bigger or equal to zero) real roots of some numerical function in one dimension produced during the simulation and for which there is not analytical expression.

Given a required accuracy, I wonder which is the best (fastest) parallel method/algorithm for doing this.

link|improve this question

1  
How is the function stored/calculated? Is it a number of x, f(x) pairs or what? Do you know anything regarding the properties of the function, e.g. is it continuous? – Klas Lindbäck Oct 18 '11 at 8:23
Wouldn't it be better to save parallelism for some other thing ? I mean if you are for instance going to solve for this function multiple times, you don't have to parallelize the solver: only the calls to the solver need to be done in parallel. Indeed, I don't know of any 1D solver that leans itself to parallelization. – Alexandre C. Oct 18 '11 at 8:51
feedback

1 Answer

up vote 1 down vote accepted

You are looking for a parallel Root-finding algorithm

The Bisection method, which is a classic divide and conquer algorithm can be easily parallelized: The interval of interest [a,b] can be splitted to n (possibly overlapping) intervals, which may be simultaneously checked for f(a) < 0 and f(b) > 0 or f(a) > 0 and f(b) < 0

Some more general and more complex algorithms where suggested. Look here for example.

link|improve this answer
1  
I fail to see how you can parallelize the bisection method. – Alexandre C. Oct 18 '11 at 8:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.