Loading...
[-]

Monthly Archives: July 2009

Cheesy Exchange Rates

Cheesy Design has released an exchange rate plug-in for Desktop Sidebar http://www.desktopsidebar.com This plug-in is modelled on the Share Market stocks plug-in that comes with Desktop Sidebar.
The binary can be downloaded from Here . The binary gets its extension renamed to .zip when downloading using IE8. Simply rename it back again to .dspackage to install [...]

Comments break the CUDA preprocessing?

After adding comments to various points the template code suddenly stopped working. After some searching I discovered that this was the problem code:
cutilSafeCall( cudaMemcpy( d_idata, h_idata, mem_size, // Copies nothing to memory
cudaMemcpyHostToDevice) );
and this was the solution:

cutilSafeCall( cudaMemcpy( d_idata, h_idata, mem_size,
cudaMemcpyHostToDevice) ); // Correctly copies the data

You are probably [...]