The Tokyo Demo Fest 2013 is one of the many demo-parties around the globe. At such parties is where great programmers meet great artists and show off what came out of their collaborations.
The winner of this year used OpenCL to compute real-time procedurally generated geometries. For the rest C++, OpenGL and Gamemonkey Script was used.
Tech features: curl noise, volumetric textures, Perlin noise, mesh deformations, HDR/bloom, film grain, fractals, Hermite splines, Tweens and quaternion iridescent particles.
The creator, Tokyo-based Eddie Lee, has done more projects – be sure to visit his homepage. I hope more demosceners start using the power of OpenCL to get more out of their demo’s.
Do you see where below kernel is used? Hint: check the other videos of Eddie.
__kernel void curlnel(
__read_only image3d_t volume,
sampler_t volumeSampler,
__global float4 *output,
float speed
)
{
uint index = get_global_id(0);
uint numParticles = get_global_size(0);
float indexNormalized = (float)index/numParticles;
// read from 3D texture
float4 vertData = output[index];
float3 samplePos = vertData.s012;
samplePos = samplePos+(float3)(0.5f);
float4 voxel = (read_imagef(volume, volumeSampler,
(float4)(samplePos,1.0f)));
vertData.s012 += voxel.xyz*speed;
output[index] = vertData;
}
According to GPUVerify (see previous post) the line starting with “float4 voxel” has an error.





StreamHPC supports the 
On the 20th of April 2013 there was an interesting 






HiPEAC


Every now and then I read stories on Bitcoins (


During the “little” HPC-show, SC12, several vendors have launched some very impressive products. Question is who steals the show from whom? Intel got their Phi-processor finally launched, NVIDIA came with the TESLA K20 plus K20X, and AMD introduced the FirePro S10000.


Two months ago I wrote about the 
For who hasn’t seen the latest addition to our knowledge base, we have added a list of all (almost) available OpenCL-SDKs. You can find it in the menu under “Knowledge Base” -> “



AFDS was full of talks on OpenCL. You missed them, just like me? Then you will be happy that they put many videos on Youtube!