Al momento, stai seguendo questo contributo
- Vedrai gli aggiornamenti nel tuo feed del contenuto seguito
- Potresti ricevere delle email a seconda delle tue preferenze per le comunicazioni
The CCS Toolbox for Matlab is a simple interface from Matlab to the Microsoft Compute Cluster Server. It allows job submissions from the Matlab environment.
The jobs are described entirely as Matlab data structures.
Example:
% create a job and assign a name
j = ccsjob;
j.Name = 'My CCS job';
j.Project = j.Name;
% create a task and assign name, execute command, and work directory:
t = ccstask;
t.Name = 'mytask';
t.CommandLine = 'run.bat';
t.WorkDirectory = '\\cluster\myfolder';
% assign task to job
j.Tasks(1) = t;
% write job to xml submission file
jobfilename = 'myjobsubmission.xml';
ccs_create_submission_file(j, jobfilename);
% submit job to CCS cluster
clusterHeadNode = 'cluster-hn';
system(['job submit /exclusive:false /jobfile:', jobfilename, ' /scheduler:', clusterHeadNode]);
Cita come
Marc Molinari (2026). CCS Toolbox (https://it.mathworks.com/matlabcentral/fileexchange/18330-ccs-toolbox), MATLAB Central File Exchange. Recuperato .
Informazioni generali
- Versione 1.0.0.0 (8,71 KB)
-
Nessuna licenza
Compatibilità della release di MATLAB
- Compatibile con qualsiasi release
Compatibilità della piattaforma
- Windows
- macOS
- Linux
| Versione | Pubblicato | Note della release | Action |
|---|---|---|---|
| 1.0.0.0 |
