Recursion ia possible or not

I have one serial code having function which calls itself and other function recursively.I want to parallelize it in task parallel manner.so can i parallelize this recursive code on CPU device type, if not then plz suggest the alternative for the same.

You can convert your recursive algorithm into an iterative one using a stack such as this implementation found on this forum : Link

Also I was able to do it using the wikipedia article about converting the recursion algorithm : Wiki Iterative Traversal article.