Run time for fork join

Hi,

If we have a fork join like

  fork 
    begin
     if(wen)begin
     end
     if(ren)begin
     end
    end
  join

and another fork join as

 fork 
    begin
     if(wen)begin
     end
    end
    begin
     if(ren)begin
     end
    end
  join

Is there run time difference between these two, Fork join runs blocks in parallel only with respect to simulation time not run time right.
run time must be same for both fork joins?

Thank you.

In reply to jaswanth_b:

The first fork/join has only one process to fork The second fork/join spawns two processes, so that will have more overhead. But since there are no delays in these examples, the processes could get optimized away.

In reply to dave_59:

which one will run faster if we have some delay in both if conditions