Search
Page 7 of 7. Showing 70 results (0.016 seconds)
jobSubmit01_explained.py
how many Instances/subjobs the job is to spawn job['cpus'] = 1 # Below defines the internal Qube! jobtype to be used to execute the job job['prototype'] = 'cmdline…Advanced Dependencies
how many Instances/subjobs the job is to spawn job['cpus'] = 1 # Below defines the internal Qube! jobtype to be used to execute the job job['prototype…Basic python job submission I. Single command
# command. This will be the same as opening a terminal/command prompt and typing # out a command. job['prototype'] = 'cmdline' # The below parameters…Package_explained.py
) TUTORIAL' # Below defines the internal Qube! jobtype to be used to execute the job job['prototype'] = 'cmdrange' # Below relates to "instances" in the internal…qbsub
Import job from *.qja file. --address string, … List of string email addresses when using --email option --type string --prototype string Use string job type…qbjobinfo.pl
# hostorder STRING # groups STRING # data STRING # pathmap STRING # account STRING # prototype STRING # kind STRING # path STRING # reason STRING…submit-p-agenda-job.pl
') to process it. my $job = {}; $job->{'name'} = 'p-agenda job submitted from perl'; $job->{'cpus'} = 10; $job->{'prototype'} = 'cmdrange'; # our test job will run a "sleep 30…cluster.pm
fields for the job hash: # # id, pid, pgrp, priority, user, status, name, label, cluster, cpus, prototype, # requirements, reservations, restrictions, account…submit-p-agenda-job.py
it. job = {} job['name'] = 'p-agenda job submitted from python' job['cpus'] = 10 job['prototype'] = 'cmdrange' # our test job will run a "sleep 30" command…Basic python job submission III. SimpleCmd Compatibility and Application Specific Parameters
['prototype'] = 'cmdrange' job['cpus'] = 1 job['priority'] = 9999 # Below creates an empty package dictionary package = {} # Below instructs…