You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that deploying toolboxes can be slow. Even when the toolboxes are already up to date, adding them to the path can take a while.
I checked with the Matlab profiler on a usage that's typical for me: tbUse({'VirtualWorldColorConstancy', 'isetbio'}). About 85% of the time is spent on 16 calls to Matlab's path() function.
I'm not sure why path() is so slow.
Whatever the reason, we might be able to speed up deployments if we collect path entries during deployment, then apply them all in a single call to path().
The text was updated successfully, but these errors were encountered:
I noticed that deploying toolboxes can be slow. Even when the toolboxes are already up to date, adding them to the path can take a while.
I checked with the Matlab profiler on a usage that's typical for me:
tbUse({'VirtualWorldColorConstancy', 'isetbio'})
. About 85% of the time is spent on 16 calls to Matlab'spath()
function.I'm not sure why
path()
is so slow.Whatever the reason, we might be able to speed up deployments if we collect path entries during deployment, then apply them all in a single call to
path()
.The text was updated successfully, but these errors were encountered: