ProfileJobSummary

class ProfileJobSummary(job_id, name, date, username, status, job_type, url, device_name, estimated_inference_time, inference_memory_peak_range)

Summary information about a profile job and its current status. Job summaries can be queried in bulk for many jobs at a time through qai_hub.get_job_summaries().

A profile job summary should not be constructed directly.

job_id

The job ID.

Type:

str

name

Name of this job.

Type:

str

date

The time this job was submitted.

Type:

datetime

username

Username of the user who submitted the job.

Type:

str

status

Status of the job.

Type:

JobStatus

device_name

The name of the device on which the model is being profiled.

Type:

str

estimated_inference_time

Time spent in inference, in microseconds.

Type:

int

inference_memory_peak_range

Estimated lower and upper bound of peak memory used in inference, in bytes

Type:

(int, int)