Image Processing with C++ AMP and the .NET Framework
Image processing is a computational task that lends itself very well to GPU compute scenarios. In many cases the most commonly used... more »
Tweet 0 Comments Save Tags: .net , c-and-cpp , frameworks
C++ exceptions under the hood
Our latest personality function knows whether it can handle an exception or not (assuming there is only one catch statement per try block... more »
Tweet 0 Comments Save Tags: c-and-cpp
A fast lock-free queue for C++
Sharing data between threads in annoying. Really annoying. If you do it wrong, the data is likely to become corrupted. Even more... more »
Tweet 0 Comments Save Tags: c-and-cpp , reviews