BatchMode

class BatchMode[source]

Bases: Enum

Controls whether circuit submissions are merged across programs.

Variables:
  • MERGED – Circuit submissions from all programs are merged into single backend calls via the batch coordinator.

  • OFF – Each program submits circuits independently to the backend.

Attributes Summary

Attributes Documentation

MERGED = 'merged'
OFF = 'off'