Click here to Skip to main content
15,868,016 members
Articles / High Performance Computing / Parallel Processing

Distributed Computing in Small and Medium Sized Offices

Rate me:
Please Sign up or sign in to vote.
4.92/5 (65 votes)
25 Oct 2010CPOL21 min read 136.5K   142   34
Introduction to the open-source hxGrid library for distributed computing. Main benefits of the library: cluster uses only idle time of Windows 2000/XP/Vista workstation (no dedicated workstations required); easy to use; free.

Introduction

Image 1

There are several tasks in game development tools programming which require large computational power. For example, it takes up to 24 hours to compute game level lighting in our level editor. Obviously, the longer the operation, the less frequently it will be used and we will have to settle for results with less quality, because a lot of iterations are required for good tweaking.

Recently, I gave a lot of attention to GPGPU – using Graphics Processing Unit (GPU) power to accelerate our tools. Early versions of our level editor did lighting calculations (Ambient occlusion[2] + direct lighting) by rendering hemicube side views from every texel of the lightmap. Unfortunately, experiments show that a simple CPU-only raytracer can do this task 2-3 times faster, because of a slow Videomemory to CPU transfer rate. Possibly, I could have achieved better results, if the whole algorithm was implemented on the GPU, but this would have required a lot of work due to the complex GPGPU programming model. Only recently, nVidia has provided a relatively simple C framework for GPGPU programming[3][28]. Multicore CPUs have shown good perspective it this area. The second core, unlike a GPU, can execute the same binary code. There is no need to adapt algorithms for different programming models and languages to take advantage of additional performance.

Before I even started to optimize tools for multicore CPUs, I understood that I needed to think wider. :)

image2.gif

Before we continue, I will ask the reader to press CTRL+ALT+DEL, run the Task Manager and switch to the Performance tab. Take a look at the "CPU Usage" graph. I bet most readers will see values less then 10% there. On dual-core CPUs, the second core will be free most of the time.

During typical work, full computer power is used only in short bursts while generating responses to the actions of the user. When the user is typing text in Microsoft WordTM, pauses between keyboard events are comparable to eternity from the processor’s viewpoint. Indeed, the number of applications that fully utilize the available processing power is not very high.

Now count up The power that is available in a medium sized office (50+ workstations) and you will get a value that is comparable to modern supercomputers.

image4.jpg

Unfortunately, the traditional relationship of cluster calculations to high science served as a mental barrier for me to attempt to use distributed computing in everyday tasks. Fortunately an excellent application, IncredyBuild[4] has shown that distributed computing can be used not only for everyday, but also possibly for real-time tasks.

Data-parallel programming model

A number of workstations, connected by TCP/IP network, can be considered as a supercomputer with a distributed memory architecture. The most simple pattern for these systems is data-parallel computing.

image3.gif

In other words, if some ordinary application processes an array of independent elements, then in a data-parallel model, each processor is assigned to process some part of array. To support data-parallel computing, the core library should divide tasks into parts, transfer task data to the local memory of a particular CPU, run the task on that CPU, transfer results back to the caller, and provide the ability to request some global data from the caller.

This work is done by cluster support software. I have searched for available software, taking into account the following requirements:

  • Workstations are running Windows XP;
  • Only idle time is allowed for usage by cluster. The workstation user should not experience any slowdowns;
  • High tolerance – the cluster is not dedicated. Any workstation can be rebooted, go offline or get busy by a user, but this should not affect the overall cluster stability and state.

The first requirement excluded most of the candidates[5][6]. The reason is clear – why would someone buy a commercial OS for every cluster workstation, if there is freeware Linux?

The second and third requirements excluded all the other candidates, although I would like to mention some of the most promising libraries.

image7.jpg

MPICH2[7]. This is a Windows implementation of the MPI library. Unfortunately, it runs hidden processes with normal priority, which affects the workstation user. If a workstation goes offline, the MPI session terminates with an error.

image5.jpg

libGlass[8]. Despite an easy programming model, I have put aside this candidate because there have been no new versions of this library for a long time.

image6.jpg

Alchemy[9]. This is the most promising candidate. It provides an easy to use programming model, works on .NET framework, which in theory can allow even a Windows Mobile smartphone, like the Motorola MPX 200, to became a node in the cluster. It contains wonderful examples and continues to evolve. Unfortunately, during my testing, some examples crashed and left orphan processes on nodes.

So after my unsuccessful search, I made the decision to develop a library myself.

hxGrid

During development, I took into consideration the following additional requirements:

  • TCP/IP 10-1000 MBit local network is used for data transfer;
  • a network is considered internal and safe. i.e. the library does not contain any authentication protocols. A good security system would increase development time dramatically and make library usage more complex;
  • "time to send task" / "time to complete task" ratio is 0.1 or more. Typical task data size can be 0.001-100MB;
  • there is some workstation on the local network which is always online and can serve as an application coordinator (manager);
  • the library will be used both for offline (up to several hours) and semi-real-time (up to several seconds) tasks;
  • a single workstation can run only one grid application in any given period of time (this is a limitation of current version);
  • for debugging purposes, a single workstation should be able to run agent, coordinator and grid applications at the same time;
  • when a workstation goes online, it should be able to join already running grid sessions;
  • when a workstation goes offline, this should not break overal process. hxGrid just sends an incomplete task to other node;
  • the cluster can be used from several workstations at once. The computational resources should be redistributed equally;
  • the grid agent should be able to use all CPU cores on each workstation;
  • the library should be available for use in C++ and Delphi.

To minimize development time, I chose to implement the library in Delphi. The library uses fake COM interfaces[11], the Jedy Visual Code Library[15] and ZLIB[27].

Cluster installation

The binary package should be downloaded to install a cluster[10].

image17.gif

The cluster software consists of three components:

  1. Coordinator. Coordinator should be installed on a workstation that is always online. Coordinator is responsible for maintaining a list of computational resources and distributing the list to grid users. Coordinator should be installed on only one workstation in local network.

    Agents and Users can find Coordinator by sending broadcast packets on the local network, so that no configuration is required if Coordinator is moved to a PC with a different IP address.

    Users connect to Coordinator only to get a list of agents. Later, users connect to agents directly, unlike other grid solutions where the coordinator distributes tasks among agents. This allows the fastest communication between user and agents.
  2. Agent. Agents should be installed on every workstation in the local network. Agent allows the idle CPU time of a workstation to be used.
  3. User. A Grid User is some application written with hxGrid library.

Programming for hxGrid

hxGrid allows tasks (procedures) to be run on cluster workstations. A grid application places tasks into a queue and waits for their completion. The input data for tasks are written to a stream (IGenericStream inStream). After successful execution of the task, output data is also received from a stream (IGenericStream outStream). If necessary, an agent executing a task can request additional data from the grid application.

Every task is function with the following signature:

C++:

typedef bool (__cdecl TTaskProc)(IAgent* agent, DWORD sessionId, 
                  IGenericStream* inStream, IGenericStream* outStream);

Delphi:
type TTaskProc = function(agent: IAgent; sessionId: DWORD; 
         inStream: IGenericStream; outStream: IGenericStream): boolean; cdecl; 

where sessionId is a unique session id. This Id is required to request additional data from a grid application (described later). The function should return false if interrupted (described later).

Such procedures should be placed into a DLL. hxGrid delivers the code by transferring the DLL to the other workstation. The TTaskProc function should also be thread-safe. After successful execution of the task by the agent, the library sends the output stream back to the user and calls FinalizeTask() callback:

C++:

typedef void (__cdecl TFinalizeProc)(IGenericStream* outStream); 

Delphi:
type TFinalizeProc = procedure(outStream: IGenericStream); cdecl;

This function should also be thread-safe.

If a single threaded application is processing a large array of independent elements, the obvious way to increase performance is to divide the array into small ranges and process each of them on cluster nodes.

How it works

When started, each agent looks for the coordinator, sending broadcast packets over the LAN. When a connection with coordinator has been established, the agent starts sending its status periodically (percentage of free CPU time, amount of free physical memory, number of queued tasks).

