元は" The 90 minute Scheme to C compiler" Marc Feeley (90-min-scc.pdf) 。元の文章との整合性は保証しないよ。CPS が何かわかって、コンパイラを作ることに興味が出たら幸い。
ただし、これだけではコンパイラはできないよ。Scheme で作りたいなら、http://www.eidos.ic.i.u-tokyo.ac.jp/~tau/lecture/scheme_compiler/gen/resume/all.pdf がおすすめ。
将来的に浮動小数点を含むコンパイラを作りたいなら、あらかじめ OCaml をつかったコンパイラを目指した方がよい(らしい)。
https://esumii.github.io/min-caml/jpaper.pdf
https://github.com/esumii/min-caml
A正規形とK正規形というのもある(らしい)。
http://d.hatena.ne.jp/sumii/20071229/p1
論文のThe Essence of Compiling with Continuations には A 正規形の話があり、CPS が否定されているように思った。
61. GPGPU
科学技術計算とかにつかえるのでは?
2001
プログラマブルGPU「GeForce3」
General-purpose computing on graphics processing units
This example performs an NBody simulation which calculates a gravity field and
corresponding velocity and acceleration contributions accumulated by each body in
the system from every other body. This example also shows how to mitigate
computation between all available devices including CPU and GPU devices, as well as
a hybrid combination of both, using separate threads for each simulator