Showing posts with label jbp. Show all posts
Showing posts with label jbp. Show all posts

ctags with CUDA files

Wednesday, November 10, 2010

To get ctags to properly tag functions in your *.cu files, run ctags as below (--exclude is to exclude the .pc directory generated by quilt):

 ctags  --langmap=c:+.cu --exclude=".pc" --recurse 

Read more...

Print Screen

Sunday, June 20, 2010


I am super excited today. My balloon is hitting the ventricle walls! Yaay!!

Read more...

Rendering Today 01

Saturday, January 9, 2010


Today I woke up to see what happened with my trial on motion blur. I had added motion blur (in its crude form) and anti-aliasing (using super sampling) last night. And this is what I got..


Read more...

LKM compilation

Wednesday, June 10, 2009

make -C -directory> M=`pwd` modules

and in Makefile for the module, add `obj-m := module.o`

Read more...