how can I get details about the functions called inside parfor in a profile summary report?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nadia A
el 22 de Jun. de 2016
Comentada: Edric Ellis
el 23 de Jun. de 2016
Hi
when I run profiler for a code which contains a parfor, the profiler report shows only the total time parfor takes and not the number of times a function or statements inside a parfor are called or the time taken by them. How do I get this information? The function and statements inside parfor are in grey in the report.
Thanks Nadia
0 comentarios
Respuesta aceptada
Edric Ellis
el 22 de Jun. de 2016
spmd, mpiprofile('on'); end
parfor
...
end
spmd, mpiprofile('viewer'); end
2 comentarios
Edric Ellis
el 23 de Jun. de 2016
Unfortunately it isn't currently possible to view both at the same time. (You can use the programmatic API to both profile and mpiprofile to collect the information simultaneously)
Más respuestas (0)
Ver también
Categorías
Más información sobre Parallel for-Loops (parfor) en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!