Confirm if Parallel Server is installed on cluster
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Science Machine
am 11 Jul. 2022
Kommentiert: Raymond Norris
am 13 Jun. 2023
How can I confirm my cluster has a matlab Parallel Server license?
I asked the sys admin and they were not clear on that point. That makes me think I can use Matlab on only 1 node (and only parallel toolbox is available). What command can I run to show that? Currently I am doing
clear;clc
rehash toolbox
configCluster
c=parcluster;
c.AdditionalProperties.WallTime = '5:30:0';
c.AdditionalProperties.QueueName = 'redacted';
c.AdditionalProperties.AccountName = 'redactedAccountName:)';
c.saveProfile
c.AdditionalProperties
%end
and then running a hello world function like
j = c.batch(@hi, 1, {} ); j.wait ; j.fetchOutputs()
and trying to start a job on a parallel pool like
job = batch(...,'pool',12); # which doesn't seem to work
0 Kommentare
Akzeptierte Antwort
Raymond Norris
am 11 Jul. 2022
4 Kommentare
Raymond Norris
am 13 Jun. 2023
Here would be one way
ls /path/to/matlab/toolbox/parallel/bin/mjs*
If there are no such files, MATLAB Paralell Server is not installed.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!