To begin cluster usage, the grid application initializes the hxGrid library. The library connects to the coordinator (by sending broadcast packets, if required), requests the list of agents and connects to them directly. From this moment, the library is ready to execute remote tasks. At the same time, the library continues to request the list of agents, so new agents are able to join running sessions.

The grid application then adds tasks to the queue. The library continuously sends tasks to agents in a background thread. If a connection with some agent is lost, the library is able to reassign its tasks to other agent.

When the library is deinitialized, it disconnects from the agents.

To increase efficiency, the following technical decisions were applied:

  • To compensate for the time lag of network communications, the library sends the next task to each agent earlier;
  • Under some circumstances, the library can send a copy of a task already running on an agent to other free agents. This can help complete the job faster if an agent is slow or has no free CPU time at the moment;
  • The library tracks the amount of free CPU time and free physical memory on the agents. The library will not send a task to an agent if it does not have enough free CPU time (percentage is specified in settings) or has less free physical memory than required to store the input stream (factor is configured in settings);
  • The library controls the length of the task queue and size of the input streams. If the overall size of queued input streams exceeds a configured value, the library blocks application execution until at least one task is completed;
  • If a special option is selected, the library can swap the task queue to disk to minimize memory usage;
  • Before sending a large stream over network, it is compressed with ZLIB (size threshold is specified in the settings);
  • The agent caches DLLs locally during the session; DLLs are not resent to execute same task again;
  • If an agent does not have free CPU time for 10 seconds, this means that user has launched a resource intensice application. In this case, the agent suspends all working threads for 25 seconds. This is necessary, because otherwise the Windows scheduler will dedicate 120ms of CPU time to working threads with IDLE priority when CPU starvation is detected[12]. If the threads would not have been suspended, this could lead to jerky FPS in games, for example.
image8n.jpg
PlayStation 2 cluster[16].

Library usage

The library is distributed as two DLL's: hxGridUserDLL.dll and zlib.dll. To start a session, the grid application should create the IGridUser object (see examples\picalculator\C++ and examples\picalculator\Deplhi):

C++:

#include "hxGridInterface.h"

