Twitter updates
- @exileous Download the CUDA 5 toolkit and take a look at the PTX 3.1 documentation :) 20 hours ago
Development
Graphics
Calendar
May 2012 M T W T F S S « Mar 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Tag Archives: boost
Boost 1.37 has been released
Boost 1.37 has been released, as part of their new 3-month release cycle. So grab it while its hot. For build instructions on x64 windows, you can take a look at an older blog post. Only changes I’ve seen so … Continue reading
std::tr1::shared_ptr tutorial
The C++ TR1 additions contain an extremely useful smart pointer: std::tr1::shared_ptr. Used properly, it allows creating efficient and safe C++ code without the risk of memory leaks. Point in case: I have a personal project with 10k + LoC without … Continue reading
Bug in Boost 1.35/Threads, Condition::notify_one
There is a bug in Boost.Threads 1.35 (tracked as #1803) — basically, condition::notify_one may fail to wake-up a thread. It is fixed on the trunk (r44150 — thanks Anthony Williams for the quick fix). The bug might not sound that … Continue reading
Migrating from Boost 1.35 to TR1
Just porting some stuff over to TR1, here some things that you need to take care of: For easy migration, prefer to use the boost/tr1/ headers, as they provide a fall-back to Boost if TR1 is not available. std::tr1::function has … Continue reading