R2020a autocomplete very slow
조회 수: 11 (최근 30일)
이전 댓글 표시
Autocomplete with tab on linux (CentOS7; 30 cores; 80GB RAM) takes ~5-10 seconds to show options. Working on all other matlab versions R2015-R2018.
Tried:
>> restoredefaultpath
>>matlabrc
No effect. Please help.
Many thanks!
댓글 수: 2
Michel Vergeau
2020년 4월 8일
How did you solve this problem please ?
We had exactly the same problem, by tracking java, it looks like that TabCompletionAction in R2020a crashed, the full error log can be found in the following comment.
Rehasing the toolbox cache does not help at all.
Thanks
답변 (1개)
Sai Bhargav Avula
2020년 3월 29일
편집: Sai Bhargav Avula
2020년 3월 29일
Hi,
Tab-completion may be slow if you have a substantial amount of files on your path. When tab-completing a name, performance will scale more or less linearly with the number of candidate names to consider.
One workaround to improve the performance of tab-completion is to avoid working from directories with large amounts of files in them, and to avoid keeping such folders on your MATLAB path. This will decrease the amount of candidate names MATLAB must consider when doing tab-completion.
If there are files within a very large directory which you need to access, consider using their relative or absolute path to refer to them, rather than adding the entire directory to your MATLAB path.
If changing your working folder does not resolve the slow performance, you can try these additional troubleshooting steps:
1. Is there a significant amount of data in your workspace?
If so, try clearing (or minimizing the data in) your workspace. Having a large amount of variables in your workspace could also impact the performance of tab-completion, if there are many candidate names for MATLAB to consider.
2. Restore default path and rehash toolbox cache
>> restoredefaultpath
>> rehash toolboxcache
For Simulink users, including an additional command may be helpful:
>> restoredefaultpath
>> rehash toolboxcache
>> sl_refresh_customizations
3. Try restarting MATLAB.
4. Obtain profiling results for tab-completion. To do this, run the following commands in MATLAB:
>> profile on
% Now, do tab completion multiple times for various strings
>> profile off
>> profsave(profile('info'),'profile_results')
Then, look at the resulting folder ('profile_results').
5. Try starting MATLAB with the flag '-nojvm', and see if autocomplete is still slow. To do this, type the following into your system's command prompt:
>> matlab -nojvm
Hope this helps!
댓글 수: 5
Eike Blechschmidt
2021년 4월 28일
I am facing the same problem. I did the profiling suggestion and it seems that it is due to a relatively big time table variable:
The flame graph is the following;
In detail most time is spent in "\R2020b\toolbox\matlab\datatypes\datetime\+matlab\+internal\+datetime\isRegularTimeVector.m":
which seems a bit overkill for me as for tab completion it should be sufficient to just get the "fields" and not their content, right?
Regards
Eike
참고 항목
카테고리
Help Center 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!