void main()
{
 IGridUser* user = CreateGridUserObject(IGridUser::VERSION);
 ...

Delphi:
Uses T_GenericStream, I_GridUser;

var
 user: IGridUser;

begin
 IGridUser_Create(user);
 ...

From this moment, it is possible to execute tasks on the cluster nodes:

C++:

IGenericStream* stream = CreateGenericStream();
DWORD d=1+i*9;
stream->Write(&d,4);
user->RunTask("picalculator_task.dll","RunTask",stream,Finalize,&d,true);

Delphi:
//write input data to stream
stream := TGenericStream.Create();
d := 1+i*9;
stream.write(d,4); 
//add task to queue
user.RunTask('picalculator_task.dll','RunTask',stream,Finalize,d,true);
//now library owns stream, release our ref 
pointer(stream):=nil;

The RunTask() method has the following parameters:

  • dll filename with function code;
  • symbolic name of function (function should be exported from DLL by name);
  • input stream. Library is receiving ownership of the stream object;
  • completion callback address;
  • address of variable to receive unique id of task;
  • blocking flag.

If the task can not be added to queue immediately (due to limitations of queue length or queue input streams size) and the blocking flag is set, the method will not return until the task is added to queue. Otherwise the method will return S_FALSE and the application can wait for an opportunity with User->WaitForCompletionEvent().

Please note that some dependent DLLs, for example VC++ runtime libraries, might be missing on a remote workstation. Buiding with static libraries is advised and always check dependencies with the dumpbin utility. To send additional DLLs to a workstation, their names should be specified in the RunTask() method, separated with commas:

user.RunTask('GridGMP_task.dll,GMPPort.dll','RunTask',stream,Finalize,d,true);

The Task function should call the following agent method periodically, to allow the agent handle abortion and suspension events:
Delphi:

if (agent.TestConnection(sessionId)<>S_OK) then
 begin
  result := false;
  exit;
 end;

This is a very fast method and can be called from an inner cycle even with ~10000Hz frequency.

User->WaitForCompletion() is used to wait until all queued tasks are done.

To close a session, the application should destroy the IGridUser object:
C++:

user->Release(); 

Delphi:
user:=nil;

This short section has shown everything needed to use hxGrid.

image9.jpg
XBOX cluster[17].

Requesting additional data from user

In some circumstances tasks running on agents, must access some global data common to all tasks in the session. If the global data size is high, it is inefficient to pass global data in the task input stream. The agent provides the following method to request global data from the user:
C++:

virtual HRESULT __stdcall GetData(DWORD sessionId, const char* dataDesc, 
          IGenericStream** stream) = 0;

Delphi:
function GetData(sessionId: DWORD; dataDesc: pchar; 
                 var stream:IGenericStream): HRESULT; stdcall;

where
dataDesc – symbolic identifier of data, for example "geometry";
stream – address of variable to receive address of stream with data (stream is created by agent, and should be freed by the task).

To handle requests, an hxGrid application should register the following callback:

C++:
typedef void (__cdecl TGetDataProc)(const char* dataDesc, IGenericStream** outStream);

user->BindGetDataCallback(GetDataCallback);

Delphi:
type TGetDataProc = procedure(dataDesc: pchar; var stream: IGenericStream); cdecl;

User->BindGetDataCallback(callback: TGetDataProc); stdcall;

TGetDataproc should create the stream and fill it with data. Ownership of the stream is passed to the library. Usually a task is trying to access some global cache and if data is not there, requests data from the hxGrid application. The cache should be indexed with sessionId and a symbolic description of the data. These methods are used in examples\normalmapper-3-2-2 to request a hi-poly mesh octree.

image16.jpg
PlayStation 2 cluster[16].

Additional methods

C++:

virtual void __stdcall GetSettings(TGridUserSettings settings);
virtual void __stdcall SetSettings(TGridUserSettings settings);

Delphi:
User.GetSettings(var settings: TGridUserSettings); stdcall;
User.SetSettings(var settings: TGridUserSettings); stdcall;


These methods allow the settings to be changed programmatically. For example, an application can disable stream compression if it fills streams with compressed data.

C++:

virtual HRESULT __stdcall CompressStream(IGenericStream* stream);

Delphi:
User.CompressStream(stream: IGenericStream): HRESULT; stdcall;


This method allows stream compression. For example, it is good practice to prepare and compress streams with global data ahead of time, so the library will not have to compress the stream each time GetDataCallback() is called. The library is able to find out if a stream is compressed by examining its signature. Compressed streams should not be unpacked by the task, since the agent does it automatically. See examples\normalmapeer-3-2-2.

C++:

virtual HRESULT __stdcall FreeCachedData(DWORD sessionId, const char* dataDesc);

Delphi:
HRESULT __stdcall IAgent::FreeCachedData(DWORD sessionId, const char* dataDesc) = 0;
br />
The agent is caching global data requested during session. This method allows freeing the cache to minimize memory usage, if it is known that data will not be requested again during the session. For example, if a task requests global data, builds some structures from it, and stores them in some custom global cache, then other tasks can use structures from this cache and not call agent.GetData() during again during the session.

C++:

typedef void (__cdecl EndSession)(IAgent* agent, DWORD sessionId);

Delphi:
type TEndSessionProc = procedure(agent: IAgent; sessionId: DWORD); cdecl;


The agent calls the EndSession() callback at the session's end. Usually this callback is used to free the global session data cache. The callback method should be exported by name from the DLL which was specified in IGrudUser->RunTask(). This callback is optional.

Cancellation

There are two patterns for using the library.

  1. Tasks are added to the queue with IGridUser->RunTask(blocking = true), then the application waits for completion with IGridUser->WaitForCompletion().
  2. Tasks are added to the queue with IGridUser->RunTask(blocking = false). If method returns S_FALSE because the queue is full, the application waits for the queue to progress with IGridUser->WaitForCompletionEvent(). When all tasks have been submitted, the application waits for tasks completion by calling IGridUser->IsComplete() periodically.


Delphi:
for s:=1 to 200 do
  begin 
   ... 
   while (user.RunTask('GridGMP_task.dll,GMPPort.dll',
                      'RunTask',stream,Finalize,d,false)<>S_OK) do 
     begin 
       Application.ProcessMessages();
       user.WaitForCompletionEvent(100);
       if state=ST_CANCELING then 
         begin 
           break; 
         end; 
     end; 
   if state=ST_CANCELING then break;
   ... 
  end; 
... 
bl:=true;
while (bl) do
  begin 
    Application.ProcessMessages();
    Sleep(100); 
    if (state=ST_CANCELING) then
      begin 
        user.CancelTasks();
        break; 
      end; 
    user.IsComplete(bl);
  end;

An application can cancel all tasks at any time by calling IGridUser->CancelTasks().

Despite being more complex, the second pattern has the following advantages:

  • the application can perform some tasks while waiting,
  • there is the ability to cancel tasks, and
  • the ability to show progress in the UI.

For details of the second pattern, see examples\GridGMP\.

Examples of library usage

PI Calculator (examples\PICalculator)

This is the simplest example and is a Pi value calculation with specified accuracy. Each task is calculating [n…n+8] number.

image11n.gif

Mandelbrot (examples\mandelbrot\)

A Mandelbrot fractal explorer. There are three versions of the application:

image13.jpg


SingleCPUExtended – this example uses the FPU native 10-byte floating point type and runs on a single CPU. Lack of accuracy does not allow high zoom levels.

SingleGMP – this example uses 256-byte big numbers on single CPU. A Delphi port of the GMP[13] library is used.

GridGMP – the example uses 256-byte big numbers and hxGrid. Each agent is assigned to calculate one vertical line of the image. This application also shows how badly partitioned calculations can decrease overall performance: vertical lines can require very different amount of processing power, up to 50:1 ratio. A better solution would be to assign each agent to calculate every N’s pixels of image’s horizontal scanning.

Normalmapper (examples\normalmapper-3-2-2\)

image12.jpg


ATI NormalMapper 3.2.2[14], ported to hxGrid.

Normalmapper is an ideal application for distributed computing. Each texel of a normal map can be calculated independently from the others. Total time to calculate a normal map with an occlusion term and bent normals enabled, can take up to 12 hours. The modified version forms tasks to calculate 100 pixels of a normal map. Each agent requests a serialized hi-poly mesh octree by calling IAgent->GetData(). Octree size can be up to 300Mb, so sending it in the task input stream is inefficient. In addition, the modified version contains a mutex, which allows running only one instance of NormalMapper at a time. It is possible to run several instances with different models and they will run in queue automatically.

It should be mentioned that the library does not guantantee the order of task completion. Since it is important to calculate texels in a strict order because of intersecting mapping and border texels, the application perform special procedures to update normal map texels in the required order.

How to install ATI NormalMapper for hxGrid

System requirements:

A couple of PCs running Windows 2000/XP SP1/SP2/Vista, connected via local network.

  1. Download hxGrid Coordinator[10] and install on any workstation in the local network. Coordinator should be installed only on one workstation in the local network. This PC should always be available to coordinate hxGrid.
  2. Download hxGrid Agent[10] and install on all workstations in the local network. The more PCs that are running the agent, the faster the hxGrid apps will work.
  3. Download ATI Normalmapper for hxGrid[10] and install on any PC in the local network.

No additional configuration is required.

Hint: If everything above is installed on single a workstation and it does not have network adapter with IP address, the "Microsoft loopback adapter" can be installed and assigned an IP address.

Results

Workstation configurations:

  1. Intel Pentium D Presler 3.0GHz
  2. Intel Pentium 4 2.8 GHz (HT)
  3. Intel Core 2 Duo 1.8GHz
  4. Intel Core 2 Duo 2.13GHz
  5. Athlon X2 3600+
  6. LG GE notebook (Intel Celeron M 1.4 GHz)

Measurements were made for calculation of car_low.nmf + car_high.nmf meshes, 4096 x 4096, Bent normals, Ambient occlusion.

Normalmapper.exe –on carlow.nmf carhigh.nmf 4096 4096 test.tga

For experiments, the original version of ATI Normalmapper was recompiled with VS 2005 with aggressive optimizations (no PGO).

Experiments show that hxGrid can be successfully used to take advantage of multicore CPUs even on a single workstation (agent, coordinator and grid application is running on single workstation).

image14a.gif
Normalmap calculation, hours

image15a.gif
Performance improvement, times

In other words, calculation of normalmap on the cluster took 8 minutes, comparable to almost 4 hours on a single PC (performance improvement = 27.4 times). The HT CPU showed an expected 12% speed improvement, but I can’t explain the 35% speed up of Core 2 Duo. (I expected ~80%). Probably, the bottleneck here is the shared L2 cache, since the Pentium D Presler showed a 73% speedup.

image10n.gif
State of cluster (end of working day)

Energy consumption

Because of high energy consumption, the cluster room should be equipped with ventilation and cooling. How much does the energy consumption of the office increase while agents are active?

image18.gif
Energy consumption of single node, Watt

100% processor load increases energy consumption approximately by 30 Watt. Accuracy of my measurements can be questionable, but even in an office with 50 workstations, the overall energy consumption increases only by 1.5KW, which is less than a good teapot (1.8KW).

Known problems

The following problems have not been solved yet:

  • disconnection from grid can take up to 30 seconds, due to an iniability to close a connection on the server side ("features" of TServerSocket Delphi component). This is not a problem when using Distributed Normalmapper, but can become a problem when hxGrid is used to solve semi-realtime tasks. If someone can help me with a solution, I would appreciate it[29].
  • StartSession()/EndSession() callbacks are not yet implemented;
  • There is no easy error handling and debugging support.

Public applications using hxGrid

Currently, xNormal[29] is using hxGrid to accelerate normalmap generation.

Links

History

  • Version 1.09d - fixed critical bug: unable to complete last few tasks, if task takes more then 20 sec;
  • Version 1.09c - hxGridUser and agent were changed in this release.
    - new option: 'allowDiscardCoordinatorIP' - see hxgrid.ini for description;
    - fixed bug: hxGridUser was unable to run tasks, if single task size is larger than allowed memory usage for hxGridUser.
  • Version 1.09b - added method IGridUser->GetConnectionStatus()";
  • Version 1.09a - added Windows 2000 support;
  • Version 1.09 - This is a very stable release with Windows Vista support.
    - fixed critical bug: memory corruption in agent;
    - fixed critical bug in scktcomp.pas Delphi component (thread-safety issue);
    - fixed critical bug: agent is unable to load task dll in Windows Vista;
    - fixed thread-safety bug in agent and griduser (AddRef()/Release() should use InterlockedXXX);
    - fixed memory leak in agent (IdUDPServer not freed);
    - fixed IGridUser->GetSettings() and IGridUser->SetSettings() .h headers;
    - IGridUser->isComplete(var complete:boolean) now returns TRUE when no task is running (was: FALSE);
    - hxgriduseddll.dll updated in PICalculator C++ example;
    - fixed AutoUpgrade example: unable to upgrade due to relevance to current directory;
    - fixed memory leak in GridGMP example;
    - fixed DebugWrite bug: exeption on invalid strings causes agent to lost connection;
    - fixed possible thread-safety issue in agent.filecache;
    - new method: IAgent->GetSessionCacheDirectory();
    - new method: IAgent->GetGlobalCriticalSection();
    - new IGridUser setting: failed_agent_suspend_timeout;
    - updated TAgentSettings in IAgent.h;
    - IAgent.h and I_Agent.pas documented in English;
    - Normalmapper_hxGrid_Setup installs 3DS MAX and Maya NMF export plugins;
  • Version 1.08a - article translated to English;
    - headers are documented in English;
    - cancellation support;
    - fixed bug in IAgent->GetData();
    - fixed bug: freezing on 99.99%;
    - fixed bug: lost tasks if IAgent->GetData() failed;
    - fixed bug: hxGrid application is unable to work, if workstation has not been rebooted more than 25 days;
    - settings tuned for large IAgent->GetData() size;
    - fixed GridGMP sample (all drawing is done in main thread);
    - network and memory overload tracking: at the start of the session, too many agents request data from user. Library tracks network and memory load;
    - GridGMP example shows cancellation support and progress display;
    - ATI Normalmapper installer installs NMF export plugins to plugin directories of 3DS MAX and Maya;
    - more accurate progress display in ATI Normalmapper;
    - NMFExport plugins for Maya 7.0, 8.0 and 8.5 included;
    Note: agent and coordinator are modified, but have the same interace versions. Upgrade recommended (see Examples\Autoupgrade\);
  • Version 1.08 beta - initial public release;

    License

    This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


    Written By
    Team Leader Deep Shadows, http://www.deep-shadows.com
    Ukraine Ukraine
    Roman Lut, more than 10 years in game development, now working as lead programmer at Deep Shadows on PC and XBOX 360 titles.
    http://www.deep-shadows.com/hax/

    Comments and Discussions

     
    Questionnew version of hxGrid Pin
    Remi Saint-Amant12-Dec-12 7:47
    Remi Saint-Amant12-Dec-12 7:47 
    BugChart View in NormalMapper Pin
    Arul1431-Feb-12 22:49
    Arul1431-Feb-12 22:49 
    GeneralC++ Source code Pin
    popelf17-Mar-11 22:38
    popelf17-Mar-11 22:38 
    GeneralRe: C++ Source code Pin
    hax_18-Mar-11 0:05
    hax_18-Mar-11 0:05 
    GeneralMy vote of 5 Pin
    Uilleam22-Nov-10 10:09
    Uilleam22-Nov-10 10:09 
    GeneralMy vote of 5 Pin
    vytheese1-Nov-10 21:26
    professionalvytheese1-Nov-10 21:26 
    GeneralMy vote of 4 Pin
    pinebit6-Aug-10 3:29
    pinebit6-Aug-10 3:29 
    GeneralCallback issue Pin
    TJUL20-Jul-09 22:57
    TJUL20-Jul-09 22:57 
    GeneralRe: Callback issue Pin
    hax_22-Jul-09 4:12
    hax_22-Jul-09 4:12 
    GeneralRe: Callback issue Pin
    Michael Stammberger15-Nov-11 1:26
    Michael Stammberger15-Nov-11 1:26 
    Generalsource code Pin
    vanhutten22-Dec-08 10:12
    vanhutten22-Dec-08 10:12 
    GeneralRe: source code Pin
    hax_22-Dec-08 21:28
    hax_22-Dec-08 21:28 
    GeneralRe: source code Pin
    vanhutten22-Dec-08 21:54
    vanhutten22-Dec-08 21:54 
    GeneralRe: source code Pin
    hax_22-Dec-08 22:56
    hax_22-Dec-08 22:56 
    Generalrun agent and coordinator as services Pin
    Michael Stammberger29-Oct-08 8:56
    Michael Stammberger29-Oct-08 8:56 
    QuestionReceiving data from task while processing? Pin
    Michael Stammberger21-Oct-08 4:37
    Michael Stammberger21-Oct-08 4:37 
    AnswerRe: Receiving data from task while processing? Pin
    hax_27-Oct-08 1:28
    hax_27-Oct-08 1:28 
    QuestionRe: Receiving data from task while processing? Pin
    Michael Stammberger31-Oct-08 0:05
    Michael Stammberger31-Oct-08 0:05 
    AnswerRe: Receiving data from task while processing? Pin
    hax_31-Oct-08 0:46
    hax_31-Oct-08 0:46 
    QuestionWhere can we find xhGridInterface.h Pin
    Remi Saint-Amant3-Oct-08 10:20
    Remi Saint-Amant3-Oct-08 10:20 
    AnswerRe: Where can we find xhGridInterface.h Pin
    hax_7-Oct-08 23:40
    hax_7-Oct-08 23:40 
    GeneralGood article! Pin
    Damir Valiulin27-Sep-08 11:31
    Damir Valiulin27-Sep-08 11:31 
    Generalsounds cool! Pin
    Puffel26-Aug-08 16:27
    Puffel26-Aug-08 16:27 
    GeneralWell done Pin
    Ralph Willgoss26-Aug-08 13:20
    Ralph Willgoss26-Aug-08 13:20 
    GeneralHadoop Pin
    _Dals_25-Aug-08 11:19
    _Dals_25-Aug-08 11:19 

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

    Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.