Search
Page 5 of 8. Showing 73 results (0.015 seconds)
cluster.pm
their studio. # # To use this module: Modify the supervisor's /etc/qb.conf # # Add or change supervisor_queue_binding to: # supervisor_queue_binding = Perl # supervisor_queue_library…Basic dependencies
The next step is to understand basic dependencies In this example, we use the job's dependency field to set up a job-based dependency. Job based dependencies are those…Basic_Dependancy.py
= {} # Below defines the name of the Qube! job job['name'] = 'python parent job' # Below defines how many Instances/subjobs the job is to spawn job['cpus…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…Basic python job submission I. Single command
. job['cpus'] = 1 # Below defines the internal Qube! jobtype to be used to execute the job. # 'cmdline' tells Qube that on the backend, we will execute a single command line…jobSubmit05.py
'] = 'python grandparent job' job['cpus'] = 2 job['prototype'] = 'cmdrange' job['requirements'] = 'host.os=linux' package = {} job['package'] = package job…jobSubmit03.py
('/Applications/pfx/qube/api/python'); else: sys.path.append('/usr/local/pfx/qube/api/python'); import qb def main(): job = {} job['name'] = 'python parent job' job['cpus'] = 2…jobSubmit04.py
('/Applications/pfx/qube/api/python'); else: sys.path.append('/usr/local/pfx/qube/api/python'); import qb def main(): job = {} job['name'] = 'python parent job' job['cpus'] = 2…Glossary of Terms
the information the worker will need to execute the job - what program(s) to run, where the source files are, who's running it, how many cpus it wants, what OS it can run under, all…qbmodify
cluster --cpus int Modify jobs with a total of int subjobs --xml Output in XML format --help Command help --version Command version Notes…