19.54. JobState

State of a job.

Copy
Copied!
            

enum JobState { // The job is unknown to the service // or in an unknown state. JOB_STATE_UNKNOWN = 0; // The job has been accepted and queued by the service, // but has not yet started running. JOB_STATE_PENDING = 1; // The job is currently running. JOB_STATE_RUNNING = 2; // The job has stopped running. JOB_STATE_STOPPED = 3; }


See also JobStatus for additional information.

© Copyright 2018-2020, NVIDIA Corporation. All rights reserved. Last updated on Jun 28, 2023.