mpiprofile viewer crashes unexpectedly

1 visualización (últimos 30 días)
Alexandre Kazantsev
Alexandre Kazantsev el 27 de Mzo. de 2020
Comentada: Alexandre Kazantsev el 2 de Abr. de 2020
The following minimal code
parpool
spmd
mpiprofile on
mpiprofile viewer
end
disp('there is a db point set at this line')
displays the following :
Lab 1:
Sending pmode lab2client to the MATLAB client for asynchronous evaluation. "
with this error message coming next :
Undefined function or variable 'MPI_PROF_VECTOR'.
Any clue ?
  1 comentario
Alexandre Kazantsev
Alexandre Kazantsev el 27 de Mzo. de 2020
The issue disappears when there is no debug point at the last line of the script

Iniciar sesión para comentar.

Respuesta aceptada

Edric Ellis
Edric Ellis el 30 de Mzo. de 2020
I suspect the debug breakpoint is interfering with the data transfer from the spmd block back to the client.
I suppose the only workaround is: don't put a breakpoint there!
Starting in R2020a, you can invoke mpiprofile directly from the client, so you can do this instead:
parpool
mpiprofile on
spmd
% do stuff
end
mpiprofile viewer
I believe this approach should not be affected by the presence of breakpoints.

Más respuestas (0)

Categorías

Más información sobre Parallel Computing Fundamentals en Help Center y File Exchange.

Productos


Versión

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by