Does Erlang work on any non-x86 platforms?
Microcontrollers for instance? I think it\'d be neat to get a bunch of these and put Erlang code on them.
Or does
Erlang is not a great fit for GPUs.
Erlang has multiple processes all doing different things. Each process is doing conditional branching and sequential ordered things that ordinary CPUs do well.
GPUs are good at having many things doing the same (but independent) operation on the the same bulk of data. Many GPUs have not even had support for branching. They were just performing a mathematical operation on input data points to get an output point.