How do I suppress this warning from spmd?

I have an spmd statement running in a loop where one worker will use labBroadcast to send a message to the other workers. Occasionally the other workers will finish what they're doing before they receive the message. This isn't a problem except that when spmd finishes Matlab gives an warning of the form:
Lab 1:
Warning: An incoming message was discarded from lab 2 (tag: 400003)
I've tried using lastwarn to identify the warning after stopping execution, but it gives no output. I've also tried
pctRunOnAll warning('off','all')
outside the spmd statement and warning('off','all') inside the statement and yet the warning keeps being thrown. Because the spmd statement is in a loop, this message can appear hundreds of times during the execution of the script. How do I suppress these warnings?

3 comentarios

Is the warning displayed like an actual warning, in orange text? Otherwise it may just be a text output that starts with the word 'Warning'.
What is the output if you run this command?
warning('query','last')
I'm running R2011a and actual warnings don't appear in orange text, only errors. When I run that command I get:
The last warning issued had an empty warning identifier, or no
warnings have yet been issued.
Niklas Nylén
Niklas Nylén el 14 de En. de 2014
I also run 2011b and warnings appear in orange text. You can set the color in the matlab preferences.
By the looks of the output you provided, the message is not a usual matlab warning, and even if it is it does not have an identifier, which means you can not turn it off, if it does not work with the 'all' input.

Iniciar sesión para comentar.

 Respuesta aceptada

Edric Ellis
Edric Ellis el 14 de En. de 2014

0 votos

I believe you can only hit this warning if you don't ensure that all workers call labBroadcast together. So, rather than suppress this warning, you should ensure that all workers make the same labBroadcast calls.

2 comentarios

Dom
Dom el 14 de En. de 2014
Are there detrimental effects to having some workers not receive broadcasts?
Should I be using some other worker communication functions if I don't expect some workers to recieve communications, or will this happen for any method I try?
Edric Ellis
Edric Ellis el 14 de En. de 2014
Editada: Edric Ellis el 14 de En. de 2014
You've already encountered the first detrimental effect - the warning. However, there's a more serious problem which you might encounter later. labBroadcast is built on top of MPI, and the MPI standard doesn't define when a method such as broadcast will block and when it will use buffering. Because you're using the default error-detecting mode of lab* communication, labBroadcast is using the implementation based on labSend and labReceieve; and fortunately for you the labSend portion is able to complete without the matching labReceive because of buffering.
If you ever get to the point where labSend cannot buffer the message because it's too large, you'll get deadlock (which may or may not be detected) or an erroring communication mismatch. In R2013b, this gives me an error:
parpool('local', 2);
spmd
if labindex == 1
labBroadcast(1, rand(1000));
end
end

Iniciar sesión para comentar.

Más respuestas (2)

Ammar
Ammar el 21 de Abr. de 2017

0 votos

Hi guys, I have the same problem, any suggestion ?
This is the message:
Warning: An incoming message was discarded from lab 3 (tag: 0)
Kind regards Ammar
Peiyuan Zhai
Peiyuan Zhai el 20 de Mzo. de 2022

0 votos

Try to add
warning('off','all')
after
spmd
but not before it. This works for me.

Categorías

Más información sobre Startup and Shutdown en Centro de ayuda y File Exchange.

Productos

Preguntada:

Dom
el 14 de En. de 2014

Respondida:

el 20 de Mzo. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by