ChunkSpan

class samplomatic.quantum_program.ChunkSpan(start: datetime, stop: datetime, parts: list[ChunkPart])[source]

Bases: object

Timing information about a single chunk of execution.

Note

This span may include some amount of non-circuit time.

Attributes Summary

parts

A description of which parts of a quantum program are contained in this chunk.

start

The start time of the execution chunk in UTC.

stop

The stop time of the execution chunk in UTC.

Attributes Documentation

parts: list[ChunkPart] = <dataclasses._MISSING_TYPE object>

A description of which parts of a quantum program are contained in this chunk.

start: datetime = <dataclasses._MISSING_TYPE object>

The start time of the execution chunk in UTC.

stop: datetime = <dataclasses._MISSING_TYPE object>

The stop time of the execution chunk in UTC.