The Tag Field of labSendReceive() Function

조회 수: 1 (최근 30일)
Jim Chung
Jim Chung 2020년 7월 18일
답변: Walter Roberson 2020년 7월 20일
Hello, the Forum!
The following code allows the dataReceived vector of each node has the same values in its nodeList. But my question is how to make use of the "tag". I wish to inform the neighboring agents, say j, that some data corresponds to Agent i. I did it this way: dataReceived = [dataReceived, labSendReceive(nodeList{labindex}(i),nodeList{labindex}(i),labindex, labindex)], but it turned out to be something like an infinite loop. Thank you!
nodeList{1} = [2,4];
nodeList{2}= [1,4];
nodeList{3} = 4;
nodeList{4} = [1,2,3];
parpool('local',4);
spmd
% mydata = magic(labindex);
dataReceived = [ ];
for i = 1:length(nodeList{labindex})
% labSend(labindex,nodeList{labindex}(i));
% dataReceived = [dataReceived, labReceive(nodeList{labindex}(i))];
dataReceived = [dataReceived, labSendReceive(nodeList{labindex}(i),nodeList{labindex}(i),labindex)];
end
end

채택된 답변

Edric Ellis
Edric Ellis 2020년 7월 20일
The function labSendReceive requires matched communication, so the receiver always knows which lab sent the data. In your example, the nodeList entries are arranged so that there is no communication mismatch - but this will probably be difficult to arrange in the general case. I'm not quite sure where your actual problem is because your code as written completes successfully. I would consider re-writing the labSendReceive loop so that each worker communicates with each other worker in turn, like this:
spmd
dataReceived = cell(1, numlabs);
for labOffset = 1:(numlabs-1)
sendTo = 1 + mod(labindex-1 + labOffset, numlabs);
recvFrom = 1 + mod(labindex-1 - labOffset, numlabs);
dataToSend = magic(labindex);
dataReceived{recvFrom} = labSendReceive(sendTo, recvFrom, dataToSend);
end
end

추가 답변 (1개)

Walter Roberson
Walter Roberson 2020년 7월 20일
The tag parameter is mostly intended to permit priority queuing. Except rather than the standard priority according to numeric values, the receiving end can query for a particular value to handle those first

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by