18.55. JobStatus

Status of a job.

Copy
Copied!
            

enum JobStatus { // The job is unknown or in an unknown status. JOB_STATUS_UNKNOWN = 0; // The job is healthy; if stopped, it has completed successfully. JOB_STATUS_HEALTHY = 1; // The job has encountered a terminal error. JOB_STATUS_FAULTED = 2; // The job has been cancelled. JOB_STATUS_CANCELED = 3; }


See also [JobState] for additional information.

© Copyright 2018-2021, NVIDIA Corporation. All rights reserved. Last updated on Feb 1, 2023.