Row corresponds to ranks, and columns corresponds to data.
Input:
Output:
6667686970717273747576
for (int i = 0; i < t.length; ++i) { final int rank = i; t[i] = new Thread(new Runnable() { public void run() { Communicator comm = coll.createCommunicator(rank); comm.broadcast(recv[rank], 0); } }); t[i].start(); }