2011-05-01から1ヶ月間の記事一覧

Book "Coders at Work"

和書 "Coders at Work プログラミングの技をめぐる探求" Peter Seibel, 青木靖 を少し読んでみたのですが, 優れたプログラマに対するインタビュー集みたいな感じでとても面白いです.I have read the book "Coders at Work" for a little. This book is very …

Thinkpad W520 can run DX11 Island Demo

Thinkpad W520 が届きました. サイズは Thinkpad T520 と変わらないのですが, 画面解像度は 1920 * 1080 です. また GPU が Quadro FX 1000 なので, DirectX11 のデモがハードウェアレベルで動きます.例えば, Hardeware Tessellation を使っている DirectX11…

Articles about the inner workings of Java technology by Bill Venners

http://www.artima.com/underthehood/index.html Bill Venners wrote the book titled "Inside the Java Virtual Machine".

Ray tracing by CPU multi-threading and GPU

I wrote a program which does ray tracing by CPU multi-threading and GPGPU. For GPGPU programming, I used NVidia CUDA C. Here are some results. Spec CPU : Intel Core i7 CPU GPU : Quadro FX 580 ( 32 CUDA cores ) Ray tracing buffer size : 102…

Running Rietveld at Ubuntu 11.04

Rietveld を Ubuntu 11.04 で動かしてみたので, 手順を書いておきます. スクリーンショットはこんな感じです.I will write how to run Rietveld at Ubuntu 11.04 below. Here is a screenshot of it.0. Get zlib 1.2.5 // Build as shared library $ ./confi…

Books of Virtual Machine

ゴールデンウィーク中なので, 一人で気ままに本を読んでいます. 仮想マシン関連の書籍をピックアップします.During my golden week, I'm reading books. ( I'm a loner. ) I will pick up some books related with virtual machines. "Virtual Machines". Ia…

Hash based data structures for nearest neighbor search

フォトンマッピングや SPH・MPS といった粒子法では, 粒子の近傍探索が使用されます. フォトンマッピングに対しては K-d 木を使う提案もされていますが, ハッシュを使ったデータ構造の方がクエリなどが速いと思います. いくつか論文のリンクを挙げておきます…