MATLAB 2014a cannot enable parpool
Mostra commenti meno recenti
Hi, I tried to enable parpool in MATLAB 2014a, it gives following message Error using parpool (line 99) The operation must modify one or more Settings files for these levels: factory, user, but you do not have write permission on these levels: user.
Error in parallel.internal.ui.PoolHelper.startPool (line 11) parpool();
I have all permissions, I tried to uninstall and install again, but after one or two days, this problem come out again
4 Commenti
Elwin Chan
il 12 Giu 2014
Hi Ming,
Can you tell me:
- what platform you are running on?
- where is the MATLAB installation?
- what is the location of your preferences directory and do you have full read/write access to that location?
You can find the preferences directory using the
prefdir
command in MATLAB.
If you close MATLAB and then delete parallel.settings file in your preferences directory and try again, does the error still occur?
If that doesn't fix it, then please try the following code in MATLAB:
s = Settings;
s.parallel
s.parallel.addNode('test')
s.parallel.test.addKey('testKey')
s.parallel.test.isSet('testKey')
s.parallel.removeNode('test')
Thanks,
Elwin
Elwin Chan
il 16 Giu 2014
Hi Ming,
Thanks for the info. When it is not working, please can you try the following code and reply with the results? (The code won't fix the problem, but might help to diagnose the issue.)
s = Settings;
s.parallel
s.parallel.addNode('test')
s.parallel.test.addKey('testKey')
s.parallel.test.isSet('testKey')
s.parallel.removeNode('test')
Thanks,
Elwin
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Parallel Computing Fundamentals in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!