CCS Toolbox

버전 1.0.0.0 (8.71 KB) 작성자: Marc Molinari
Interfaces Matlab to the Microsoft Compute Cluster Server via XML
다운로드 수: 898
업데이트 날짜: 2008/1/15

라이선스 없음

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]);

인용 양식

Marc Molinari (2024). CCS Toolbox (https://www.mathworks.com/matlabcentral/fileexchange/18330-ccs-toolbox), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2006b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 MATLAB Parallel Server에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0