私は Erlang を初めて使用するので、トレーニングのために標準関数をゼロから実装しようとしています。listモジュールから map/2 関数の並列実装を作成しようとしました。しかし、私の実装は非常に遅いです。私の実装で主な間違いがあった場合は、教えていただけますか。
-module( my_pmap ).
-export([ pmap/2 ]).
-export([ map/4, collect/3 ]).
map( F, Value, Indx, SenderPid ) ->
SenderPid ! { Indx, F( Value ) }.
pmap( F, List ) ->
CollectorPid = spawn_link( my_pmap, collect, [ length( List ), [], self() ] ),
lists:foldl(
fun( X, Indx ) ->
spawn_link( my_pmap, map, [ F, X, Indx, CollectorPid ] ),
Indx + 1
end,
1,
List ),
Mapped =
receive
{ collected, M } ->
M
end,
Sorted = lists:sort(
fun( { Indx1, _ }, { Indx2, _ } ) ->
Indx1 < Indx2
end,
Mapped ),
[ Val || { _Indx, Val } <- Sorted ].
collect( 0, List, SenderPid ) ->
SenderPid ! { collected, List };
collect( N, List, SenderPid ) when N > 0 ->
receive
Mapped ->
collect( N - 1, [ Mapped | List ], SenderPid )
end.
そして、ここにテストの結果があります:
1> c(my_pmap).
{ok,my_pmap}
2> timer:tc( my_pmap, pmap, [ fun(X) -> X*X*X*X end, lists:seq( 1, 10000 ) ] ).
{137804,
[1,16,81,256,625,1296,2401,4096,6561,10000,14641,20736,
28561,38416,50625,65536,83521,104976,130321,160000,194481,
234256,279841,331776,390625,456976,531441|...]}
3> timer:tc( lists, map, [ fun(X) -> X*X*X*X end, lists:seq( 1, 10000 ) ] ).
{44136,
[1,16,81,256,625,1296,2401,4096,6561,10000,14641,20736,
28561,38416,50625,65536,83521,104976,130321,160000,194481,
234256,279841,331776,390625,456976,531441|...]}
ご覧のとおり、0.137804秒です。対0,044136 秒。
ありがとう