Dream - SED Sophia Antipolis Méditerrannée
Dream is the local name of CRISAM's service for supporting experiments & development, aka. SED.
Our service is composed of research engineers providing support for development, experiments and the management of experimental platforms. The team keeps up on technological advances.
This website is mainly used to provide blog posts about our activity. For institutional information, please visit the appropriate section on the Inria intranet.
To add a RSS feed to our blogposts, please click on the following link: https://iww.inria.fr/sed-sophia/feed.
To contact us, please send email to sed-sophia@inria.fr.
Trick of the day: prefetching a callback into the QApplication event loop
Qt provide a standard mechanism (aboutToQuit() signal) to insure that a callback is executed at the end of the QApplication event loop. This is typically used to add some cleanup code to your application. Infortunately, Qt does not provide a “aboutToRun()” if you want to execute an initializing code just…
The LD_PRELOAD trick
If you ever wanted to replace some symbol in a library, in order to inspect what happens in a binary you don’t have the source code or even to inject some code, this can be done using the LD_PRELOAD trick. To use it, invoke your binary as such: $ LD_PRELOAD=somelib.so…
FusionForge 6.0 Upgrade
The Inria Forge is fully upgraded (OS and FusionForge) today, Tuesday June 2nd. The service will be unavailable for a few hours during that day. Hopefully, the service should be restored for 12AM. We advise you to anticipate this forge upgrade, especially if you are close to a deadline. Changes…
The Bulk Synchronous Parallel model for graph processing
The BSP Model The Bulk Synchronous Parallel (BSP) is a model for designing parallel algorithms. The BSP model was developed by Leslie Valiant of Harvard University during the 1980s and published in 1990. Computation proceeds as a sequence of iterations, called supersteps. Each superstep involves a phase of parallel computations,…