Setting -configCluster- in Matlab 2018b
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Stefano Lombardi
el 9 de Abr. de 2019
Respondida: Raymond Norris
el 29 de Jun. de 2022
I am using Matlab parallel toolbox on the R2018b version.
In the past (Matlab R2017a) I was successfully using the following inital settings to then run parallel simulations on a cluster of computers:
configCluster
c = parcluster('rackham');
c.JobStorageLocation = 'output_folder';
% other additional settings here
c.saveProfile;
The critical step here was calling configCluster at the beginning. This would allow to define a proper value for JobStorageLocation.
Now when using Matlab R2018b I get the error:
Undefined function or variable 'configCluster'
If I skip the command and directly set c I get the error:
The JobStorageLocation of a cluster must be an accessible folder on the current machine's filesystem. The value supplied (/scratch/stelo424/8451723) is not a valid folder.
Can you suggest a way to fix this? Is now the configCluster command called another way? I cannot find information on this.
0 comentarios
Respuesta aceptada
Jason Ross
el 9 de Abr. de 2019
configCluster sounds like a tool that was developed at your site -- I am not familiar with it, and I can't find any references in the MATLAB documentation for those releases. I'll bet that it was something added to the path as part of your site install.
If you still have access to the earlier installation, you could use "which clusterConfig" to find out where it was coming from. It's very possible that the code would continue to work without modification.
Using your command, I found the documentation for your cluster -- I would suggest contacting the support email.
0 comentarios
Más respuestas (1)
Raymond Norris
el 29 de Jun. de 2022
@Stefano Lombardi I wrote configCluster for your site. Reach out to me direclty if you have any questions regarding how to use it.
0 comentarios
Ver también
Categorías
Más información sobre Introduction to Installation and Licensing 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!