Channels provide peer-to-peer communication links. To allow a collective interaction without specifying individually every process, an object called channel set is provided. |
To create the channel set object, the function tce_chnset_init has to be called. It takes an array of channels over which the channel set is to be spanned. All processes having access to those channels must participate (submitting identical arrays of channels). |
TCE_ChnSet *ChnSet; |
... |
tce_chnset_init(&ChnSet,Channnels,n); |
... |