Task results
QuEraTaskResults
Bases: BaseModel
export_as_probabilities
export_as_probabilities() -> TaskProbabilities
converts from shot results to probabilities
Returns:
Name | Type | Description |
---|---|---|
TaskProbabilities |
TaskProbabilities
|
The task results as probabilties |
Source code in .venv/lib/python3.12/site-packages/bloqade/analog/submission/ir/task_results.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|
QuEraTaskStatusCode
Bases: str
, Enum
An Enum representing the various states a task can be in within the QuEra system.
Attributes:
Name | Type | Description |
---|---|---|
Created |
The task has been created but not yet started. |
|
Running |
The task is currently running. |
|
Completed |
The task has completed successfully. |
|
Failed |
The task has failed. |
|
Cancelled |
The task has been cancelled. |
|
Executing |
The task is currently being executed. |
|
Enqueued |
The task is in the queue waiting to be executed. |
|
Accepted |
The task has been accepted for execution. |
|
Unaccepted |
The task has not been accepted for execution. |
|
Partial |
The task has partially completed. |
|
Unsubmitted |
The task has not been submitted for execution. |