from
CCS Toolbox
by Marc Molinari
Interfaces Matlab to the Microsoft Compute Cluster Server via XML
|
| ccstask()
|
function task = ccstask()
% Returns Matlab structure describing CCS task.
% A CCS task is part of a CCS job.
%
% SYNTAX:
% task = ccstask
%
% INPUT:
%
% OUTPUT:
% task A Matlab data structure with fieldnames corresponding to entries in the
% CCS task structure for the xml submission file of a CCS job.
%
% SEE ALSO: ccsjob
% ----------------------------------------------------------
% Copyright (C) 2006, Marc Molinari
% CCS Toolbox for Matlab
% Author: Dr Marc Molinari <m.molinari@soton.ac.uk>
% Version: DRAFT 2006/07/20
% ATTRIBUTE FIELDS
task.Name = 'myTaskName';
task.CommandLine = 'run.bat';
task.WorkDirectory = '\\filepath\to\your\fileshare\on\cluster';
task.Stdout = 'stdout.txt';
task.Stderr = 'stderr.txt';
task.Depend = '';
task.MinimumNumberOfProcessors = '1';
task.MaximumNumberOfProcessors = '1';
task.IsExclusive = 'false';
task.IsRerunnable = 'true';
task.Runtime = 'Infinite';
% data fields
task.EnvironmentVariables = [];
|
|
Contact us at files@mathworks.com