Archive for December, 2012

I’m Speaking at The GPU Technology Conference

Friday, December 14th, 2012

So I got my talk accepted to GTC 2013. It runs from March 18-21 at the San Jose McEnery Convention Center. I went a couple of years ago and really enjoyed it. At the time I made it a goal to come back as a speaker and now here we ...

C++ AMP Extras: Tile Size Checking at Compile Time

Thursday, December 6th, 2012

Many tiled C++ AMP algorithms rely on the tile size being a an exact multiple of two, scan and reduce are both examples of this. template <int TileSize, typename T> void InclusiveScanAmpTiled(array_view<T, 1> input, ...