hpcflow.sdk.submission.jobscript_info.JobscriptElementState#

class hpcflow.sdk.submission.jobscript_info.JobscriptElementState(value, names=<not given>, *values, module=None, qualname=None, type=None, start=1, boundary=None)#

Bases: Enum

Enumeration to convey a particular jobscript element state as reported by the scheduler.

Attributes

pending

Waiting for resource allocation.

waiting

Waiting for one or more dependencies to finish.

running

Executing now.

finished

Previously submitted but is no longer active.

cancelled

Cancelled by the user.

errored

The scheduler reports an error state.

rich_repr

Rich representation of this enumeration element.

cancelled = 4#

Cancelled by the user.

errored = 5#

The scheduler reports an error state.

finished = 3#

Previously submitted but is no longer active.

pending = 0#

Waiting for resource allocation.

property rich_repr#

Rich representation of this enumeration element.

running = 2#

Executing now.

waiting = 1#

Waiting for one or more dependencies to finish.