erlang

On the perils of benchmarking Erlang

erlangでベンチマークをとる際に注意すべき点が上げられている。また、速度向上の手法が紹介されている。 なるべくエクスポートしない。 The more functions exported from a module, the less optimization potential. インライン化。 Inlining is off by d…

リングベンチマーク

Nこのプロセスをリング上につないで,Mステップリングを回るメッセージをそれぞれ送る問題のベンチマーク。 Programming Erlangにあったやつ。 -module(ring). -compile(export_all). for(N, F) -> for(N, F, []). for(0, _, L) -> L; for(N, F, L) -> for(N-…