Posts Tagged ‘Tutorial’
[Qt][GPU] C++ Application for dynamic transition images (QtConcurrent, QtOpenCL)
In this post, I will briefly introduce my first test of the qtopencl tool.
[GPU] Install Cuda Opencl on Ubuntu
The steps to install cuda, opencl for nvidia gpu on ubuntu.
Click to continue…
[C++][OpenMP] A shared memory quick sort openmp tasks (example, source code)
After a first shoot of quick sort on shared memory (to be able to create an mpi version, but that is not inplace)
I created a real shared memory version.
Be aware that these versions need the OpenMP task!
PS : I developed several quick sort (available on this blog), a sequential version, an openmp tasks version, a openmp not inplace version, an mpi version and a Qt concurent version.
[C++] MinMax algorithm with noughts and crosses game (understand min-max heuristic)
Here is an example of min-max algorithm.
Click to continue…
[C] ARP source – tutorial – Address Resolution Protocol
Here is the source of some functions about ARP.
Bash-Linux Counting lines of files in subdirectories
Because it took me 5 minutes to make the right command (do we use a pipe or not, do we put \ at the end or not, etc….), I write it here (for me like a post-it):
find . -type f -exec wc -l {} +
So this command will take every files in all directories (current and sub dir) and count the lines.
[Openmp][MPI] Profiling hybrid openmp-mpi application with eztrace and vite
In this post I present quickly an example to profile openmp (or pthread) and mpi application.
C++ – Unit test – easy, one file, basic, simple
I few weeks ago I wanted to use unit test. But when I was searching for a framework easy to use, fast, that do not need to be installed 10 libs to make it working etc… Well I did not find anything that satisfy me.
So I make my own lib.
C# – Silverlight – Kart racing game and its source (kartoone)
At the end of the year 2009 I developed a game in silverlight. This game was for a startup website which crashed, so I found it from the dark part of my computer and share it with you.
I forgot it until yesterday and decided to share the source code and the game!
