vote up 1 vote down star
1
fib(N)->
       P1 = spawn(fun concFib:conFib/0),
       P2 = spawn(fun concFib:conFib/0),
       X=rpc(P1,N-2),Y=rpc(P2,N-1),X+Y.

conFib()->
       receive
               {Client,N} -> Client ! regfib(N)
       end.

rpc(Pid,Request)->
       case erlang:is_process_alive(Pid) of
               true -> begin
                                       Pid ! {self(),Request},
                                       receive
                                               {Pid,Respond} -> Respond
                                       end
                               end;
               false -> io:format("~w process is dead.",[Pid])
       end.


regfib(N)->
       case N<2 of
               true -> 1;
               false -> regfib(N,1,1,1)
       end.

regfib(N,N,X,_)-> X ;
regfib(N,M,X,Y)-> regfib(N,M+1,X+Y,X).


The idea is to divide the fib(N) process into two process one calculates fib(N-2) and the other one calc. fib(N-1) concurrently as fib(N)=fib(N-1)+fib(N-2). when i run the previous code nothing happen and the cursor stop as in finite loop or waiting for not arriving result.
plzzz i need help i'm a new Erlang programmer,thanks in advance :)

flag
1  
Not sure what your intention is with this code, but note that X and Y is not computed in parallel. – Zed Nov 8 at 22:11
I want to calculate X and Y in parallel,this is my intention. – Fuzzix Nov 8 at 22:32
Now your call flow is basially send-to-1, receive-from-1, send-to-2, recive-from-2, where receive's make your code block. You should changes this to send-to-1, send-to-2, receive-from-1, receive-from-2. – Zed Nov 8 at 22:34
thanks zed it works now :) – Fuzzix Nov 8 at 22:48
could u tell me where can i find more erlang practical Qs??? – Fuzzix Nov 8 at 22:54

2 Answers

vote up 5 vote down check

In your conFib you send an integer, but await a tuple in rpc. Should change it to:

conFib()->
       receive
               {Client,N} -> Client ! {self(), regfib(N)}
       end.

You can evade such situations by using timeout with after in your receives.

link|flag
Thanks Zed :),It solved the problem,but the logic of code doesn't work as i expected :(. X=rpc(P1,N-2) and X=rpc(P2,N-1) don't work concurrently the second one wait for the first to be done. i want to calculate fib(N-1) and fib(N-2) at the same time each one in distinct process. I wana more help plz... – Fuzzix Nov 8 at 22:25
vote up 4 vote down

To make the computation parallel you could do something like:

fib(N)->
       P1 = spawn(fun test:conFib/0),
       P2 = spawn(fun test:conFib/0),
       P1 ! {self(), N - 2},
       P2 ! {self(), N - 1},
       receive
         {_, R1} -> R1
       end,
       receive
         {_, R2} -> R2
       end,
        R1 + R2.

The important part is that you send both of the requests before waiting for the answers. The part waiting for the answers could of course be done in a more beautiful way.

link|flag
thanks Rickard :)...I got it..forgive me ur answer is more specific to me put the as Q was as Zed answered first. – Fuzzix Nov 8 at 22:50

Your Answer

Get an OpenID
or

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